Skip to content

Commit 6966b60

Browse files
ADOT logging exporter documentation to use verbosity instead of loglevel (#551)
* Update logging exporter documentation * Typo * Update src/docs/components/misc-exporters.mdx --------- Co-authored-by: bryan-aguilar <[email protected]>
1 parent ae2bc96 commit 6966b60

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/docs/components/misc-exporters.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ OpenTelemetry [Collector](https://aws-otel.github.io/docs/getting-started/collec
2828

2929
The following settings are optional:
3030

31-
* `loglevel` (default = `info`): there are 4 type of settings debug, info, warn, and error. In debug, pipeline data is verbosely logged.
31+
* `loglevel` (default = `info`): there are 4 type of settings debug, info, warn, and error. In debug, pipeline data is verbosely logged. - **Note**: This option has been deprecated in favor of `verbosity`.
32+
* `verbosity` (default = `normal`): the verbosity of the logging export (detailed|normal|basic). When set to `detailed`, pipeline data is verbosely logged.
3233
* `sampling_initial` (default = `2`): number of messages initially logged each second.
3334
* `sampling_thereafter` (default = `500`): sampling rate after the initial messages are logged (every ith message is logged).
3435

@@ -46,7 +47,7 @@ exporters:
4647
```
4748
exporters:
4849
logging:
49-
loglevel: debug
50+
verbosity: detailed
5051
sampling_initial: 5
5152
sampling_thereafter: 200
5253
```

0 commit comments

Comments
 (0)