From d753ab1c058e02718c9629e49e73661f130c3153 Mon Sep 17 00:00:00 2001 From: Jesse Szwedko Date: Mon, 7 Oct 2024 08:30:34 -0700 Subject: [PATCH] fix(docs): Metric `namespace` should be optional (#21439) Closes: #21430 Signed-off-by: Jesse Szwedko --- website/cue/reference/data_model/schema.cue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/cue/reference/data_model/schema.cue b/website/cue/reference/data_model/schema.cue index cf578cf294cfa..049c9d3fc4324 100644 --- a/website/cue/reference/data_model/schema.cue +++ b/website/cue/reference/data_model/schema.cue @@ -237,7 +237,7 @@ data_model: schema: { "namespace": { description: "The metric namespace. Depending on the service, this will prepend the name or use native namespacing facilities." - required: true + required: false type: string: { examples: ["host", "apache", "nginx"] }