1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package ast // import "go.opentelemetry.io/otel/schema/v1.0/ast"
import "go.opentelemetry.io/otel/schema/v1.0/types"
// Spans corresponds to a section representing a list of changes that happened
// to spans schema in a particular version.
type Spans struct {
Changes []SpansChange
}
// SpanEvents corresponds to a section representing a list of changes that happened
// to span events schema in a particular version.
type SpanEvents struct {
Changes []SpanEventsChange
}
// SpansChange corresponds to a section representing spans change.
type SpansChange struct {
RenameAttributes *AttributeMapForSpans `yaml:"rename_attributes"`
}
// AttributeMapForSpans corresponds to a section representing a translation of
// attributes for specific spans.
type AttributeMapForSpans struct {
ApplyToSpans []types.SpanName `yaml:"apply_to_spans"`
AttributeMap AttributeMap `yaml:"attribute_map"`
}
// SpanEventsChange corresponds to a section representing span events change.
type SpanEventsChange struct {
RenameEvents *RenameSpanEvents `yaml:"rename_events"`
RenameAttributes *RenameSpanEventAttributes `yaml:"rename_attributes"`
}
// RenameSpanEvents corresponds to section representing a renaming of span events.
type RenameSpanEvents struct {
EventNameMap map[string]string `yaml:"name_map"`
}
// RenameSpanEventAttributes corresponds to section representing a renaming of
// attributes of span events.
type RenameSpanEventAttributes struct {
ApplyToSpans []types.SpanName `yaml:"apply_to_spans"`
ApplyToEvents []types.EventName `yaml:"apply_to_events"`
AttributeMap AttributeMap `yaml:"attribute_map"`
}
|