mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-14 10:13:10 +02:00
1f5b159161
* Refactor golangci-lint conf Order settings alphabetically. * Add revive settings to golangci conf * Check blank imports * Check bool-literal-in-expr * Check constant-logical-expr * Check context-as-argument * Check context-key-type * Check deep-exit * Check defer * Check dot-imports * Check duplicated-imports * Check early-return * Check empty-block * Check empty-lines * Check error-naming * Check error-return * Check error-strings * Check errorf * Stop ignoring context first arg in tests * Check exported comments * Check flag-parameter * Check identical branches * Check if-return * Check increment-decrement * Check indent-error-flow * Check deny list of go imports * Check import shadowing * Check package comments * Check range * Check range val in closure * Check range val address * Check redefines builtin id * Check string-format * Check struct tag * Check superfluous else * Check time equal * Check var naming * Check var declaration * Check unconditional recursion * Check unexported return * Check unhandled errors * Check unnecessary stmt * Check unnecessary break * Check waitgroup by value * Exclude deep-exit check in example*_test.go files
159 lines
4.1 KiB
Go
159 lines
4.1 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package tracetransform // import "go.opentelemetry.io/otel/exporters/otlp/otlptrace/internal/tracetransform"
|
|
|
|
import (
|
|
"go.opentelemetry.io/otel/attribute"
|
|
"go.opentelemetry.io/otel/sdk/resource"
|
|
commonpb "go.opentelemetry.io/proto/otlp/common/v1"
|
|
)
|
|
|
|
// KeyValues transforms a slice of attribute KeyValues into OTLP key-values.
|
|
func KeyValues(attrs []attribute.KeyValue) []*commonpb.KeyValue {
|
|
if len(attrs) == 0 {
|
|
return nil
|
|
}
|
|
|
|
out := make([]*commonpb.KeyValue, 0, len(attrs))
|
|
for _, kv := range attrs {
|
|
out = append(out, KeyValue(kv))
|
|
}
|
|
return out
|
|
}
|
|
|
|
// Iterator transforms an attribute iterator into OTLP key-values.
|
|
func Iterator(iter attribute.Iterator) []*commonpb.KeyValue {
|
|
l := iter.Len()
|
|
if l == 0 {
|
|
return nil
|
|
}
|
|
|
|
out := make([]*commonpb.KeyValue, 0, l)
|
|
for iter.Next() {
|
|
out = append(out, KeyValue(iter.Attribute()))
|
|
}
|
|
return out
|
|
}
|
|
|
|
// ResourceAttributes transforms a Resource OTLP key-values.
|
|
func ResourceAttributes(res *resource.Resource) []*commonpb.KeyValue {
|
|
return Iterator(res.Iter())
|
|
}
|
|
|
|
// KeyValue transforms an attribute KeyValue into an OTLP key-value.
|
|
func KeyValue(kv attribute.KeyValue) *commonpb.KeyValue {
|
|
return &commonpb.KeyValue{Key: string(kv.Key), Value: Value(kv.Value)}
|
|
}
|
|
|
|
// Value transforms an attribute Value into an OTLP AnyValue.
|
|
func Value(v attribute.Value) *commonpb.AnyValue {
|
|
av := new(commonpb.AnyValue)
|
|
switch v.Type() {
|
|
case attribute.BOOL:
|
|
av.Value = &commonpb.AnyValue_BoolValue{
|
|
BoolValue: v.AsBool(),
|
|
}
|
|
case attribute.BOOLSLICE:
|
|
av.Value = &commonpb.AnyValue_ArrayValue{
|
|
ArrayValue: &commonpb.ArrayValue{
|
|
Values: boolSliceValues(v.AsBoolSlice()),
|
|
},
|
|
}
|
|
case attribute.INT64:
|
|
av.Value = &commonpb.AnyValue_IntValue{
|
|
IntValue: v.AsInt64(),
|
|
}
|
|
case attribute.INT64SLICE:
|
|
av.Value = &commonpb.AnyValue_ArrayValue{
|
|
ArrayValue: &commonpb.ArrayValue{
|
|
Values: int64SliceValues(v.AsInt64Slice()),
|
|
},
|
|
}
|
|
case attribute.FLOAT64:
|
|
av.Value = &commonpb.AnyValue_DoubleValue{
|
|
DoubleValue: v.AsFloat64(),
|
|
}
|
|
case attribute.FLOAT64SLICE:
|
|
av.Value = &commonpb.AnyValue_ArrayValue{
|
|
ArrayValue: &commonpb.ArrayValue{
|
|
Values: float64SliceValues(v.AsFloat64Slice()),
|
|
},
|
|
}
|
|
case attribute.STRING:
|
|
av.Value = &commonpb.AnyValue_StringValue{
|
|
StringValue: v.AsString(),
|
|
}
|
|
case attribute.STRINGSLICE:
|
|
av.Value = &commonpb.AnyValue_ArrayValue{
|
|
ArrayValue: &commonpb.ArrayValue{
|
|
Values: stringSliceValues(v.AsStringSlice()),
|
|
},
|
|
}
|
|
default:
|
|
av.Value = &commonpb.AnyValue_StringValue{
|
|
StringValue: "INVALID",
|
|
}
|
|
}
|
|
return av
|
|
}
|
|
|
|
func boolSliceValues(vals []bool) []*commonpb.AnyValue {
|
|
converted := make([]*commonpb.AnyValue, len(vals))
|
|
for i, v := range vals {
|
|
converted[i] = &commonpb.AnyValue{
|
|
Value: &commonpb.AnyValue_BoolValue{
|
|
BoolValue: v,
|
|
},
|
|
}
|
|
}
|
|
return converted
|
|
}
|
|
|
|
func int64SliceValues(vals []int64) []*commonpb.AnyValue {
|
|
converted := make([]*commonpb.AnyValue, len(vals))
|
|
for i, v := range vals {
|
|
converted[i] = &commonpb.AnyValue{
|
|
Value: &commonpb.AnyValue_IntValue{
|
|
IntValue: v,
|
|
},
|
|
}
|
|
}
|
|
return converted
|
|
}
|
|
|
|
func float64SliceValues(vals []float64) []*commonpb.AnyValue {
|
|
converted := make([]*commonpb.AnyValue, len(vals))
|
|
for i, v := range vals {
|
|
converted[i] = &commonpb.AnyValue{
|
|
Value: &commonpb.AnyValue_DoubleValue{
|
|
DoubleValue: v,
|
|
},
|
|
}
|
|
}
|
|
return converted
|
|
}
|
|
|
|
func stringSliceValues(vals []string) []*commonpb.AnyValue {
|
|
converted := make([]*commonpb.AnyValue, len(vals))
|
|
for i, v := range vals {
|
|
converted[i] = &commonpb.AnyValue{
|
|
Value: &commonpb.AnyValue_StringValue{
|
|
StringValue: v,
|
|
},
|
|
}
|
|
}
|
|
return converted
|
|
}
|