mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-11-30 08:46:54 +02:00
3fca55af7a
Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /exporters/zipkin Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /bridge/opentracing/test Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /schema Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /exporters/otlp/internal/retry Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /exporters/prometheus Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /exporters/stdout/stdoutmetric Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /exporters/otlp/otlptrace Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /exporters/otlp/otlpmetric Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /exporters/otlp/otlpmetric/otlpmetricgrpc Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /exporters/otlp/otlpmetric/otlpmetrichttp Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /exporters/otlp/otlptrace/otlptracegrpc Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /exporters/stdout/stdouttrace Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /exporters/otlp/otlptrace/otlptracehttp Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /metric Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /trace Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /exporters/jaeger Bump codecov/codecov-action from 3.1.3 to 3.1.4 Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /sdk/metric Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /bridge/opencensus Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /bridge/opentracing Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 in /sdk Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 |
||
---|---|---|
.. | ||
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.
}