Skip to content

Commit c6dcbbe

Browse files
spencergilbertjszwedko
authored andcommitted
docs: Fix schema.log_namespace and telemetry.tags documentation (#17961)
1 parent 5e3ee65 commit c6dcbbe

File tree

2 files changed

+22
-10
lines changed

2 files changed

+22
-10
lines changed

website/content/en/blog/log-namespacing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,4 +166,4 @@ be used.
166166
[global log schema]: /docs/reference/configuration/global-options/#log_schema
167167
[set_semantic_meaning]: /docs/reference/vrl/functions/#set_semantic_meaning
168168
[remap]: /docs/reference/configuration/transforms/remap/
169-
[global config]: /docs/reference/configuration/global-options/#log_namespacing
169+
[global config]: /docs/reference/configuration/global-options/#schema.log_namespacing

website/cue/reference/configuration.cue

+21-9
Original file line numberDiff line numberDiff line change
@@ -251,16 +251,28 @@ configuration: {
251251
}
252252
}
253253
}
254-
log_namespacing: {
255-
common: false
254+
schema: {
255+
common: false
256256
description: """
257-
Globally enables / disables log namespacing. See [Log Namespacing](\(urls.log_namespacing_blog))
258-
for more details. If you want to enable individual sources, there is a config
259-
option in the source configuration.
257+
Configures options for how Vector handles event schema.
260258
"""
261-
required: false
262-
warnings: []
263-
type: bool: default: false
259+
required: false
260+
type: object: {
261+
examples: []
262+
options: {
263+
log_namespacing: {
264+
common: false
265+
description: """
266+
Globally enables / disables log namespacing. See [Log Namespacing](\(urls.log_namespacing_blog))
267+
for more details. If you want to enable individual sources, there is a config
268+
option in the source configuration.
269+
"""
270+
required: false
271+
warnings: []
272+
type: bool: default: false
273+
}
274+
}
275+
}
264276
}
265277

266278
telemetry: {
@@ -277,7 +289,7 @@ configuration: {
277289
description: """
278290
Controls which tags should be included with the `vector_component_sent_events_total` and
279291
`vector_component_sent_event_bytes_total` metrics.
280-
"""
292+
"""
281293
type: object: {
282294
examples: []
283295
options: {

0 commit comments

Comments
 (0)