diff --git a/config/flipt.schema.cue b/config/flipt.schema.cue index 6ece3a1d55..6f9f456f70 100644 --- a/config/flipt.schema.cue +++ b/config/flipt.schema.cue @@ -282,9 +282,9 @@ import "strings" } #tracing: { - enabled?: bool | *false - exporter?: *"jaeger" | "zipkin" | "otlp" - samplingRatio?: float & >=0 & <=1 | *1 + enabled?: bool | *false + exporter?: *"jaeger" | "zipkin" | "otlp" + sampling_ratio?: float & >=0 & <=1 | *1 propagators?: [ ..."tracecontext" | "baggage" | "b3" | "b3multi" | "jaeger" | "xray" | "ottrace" | "none", ] | *["tracecontext", "baggage"] diff --git a/config/flipt.schema.json b/config/flipt.schema.json index 15e3a6bdad..b9e420f577 100644 --- a/config/flipt.schema.json +++ b/config/flipt.schema.json @@ -977,7 +977,7 @@ "enum": ["jaeger", "zipkin", "otlp"], "default": "jaeger" }, - "samplingRatio": { + "sampling_ratio": { "type": "number", "default": 1, "minimum": 0,