This repository contains the JSON schema that defines the OpenTelemetry configuration. This schema can be utilized to generate model code for implementations and to validate the structure of a configuration file. The repository comes as a result of OTEP #225, where JSON schema was chosen for the following reasons:
- support for client-side validation
- code generation
- broad support across languages
The examples directory contains a variety of sample configuration files to help get started and illustrate useful patterns. The following are noteworthy:
- sdk-migration-config.yaml: Includes env var substitution references to all standard env vars which map cleanly to declarative configuration (see notes in the example for the set of env vars which are not referenced). Note, SDKs parsing configuration files ignore all env vars besides those referenced via env var substitution. This is a great starting point for transitioning from env var based configuration to file based configuration.
- sdk-config.yaml: Represents the typical default configuration. This is a good starting point if you are not using env var based configuration or wish to transition fully to file based configuration. Note, SDKs parsing configuration files ignore all env vars besides those referenced via env var substitution.
There are several tools available to generate code from a JSON schema. The following shows an example for generating code from the JSON schema in Go:
go-jsonschema \
-p telemetry \
--schema-package=https://opentelemetry.io/otelconfig/opentelemetry_configuration.json=github.com/open-telemetry/opentelemetry-collector/schema \
./schema/opentelemetry_configuration.json
Before reaching 1.0, each minor version change is equivalent to major version change. That is, there are no guarantees about compatibility and all changes are permitted. As of 1.0, we provide the following stability guarantees:
- For major version: No guarantees.
- For minor versions: TBD
Allowable changes:
- For major versions: All changes are permitted.
- For minor versions: TBD
The following rules are enforced when modeling the configuration schema:
Only properties which are described in opentelemetry-specification or semantic-conventions are modeled in the schema. However, it's acceptable to allow additional properties specific to a particular language or implementation, and not covered by the schema. Model these by setting "additionalProperties": true
(see JSON schema additionalProperties). Types should set "additionalProperties": false
by default unless requested by an opentelemetry component maintainer which supports additional options.
To remove redundant information from the configuration file, prefixes for data produced by each of the providers will be removed from configuration options. For example, under the meter_provider
configuration, metric readers are identified by the word readers
rather than by metric_readers
. Similarly, the prefix span_
will be dropped for tracer provider configuration, and logrecord
for logger provider.
Properties defined in the schema should be lower snake case.
When a property requires pattern matching, use wildcard *
(match any number of any character, including none) and ?
(match any single character) instead of regex. If a single property with wildcards is likely to be insufficient to model the configuration requirements, accept included
and excluded
properties, each with an array of strings with wildcard entries. The wildcard entries should be joined with a logical OR. If included
is not specified, assume that all entries are included. Apply excluded
after applying included
. Examples:
- Given
excluded: ["a*"]
: Match all except values starting witha
. - Given
included: ["a*", "b*"]
,excluded: ["ab*"]
: Match any value starting witha
orb
, excluding values starting withab
. - Given
included: ["a", "b"]
,excluded: ["a"]
: Match values equal tob
.
Properties should be modeled using the most appropriate data structures and types to represent the information. This may result in a schema which doesn't support env var substitution for the standard env vars where a type mismatch occurs. For example, the OTEL_RESOURCE_ATTRIBUTES
env var is modeled as a string, consisting of a comma separated list of key-value pairs, which is not the natural way to model a mapping of key-value pairs in JSON schema.
In instances where there is a type mismatch between the JSON schema and equivalent standard env var, an alternative version of the property may be provided to resolve the mismatch. For example, resource attributes are configured at .resource.attributes
, but .resource.attributes_list
is available with a format matching that of OTEL_RESOURCE_ATTRIBUTES
. Alternative properties are reserved for cases where there is a demonstrated need for platforms to be able to participate in configuration and there is no reasonable alternative.
When a type requires a configurable list of name-value pairs (i.e. resource attributes, HTTP headers), model using an array of objects, each with name
and value
properties. While an array of name-value objects is slightly more verbose than an object where each key-value is an entry, the latter is preferred because:
-
Avoids user input as keys, which ensures conformity with the snake_case properties rule.
-
Allows both the names and the values to be targets for env var substitution. For example:
tracer_provider: processors: - batch: exporter: otlp: headers: - name: ${AUTHORIZATION_HEADER_NAME:-api-key} value: ${AUTHORIZATION_HEADER_VALUE}
JSON schema has two related but subtly different concepts involved in indicating the requirement level of properties and values:
type
ofnull
: When a property includes a type ofnull
along with other allowed types (i.e."type": ["string", "null"]
), it indicates that even if the property key is present, the value may be omitted. This is useful in a variety of situations:- When modeling properties with primitive types which are candidates for env var substitution, since allowing
null
means that the configuration is valid even if the referenced env var is undefined. - When modeling objects which do not require any properties. In these cases, either no properties are required, or there are no properties and the presence of the property key expresses the desired state.
- When modeling properties with primitive types which are candidates for env var substitution, since allowing
- required: When a property is
required
, the key must be included in the object or the configuration is invalid. Properties should be required when there is no well default semantic (i.e. it's not clear what the behavior is when the property is absent).
For example:
tracer_provider:
processors:
- simple:
exporter:
console:
limits:
attribute_value_length_limit: ${OTEL_SPAN_ATTRIBUTE_VALUE_LENGTH_LIMIT}
tracer_provider
is not required. When omitted, a noop tracer provider is used.tracer_provider
's type isobject
. There's no sensible tracer provider which does not minimally set one entry inprocessors
.exporter
is required. A simple processor without an exporter is invalid.exporter
's type isobject
. Settingexporter
tonull
or any non-object value is invalid.console
's type is["object", "null"]
. The console exporter has no properties, and we should not force the user to set an empty object (i.econsole: {}
).limits
is not required. When omitted, default span limits are used.limits
's type isobject
. If a user includes thelimits
property, they must set at least one property. Settingslimits
tonull
is invalid.attributes_value_length_limit
is not required. If omitted, no attribute length limits are applied.attributes_value_length_limit
's type is["integer", "null]
. If null (i.e. because theOTEL_SPAN_ATTRIBUTE_VALUE_LENGTH_LIMIT
env var is unset), no attribute length limits are applied.
If a property is not required, it should include a comment describing the semantics when it is omitted.
If a property type
includes null
, it must include a comment describing the semantics when the value is null
. It's common for properties with primitive types to allow null
. object
types allow null
if no properties are required and the presence of the property key is meaningful.
JSON schema's schema composition keywords (allOf
, anyOf
, oneOf
) offer a tempting mechanism for object-oriented style inheritance and polymorphic patterns. However, JSON schema code generation tools may struggle or not support these keywords. Therefore, these keywords should be used judiciously, and should not be used to extend object
types.
For example:
{
"Shape": {
"title": "Shape",
"type": "object",
"properties": {
"sides": { "type": "integer"}
}
},
"Square": {
"title": "Square",
"type": "object",
"allOf": [{"$ref": "#/$defs/Shape"}],
"properties": {
"side_length": {"type": "integer"}
}
}
}
allOf
is used in the Square
type to extend the parent Shape
type, such that Square
has properties sides
and side_length
. Avoid this type of use.
Another example:
{
"AttributeNameValue": {
"title": "AttributeNameValue",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"value": {
"oneOf": [
{"type": "string"},
{"type": "number"},
{"type": "boolean"},
{"type": "null"},
{"type": "array", "items": {"type": "string"}},
{"type": "array", "items": {"type": "boolean"}},
{"type": "array", "items": {"type": "number"}}
]
},
"type": {
"type": ["string", "null"],
"enum": [null, "string", "bool", "int", "double", "string_array", "bool_array", "int_array", "double_array"]
}
},
"required": [
"name", "value"
]
}
}
oneOf
is used to specify that the value
property matches the standard attribute definition, and is either a primitive or array of primitives. This type of use is acceptable but should be used judiciously.
See CONTRIBUTING.md
Approvers (@open-telemetry/configuration-approvers):
- Brett McBride, Deakin University
- Marc Alff, Oracle
Find more about the approver role in community repository.
Maintainers (@open-telemetry/configuration-maintainers):
- Alex Boten, Honeycomb
- Jack Berg, New Relic
- Tristan Sloughter, Splunk
- Tyler Yahn, Splunk
Find more about the maintainer role in community repository.