Skip to content

Commit 6a01be7

Browse files
authored
Merge pull request #80452 from max-cx/OBSDOCS-1229
OBSDOCS-1229: Correct the name of the mentioned exporter
2 parents 92dbeea + 0e4ea63 commit 6a01be7

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

main

Whitespace-only changes.

observability/otel/otel-collector/otel-collector-exporters.adoc

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,21 @@ The Debug Exporter prints traces and metrics to the standard output.
9191
exporters:
9292
debug:
9393
verbosity: detailed # <1>
94+
sampling_initial: 5 # <2>
95+
sampling_thereafter: 200 # <3>
96+
use_internal_logger: true # <4>
9497
service:
9598
pipelines:
9699
traces:
97-
exporters: [logging]
100+
exporters: [debug]
98101
metrics:
99-
exporters: [logging]
102+
exporters: [debug]
100103
# ...
101104
----
102-
<1> Verbosity of the debug export: `detailed` or `normal` or `basic`. When set to `detailed`, pipeline data is verbosely logged. Defaults to `normal`.
105+
<1> Verbosity of the debug export: `detailed`, `normal`, or `basic`. When set to `detailed`, pipeline data are verbosely logged. Defaults to `normal`.
106+
<2> Initial number of messages logged per second. The default value is `2` messages per second.
107+
<3> Sampling rate after the initial number of messages, the value in `sampling_initial`, has been logged. Disabled by default with the default `1` value. Sampling is enabled with values greater than `1`. For more information, see the page for the link:https://pkg.go.dev/go.uber.org/zap/zapcore?utm_source=godoc#NewSamplerWithOptions[sampler function in the `zapcore` package] on the Go Project's website.
108+
<4> When set to `true`, enables output from the Collector's internal logger for the exporter.
103109

104110
[id="load-balancing-exporter_{context}"]
105111
== Load Balancing Exporter

0 commit comments

Comments
 (0)