Skip to content

Commit

Permalink
Undo unneeded changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gbbr committed Feb 11, 2021
1 parent d99afa2 commit 0421e8f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkg/trace/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ type AgentConfig struct {
// will be uploaded to. The first endpoint is the main configuration endpoint;
// any following ones are read from the 'additional_endpoints' parts of the
// configuration file, if present.
Endpoints []*Endpoint `json:",omitempty"`
Endpoints []*Endpoint

// Concentrator
BucketInterval time.Duration // the size of our pre-aggregation per bucket
Expand All @@ -78,8 +78,8 @@ type AgentConfig struct {
MaxRequestBytes int64 // specifies the maximum allowed request size for incoming trace payloads

// Writers
StatsWriter *WriterConfig `json:",omitempty"`
TraceWriter *WriterConfig `json:",omitempty"`
StatsWriter *WriterConfig
TraceWriter *WriterConfig
ConnectionResetInterval time.Duration // frequency at which outgoing connections are reset. 0 means no reset is performed

// internal telemetry
Expand All @@ -97,15 +97,15 @@ type AgentConfig struct {
WatchdogInterval time.Duration // WatchdogInterval is the delay between 2 watchdog checks

// http/s proxying
ProxyURL *url.URL `json:"-"`
ProxyURL *url.URL
SkipSSLValidation bool

// filtering
Ignore map[string][]string

// ReplaceTags is used to filter out sensitive information from tag values.
// It maps tag keys to a set of replacements. Only supported in A6.
ReplaceTags []*ReplaceRule `json:",omitempty"`
ReplaceTags []*ReplaceRule

// transaction analytics
AnalyzedRateByServiceLegacy map[string]float64
Expand All @@ -115,7 +115,7 @@ type AgentConfig struct {
DDAgentBin string

// Obfuscation holds sensitive data obufscator's configuration.
Obfuscation *ObfuscationConfig `json:",omitempty"`
Obfuscation *ObfuscationConfig
}

// New returns a configuration with the default values.
Expand Down

0 comments on commit 0421e8f

Please sign in to comment.