Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions modules/concepts/pages/observability/telemetry.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ telemetry:
format: null # <3>
----

<1> Boolean: `true, false`
<2> Enum: `error, warning, info, debug, trace`
<3> Enum: `plain, json`
<1> Boolean: `true`, `false`
<2> String: `error`, `warn`, `info`, `debug`, `trace`, `off` (and https://rustc-dev-guide.rust-lang.org/tracing.html#query-level-filters[more complex filters])
<3> Enum: `plain`, `json`

== File logs

Expand All @@ -65,9 +65,9 @@ telemetry:
maxFiles: 6 # <4>
----

<1> Boolean: `true, false`
<2> Enum: `error, warning, info, debug, trace`
<3> Enum: `never, daily, hourly, minutely`
<1> Boolean: `true`, `false`
<2> String: `error`, `warn`, `info`, `debug`, `trace`, `off` (and https://rustc-dev-guide.rust-lang.org/tracing.html#query-level-filters[more complex filters])
<3> Enum: `never`, `daily`, `hourly`, `minutely`
<4> Unsigned Integer

== OpenTelemetry logs and traces
Expand All @@ -88,6 +88,6 @@ telemetry:
endpoint: null # <3>
----

<1> Boolean: `true, false`
<2> Enum: `error, warning, info, debug, trace`
<3> String: E.g. `my-collector:4317`
<1> Boolean: `true`, `false`
<2> String: `error`, `warn`, `info`, `debug`, `trace`, `off` (and https://rustc-dev-guide.rust-lang.org/tracing.html#query-level-filters[more complex filters])
<3> String: E.g. `https://my-collector:4317` (Note: it must contain the scheme)
Loading