mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-11-24 08:22:25 +02:00
916d5f25fe
build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /sdk/metric build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /exporters/otlp/otlptrace/otlptracegrpc build(deps): bump codecov/codecov-action from 3.1.5 to 4.1.0 build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /exporters/zipkin build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /metric build(deps): bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in /example/prometheus build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /exporters/stdout/stdouttrace build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /exporters/otlp/otlptrace/otlptracehttp build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /exporters/otlp/otlpmetric/otlpmetricgrpc build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /exporters/otlp/otlptrace build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /trace build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /exporters/stdout/stdoutmetric build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /bridge/opentracing build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /schema build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /log build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /sdk build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /bridge/opencensus build(deps): bump go.opentelemetry.io/build-tools/gotmpl from 0.12.0 to 0.13.0 in /internal/tools build(deps): bump go.opentelemetry.io/build-tools/multimod from 0.12.0 to 0.13.0 in /internal/tools build(deps): bump go.opentelemetry.io/build-tools/dbotconf from 0.12.0 to 0.13.0 in /internal/tools build(deps): bump go.opentelemetry.io/build-tools/semconvgen from 0.12.0 to 0.13.0 in /internal/tools build(deps): bump go.opentelemetry.io/build-tools/crosslink from 0.12.0 to 0.13.0 in /internal/tools build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /exporters/otlp/otlpmetric/otlpmetrichttp build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /bridge/opentracing/test build(deps): bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in /exporters/prometheus build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /exporters/prometheus |
||
---|---|---|
.. | ||
internal | ||
v1.0 | ||
v1.1 | ||
go.mod | ||
go.sum | ||
README.md |
Telemetry Schema Files
The schema
module contains packages that help to parse and validate
schema files.
Each major.minor
schema file format version is implemented as a separate package, with
the name of the package in the vmajor.minor
form.
To parse a schema file, first decide what file format version you want to parse,
then import the corresponding package and use the Parse
or ParseFile
functions
like this:
import schema "go.opentelemetry.io/otel/schema/v1.1"
// Load the schema from a file in v1.1.x file format.
func loadSchemaFromFile() error {
telSchema, err := schema.ParseFile("schema-file.yaml")
if err != nil {
return err
}
// Use telSchema struct here.
}
// Alternatively use schema.Parse to read the schema file from io.Reader.
func loadSchemaFromReader(r io.Reader) error {
telSchema, err := schema.Parse(r)
if err != nil {
return err
}
// Use telSchema struct here.
}