From 3cad36eb1ece2fdbb7bbcb6958ad6a479d7ca93d Mon Sep 17 00:00:00 2001 From: Jack Berg Date: Thu, 5 Dec 2024 15:55:20 -0600 Subject: [PATCH] proto -> protobuf --- examples/kitchen-sink.yaml | 18 +++++++++--------- schema/common.json | 2 +- schema/meter_provider.json | 2 +- schema/type_descriptions.yaml | 4 ++-- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/examples/kitchen-sink.yaml b/examples/kitchen-sink.yaml index 43bbf5b..6a0c0e9 100644 --- a/examples/kitchen-sink.yaml +++ b/examples/kitchen-sink.yaml @@ -68,9 +68,9 @@ logger_provider: # Configure max time (in milliseconds) to wait for each export. # If omitted or null, 10000 is used. timeout: 10000 - # Configure the encoding used for messages. Values include: proto, json. Implementations may not support json. - # If omitted or null, proto is used. - encoding: proto + # Configure the encoding used for messages. Values include: protobuf, json. Implementations may not support json. + # If omitted or null, protobuf is used. + encoding: protobuf - # Configure a batch log record processor. batch: # Configure exporter. @@ -206,9 +206,9 @@ meter_provider: # Configure max time (in milliseconds) to wait for each export. # If omitted or null, 10000 is used. timeout: 10000 - # Configure the encoding used for messages. Values include: proto, json. Implementations may not support json. - # If omitted or null, proto is used. - encoding: proto + # Configure the encoding used for messages. Values include: protobuf, json. Implementations may not support json. + # If omitted or null, protobuf is used. + encoding: protobuf # Configure temporality preference. Values include: cumulative, delta, low_memory. For behavior of values, see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/sdk_exporters/otlp.md. # If omitted or null, cumulative is used. temporality_preference: delta @@ -390,9 +390,9 @@ tracer_provider: # Configure max time (in milliseconds) to wait for each export. # If omitted or null, 10000 is used. timeout: 10000 - # Configure the encoding used for messages. Values include: proto, json. Implementations may not support json. - # If omitted or null, proto is used. - encoding: proto + # Configure the encoding used for messages. Values include: protobuf, json. Implementations may not support json. + # If omitted or null, protobuf is used. + encoding: protobuf - # Configure a batch span processor. batch: # Configure exporter. diff --git a/schema/common.json b/schema/common.json index 0cc0f9d..6ee683f 100644 --- a/schema/common.json +++ b/schema/common.json @@ -72,7 +72,7 @@ "encoding": { "type": ["string", "null"], "enum": [ - "proto", + "protobuf", "json" ] } diff --git a/schema/meter_provider.json b/schema/meter_provider.json index b44189a..f63aa84 100644 --- a/schema/meter_provider.json +++ b/schema/meter_provider.json @@ -217,7 +217,7 @@ "encoding": { "type": ["string", "null"], "enum": [ - "proto", + "protobuf", "json" ] }, diff --git a/schema/type_descriptions.yaml b/schema/type_descriptions.yaml index 969a305..9069b56 100644 --- a/schema/type_descriptions.yaml +++ b/schema/type_descriptions.yaml @@ -553,9 +553,9 @@ - type: OtlpHttpExporter property_descriptions: encoding: > - Configure the encoding used for messages. Values include: proto, json. Implementations may not support json. + Configure the encoding used for messages. Values include: protobuf, json. Implementations may not support json. - If omitted or null, proto is used. + If omitted or null, protobuf is used. path_patterns: - .tracer_provider.processors[].*.exporter.otlp_http - .logger_provider.processors[].*.exporter.otlp_http