Skip to content

Commit 7990392

Browse files
authored
tests: update references to logging exporter (#6692)
Signed-off-by: Alex Boten <[email protected]>
1 parent de13ff1 commit 7990392

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

exporters/prometheus/src/test/resources/otel-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ receivers:
1010
static_configs:
1111
- targets: ['${APP_ENDPOINT}']
1212
exporters:
13-
logging:
13+
debug:
1414
verbosity: ${LOGGING_EXPORTER_VERBOSITY}
1515
otlp:
1616
endpoint: ${OTLP_EXPORTER_ENDPOINT}
@@ -22,4 +22,4 @@ service:
2222
pipelines:
2323
metrics:
2424
receivers: [prometheus]
25-
exporters: [logging, otlp]
25+
exporters: [debug, otlp]

integration-tests/otlp/src/main/resources/otel-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ receivers:
2323
cert_file: ${MTLS_SERVER_CERTIFICATE}
2424
key_file: ${MTLS_SERVER_KEY}
2525
exporters:
26-
logging:
26+
debug:
2727
verbosity: ${LOGGING_EXPORTER_VERBOSITY_LEVEL}
2828
otlp:
2929
endpoint: ${OTLP_EXPORTER_ENDPOINT}
@@ -35,10 +35,10 @@ service:
3535
pipelines:
3636
metrics:
3737
receivers: [otlp, otlp/mtls]
38-
exporters: [logging, otlp]
38+
exporters: [debug, otlp]
3939
traces:
4040
receivers: [otlp, otlp/mtls]
41-
exporters: [logging, otlp]
41+
exporters: [debug, otlp]
4242
logs:
4343
receivers: [otlp, otlp/mtls]
44-
exporters: [logging, otlp]
44+
exporters: [debug, otlp]

perf-harness/src/test/resources/otel-collector-config-perf.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ receivers:
44
grpc:
55

66
exporters:
7-
logging:
8-
loglevel: info
7+
debug:
8+
verbosity: normal
99
sampling_initial: 1
1010
sampling_thereafter: 1
1111

@@ -25,8 +25,8 @@ service:
2525
traces:
2626
receivers: [otlp]
2727
processors: [batch]
28-
exporters: [logging]
28+
exporters: [debug]
2929
metrics:
3030
receivers: [otlp]
3131
processors: [batch]
32-
exporters: [logging]
32+
exporters: [debug]

sdk/trace/src/jmh/resources/otel.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ extensions:
1111
health_check:
1212

1313
exporters:
14-
logging:
14+
debug:
1515

1616
service:
1717
extensions: [health_check]
1818
pipelines:
1919
traces:
2020
receivers: [otlp]
2121
processors: [batch]
22-
exporters: [logging]
22+
exporters: [debug]

0 commit comments

Comments
 (0)