Skip to content
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 aws-resources/src/test/resources/declarative-config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
file_format: "1.0-rc.1"
file_format: "1.0"
resource:
detection/development:
detectors:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class AwsComponentProviderTest {
@Test
void endToEnd() {
String yaml =
"file_format: 1.0-rc.1\n"
"file_format: '1.0'\n"
+ "propagator:\n"
+ " composite:\n"
+ " - xray:\n"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
file_format: "1.0-rc.1"
file_format: "1.0"
resource:
detection/development:
detectors:
Expand Down
4 changes: 2 additions & 2 deletions baggage-processor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ You can configure the baggage span and log record processors using declarative Y
For the tracer provider (span processor):

```yaml
file_format: 1.0-rc.1
file_format: '1.0'
tracer_provider:
processors:
- baggage:
Expand All @@ -43,7 +43,7 @@ tracer_provider:
For the logger provider (log record processor):

```yaml
file_format: 1.0-rc.1
file_format: '1.0'
logger_provider:
processors:
- baggage:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class BaggageLogRecordComponentProviderTest {
@Test
void declarativeConfig() {
String yaml =
"file_format: 1.0-rc.1\n"
"file_format: '1.0'\n"
+ "logger_provider:\n"
+ " processors:\n"
+ " - baggage:\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class BaggageSpanComponentProviderTest {
@Test
void declarativeConfig() {
String yaml =
"file_format: 1.0-rc.1\n"
"file_format: '1.0'\n"
+ "tracer_provider:\n"
+ " processors:\n"
+ " - baggage:\n"
Expand Down
4 changes: 2 additions & 2 deletions cel-sampler/src/test/resources/cel-sampler-config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# yaml-language-server: $schema=https://github.com/open-telemetry/opentelemetry-configuration/raw/refs/tags/v1.0.0-rc.2/schema/opentelemetry_configuration.json
file_format: 1.0-rc.2
# yaml-language-server: $schema=https://github.com/open-telemetry/opentelemetry-configuration/raw/refs/tags/v1.0.0/schema/opentelemetry_configuration.json
file_format: "1.0"
tracer_provider:
sampler:
parent_based:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
file_format: "1.0-rc.1"
file_format: "1.0"
resource:
detection/development:
detectors:
Expand Down
2 changes: 1 addition & 1 deletion inferred-spans/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ You can configure the inferred spans processor using declarative YAML configurat
OpenTelemetry SDK. For example:

```yaml
file_format: 1.0-rc.1
file_format: '1.0'
tracer_provider:
processors:
- inferred_spans/development:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void tearDown() {
@Test
void declarativeConfig() {
String yaml =
"file_format: 1.0-rc.1\n"
"file_format: '1.0'\n"
+ "tracer_provider:\n"
+ " processors:\n"
+ " - inferred_spans/development:\n"
Expand All @@ -63,7 +63,7 @@ void declarativeConfig() {
@Test
void declarativeConfigDisabled() {
String yaml =
"file_format: 1.0-rc.1\n"
"file_format: '1.0'\n"
+ "tracer_provider:\n"
+ " processors:\n"
+ " - inferred_spans/development:\n"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
file_format: "1.0-rc.1"
file_format: "1.0"
resource:
detection/development:
detectors:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class EventToSpanBridgeComponentProviderTest {
@Test
void endToEnd() {
String yaml =
"file_format: 1.0-rc.1\n"
"file_format: '1.0'\n"
+ "logger_provider:\n"
+ " processors:\n"
+ " - event_to_span_event_bridge:\n";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class RuleBasedRoutingSamplerComponentProviderTest {
@Test
void endToEnd() {
String yaml =
"file_format: 1.0-rc.1\n"
"file_format: '1.0'\n"
+ "tracer_provider:\n"
+ " sampler:\n"
+ " parent_based:\n"
Expand Down
2 changes: 1 addition & 1 deletion span-stacktrace/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ SDK when included in the application runtime dependencies.
You can enable the stacktrace span processor using declarative YAML configuration with the OpenTelemetry SDK. For example:

```yaml
file_format: 1.0-rc.1
file_format: '1.0'
tracer_provider:
processors:
- stacktrace/development:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class StackTraceComponentProviderTest {
@Test
void endToEnd() {
String yaml =
"file_format: 1.0-rc.1\n"
"file_format: '1.0'\n"
+ "tracer_provider:\n"
+ " processors:\n"
+ " - stacktrace/development: \n"
Expand Down
Loading