Skip to content

Commit

Permalink
[repo] Replace Logging Exporter with Debug Exporter in otel-collector…
Browse files Browse the repository at this point in the history
… configs (#5685)

Co-authored-by: joegoldman2 <[email protected]>
  • Loading branch information
joegoldman2 and joegoldman2 authored Jun 10, 2024
1 parent a763c0d commit 23fb651
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions examples/AspNetCore/otel-collector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ receivers:
http:

exporters:
logging:
loglevel: debug
debug:
verbosity: detailed
prometheus:
endpoint: ":9201"
send_timestamps: true
Expand All @@ -21,10 +21,10 @@ service:
pipelines:
traces:
receivers: [otlp]
exporters: [logging,otlp]
exporters: [debug, otlp]
metrics:
receivers: [otlp]
exporters: [logging,prometheus]
exporters: [debug, prometheus]
logs:
receivers: [otlp]
exporters: [logging]
exporters: [debug]
8 changes: 4 additions & 4 deletions examples/Console/otlp-collector-example/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ receivers:
http:

exporters:
logging:
debug:
verbosity: detailed

service:
pipelines:
traces:
receivers: [otlp]
exporters: [logging]
exporters: [debug]
metrics:
receivers: [otlp]
exporters: [logging]
exporters: [debug]
logs:
receivers: [otlp]
exporters: [logging]
exporters: [debug]
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ receivers:
key_file: /cfg/otel-collector.key

exporters:
logging:
debug:
verbosity: detailed

service:
pipelines:
traces:
receivers: [otlp, otlp/tls]
exporters: [logging]
exporters: [debug]
metrics:
receivers: [otlp, otlp/tls]
exporters: [logging]
exporters: [debug]
logs:
receivers: [otlp, otlp/tls]
exporters: [logging]
exporters: [debug]

0 comments on commit 23fb651

Please sign in to comment.