Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix schema.log_namespace and telemetry.tags documentation #17961

Merged
merged 2 commits into from
Jul 14, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion website/content/en/blog/log-namespacing.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,4 @@ be used.
[global log schema]: /docs/reference/configuration/global-options/#log_schema
[set_semantic_meaning]: /docs/reference/vrl/functions/#set_semantic_meaning
[remap]: /docs/reference/configuration/transforms/remap/
[global config]: /docs/reference/configuration/global-options/#log_namespacing
[global config]: /docs/reference/configuration/global-options/#schema.log_namespacing
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 event schema.
"""
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.
"""
"""
spencergilbert marked this conversation as resolved.
Show resolved Hide resolved
type: object: {
examples: []
options: {
Expand Down