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
149 changes: 76 additions & 73 deletions schema-docs.md

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions schema/meta_schema_language_cpp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ typeSupportStatuses:
status: not_applicable
notes: ""
propertyOverrides: []
- type: ExperimentalJaegerRemoteSampler
status: not_implemented
notes: ""
propertyOverrides: []
- type: ExperimentalLanguageSpecificInstrumentation
status: not_applicable
notes: ""
Expand Down Expand Up @@ -212,10 +216,6 @@ typeSupportStatuses:
status: supported
notes: ""
propertyOverrides: []
- type: JaegerRemoteSampler
status: not_implemented
notes: ""
propertyOverrides: []
- type: LastValueAggregation
status: supported
notes: ""
Expand Down
8 changes: 4 additions & 4 deletions schema/meta_schema_language_go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ typeSupportStatuses:
status: unknown
notes: ""
propertyOverrides: []
- type: ExperimentalJaegerRemoteSampler
status: unknown
notes: ""
propertyOverrides: []
- type: ExperimentalLanguageSpecificInstrumentation
status: unknown
notes: ""
Expand Down Expand Up @@ -212,10 +216,6 @@ typeSupportStatuses:
status: unknown
notes: ""
propertyOverrides: []
- type: JaegerRemoteSampler
status: unknown
notes: ""
propertyOverrides: []
- type: LastValueAggregation
status: unknown
notes: ""
Expand Down
8 changes: 4 additions & 4 deletions schema/meta_schema_language_java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ typeSupportStatuses:
status: supported
notes: ""
propertyOverrides: []
- type: ExperimentalJaegerRemoteSampler
status: unknown
notes: ""
propertyOverrides: []
- type: ExperimentalLanguageSpecificInstrumentation
status: supported
notes: ""
Expand Down Expand Up @@ -220,10 +224,6 @@ typeSupportStatuses:
status: supported
notes: ""
propertyOverrides: []
- type: JaegerRemoteSampler
status: supported
notes: ""
propertyOverrides: []
- type: LastValueAggregation
status: supported
notes: ""
Expand Down
8 changes: 4 additions & 4 deletions schema/meta_schema_language_js.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ typeSupportStatuses:
status: unknown
notes: ""
propertyOverrides: []
- type: ExperimentalJaegerRemoteSampler
status: unknown
notes: ""
propertyOverrides: []
- type: ExperimentalLanguageSpecificInstrumentation
status: unknown
notes: ""
Expand Down Expand Up @@ -212,10 +216,6 @@ typeSupportStatuses:
status: unknown
notes: ""
propertyOverrides: []
- type: JaegerRemoteSampler
status: unknown
notes: ""
propertyOverrides: []
- type: LastValueAggregation
status: unknown
notes: ""
Expand Down
22 changes: 11 additions & 11 deletions schema/meta_schema_types.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -559,15 +559,6 @@
- type: JaegerPropagator
properties: []
isSdkExtensionPlugin: false
- type: JaegerRemoteSampler
properties:
- property: endpoint
description: TODO
- property: interval
description: TODO
- property: initial_sampler
description: TODO
isSdkExtensionPlugin: false
- type: LastValueAggregation
properties: []
isSdkExtensionPlugin: false
Expand Down Expand Up @@ -961,14 +952,14 @@
description: Configure sampler to be always_off.
- property: always_on
description: Configure sampler to be always_on.
- property: jaeger_remote
description: TODO
- property: parent_based
description: Configure sampler to be parent_based.
- property: trace_id_ratio_based
description: Configure sampler to be trace_id_ratio_based.
- property: probability/development
description: Configure sampler to be probability.
- property: jaeger_remote/development
description: TODO
isSdkExtensionPlugin: true
- type: SimpleLogRecordProcessor
properties:
Expand Down Expand Up @@ -1161,3 +1152,12 @@
Values include: explicit_bucket_histogram, base2_exponential_bucket_histogram. For behavior of values, see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/sdk_exporters/otlp.md.
If omitted or null, explicit_bucket_histogram is used.
isSdkExtensionPlugin: false
- type: ExperimentalJaegerRemoteSampler
properties:
- property: endpoint
description: TODO
- property: interval
description: TODO
- property: initial_sampler
description: TODO
isSdkExtensionPlugin: false
6 changes: 3 additions & 3 deletions schema/tracer_provider.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
"always_on": {
"$ref": "#/$defs/AlwaysOnSampler"
},
"jaeger_remote": {
"$ref": "#/$defs/JaegerRemoteSampler"
"jaeger_remote/development": {
"$ref": "#/$defs/ExperimentalJaegerRemoteSampler"
},
"parent_based": {
"$ref": "#/$defs/ParentBasedSampler"
Expand All @@ -89,7 +89,7 @@
"type": ["object", "null"],
"additionalProperties": false
},
"JaegerRemoteSampler": {
"ExperimentalJaegerRemoteSampler": {
"type": ["object", "null"],
"additionalProperties": false,
"properties": {
Expand Down
Loading