Skip to content
Merged
Changes from 1 commit
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
30 changes: 21 additions & 9 deletions website/cue/reference/configuration.cue
Original file line number Diff line number Diff line change
Expand Up @@ -251,16 +251,28 @@ configuration: {
}
}
}
log_namespacing: {
common: false
schema: {
common: false
description: """
Globally enables / disables log namespacing. See [Log Namespacing](\(urls.log_namespacing_blog))
for more details. If you want to enable individual sources, there is a config
option in the source configuration.
Configures options for how Vector handles schema.
Comment thread
spencergilbert marked this conversation as resolved.
Outdated
"""
required: false
warnings: []
type: bool: default: false
required: false
type: object: {
examples: []
options: {
log_namespacing: {
common: false
description: """
Globally enables / disables log namespacing. See [Log Namespacing](\(urls.log_namespacing_blog))
for more details. If you want to enable individual sources, there is a config
option in the source configuration.
"""
required: false
warnings: []
type: bool: default: false
}
}
}
}

telemetry: {
Expand All @@ -277,7 +289,7 @@ configuration: {
description: """
Controls which tags should be included with the `vector_component_sent_events_total` and
`vector_component_sent_event_bytes_total` metrics.
"""
"""
Comment thread
spencergilbert marked this conversation as resolved.
type: object: {
examples: []
options: {
Expand Down