1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-11-25 22:41:46 +02:00
Files
opentelemetry-go/schema
Sam Xie 838643a3a5 Bump Go version for schema (#6418)
Fix
https://github.com/open-telemetry/opentelemetry-go/actions/runs/13696022593/job/38298512564

> * schema/go.mod#L0C0:0: As of Go 1.21, toolchain versions [must use
the 1.N.P syntax](https://go.dev/doc/> toolchain#version).
>     
> `1.22` in `schema/go.mod` does not match this syntax and there is no
additional `toolchain` directive, which may cause some `go` commands to
fail.
2025-03-07 09:18:09 +01:00
..
2024-03-26 20:13:54 +01:00
2024-03-26 20:13:54 +01:00
2025-03-07 09:18:09 +01:00

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.
}