Skip to content

Commit

Permalink
Disable processors
Browse files Browse the repository at this point in the history
Signed-off-by: Pavol Loffay <[email protected]>
  • Loading branch information
pavolloffay committed Apr 29, 2020
1 parent ebea4bb commit 3dcd570
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmd/opentelemetry-collector/app/defaults/default_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func Config(storageType string, zipkinHostPort string, factories config.Factorie
InputType: configmodels.TracesDataType,
Receivers: recTypes,
Exporters: expTypes,
Processors: []string{"batch"},
Processors: []string{},

This comment has been minimized.

Copy link
@objectiser

objectiser Apr 29, 2020

Contributor

I thought a processor had to be provided otherwise it would be an invalid OTC config?

},
},
},
Expand Down
5 changes: 1 addition & 4 deletions crossdock/otel-agent-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ receivers:
thrift_compact:
thrift_binary:

processors:
queued_retry: {}

exporters:
jaeger:
endpoint: jaeger-collector:14250
Expand All @@ -18,5 +15,5 @@ service:
pipelines:
traces:
receivers: [jaeger]
processors: [queued_retry]
processors: []
exporters: [jaeger]

0 comments on commit 3dcd570

Please sign in to comment.