Skip to content

Commit

Permalink
proto -> protobuf
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-berg committed Dec 5, 2024
1 parent 467989d commit 3cad36e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions examples/kitchen-sink.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion schema/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"encoding": {
"type": ["string", "null"],
"enum": [
"proto",
"protobuf",
"json"
]
}
Expand Down
2 changes: 1 addition & 1 deletion schema/meter_provider.json
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
"encoding": {
"type": ["string", "null"],
"enum": [
"proto",
"protobuf",
"json"
]
},
Expand Down
4 changes: 2 additions & 2 deletions schema/type_descriptions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3cad36e

Please sign in to comment.