mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-18 16:47:18 +02:00
52fb033e13
The `go.opentelemetry.io/otel/exporter/trace/jaeger` package was mistakenly released with a `v1.0.0` tag instead of `v0.1.0`. This resulted in all subsequent releases not becoming the default latest, meaning that `go get`s pulled in the incompatible `v0.1.0` release of that package when pulling in more recent packages from other otel packages. Renaming the `exporter` directory to `exporters` fixes this issue by consequentially renaming the package. Additionally, this action also renames *all* exporters. This is understood to be a disruptive action to existing users as they will need to update any dependencies they currently have on our exporters. However, it was decided to take this action regardless. The need to resolve the existing issue explained above is highly important, and given the Alpha state of this project these kinds of breaking changes should be expected (though not without reason). Resolves #331 Co-authored-by: Rahul Patel <rghetia@yahoo.com>
308 lines
7.3 KiB
Go
308 lines
7.3 KiB
Go
// Copyright 2019, 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 statsd_test
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"fmt"
|
|
"strconv"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"go.opentelemetry.io/otel/api/core"
|
|
"go.opentelemetry.io/otel/api/key"
|
|
"go.opentelemetry.io/otel/api/unit"
|
|
"go.opentelemetry.io/otel/exporters/metric/internal/statsd"
|
|
"go.opentelemetry.io/otel/exporters/metric/test"
|
|
export "go.opentelemetry.io/otel/sdk/export/metric"
|
|
sdk "go.opentelemetry.io/otel/sdk/metric"
|
|
)
|
|
|
|
// withTagsAdapter tests a dogstatsd-style statsd exporter.
|
|
type withTagsAdapter struct {
|
|
*statsd.LabelEncoder
|
|
}
|
|
|
|
func (*withTagsAdapter) AppendName(rec export.Record, buf *bytes.Buffer) {
|
|
_, _ = buf.WriteString(rec.Descriptor().Name())
|
|
}
|
|
|
|
func (ta *withTagsAdapter) AppendTags(rec export.Record, buf *bytes.Buffer) {
|
|
encoded, _ := ta.LabelEncoder.ForceEncode(rec.Labels())
|
|
_, _ = buf.WriteString(encoded)
|
|
}
|
|
|
|
func newWithTagsAdapter() *withTagsAdapter {
|
|
return &withTagsAdapter{
|
|
statsd.NewLabelEncoder(),
|
|
}
|
|
}
|
|
|
|
// noTagsAdapter simulates a plain-statsd exporter that appends tag
|
|
// values to the metric name.
|
|
type noTagsAdapter struct {
|
|
}
|
|
|
|
func (*noTagsAdapter) AppendName(rec export.Record, buf *bytes.Buffer) {
|
|
_, _ = buf.WriteString(rec.Descriptor().Name())
|
|
|
|
for _, tag := range rec.Labels().Ordered() {
|
|
_, _ = buf.WriteString(".")
|
|
_, _ = buf.WriteString(tag.Value.Emit())
|
|
}
|
|
}
|
|
|
|
func (*noTagsAdapter) AppendTags(rec export.Record, buf *bytes.Buffer) {
|
|
}
|
|
|
|
func newNoTagsAdapter() *noTagsAdapter {
|
|
return &noTagsAdapter{}
|
|
}
|
|
|
|
type testWriter struct {
|
|
vec []string
|
|
}
|
|
|
|
func (w *testWriter) Write(b []byte) (int, error) {
|
|
w.vec = append(w.vec, string(b))
|
|
return len(b), nil
|
|
}
|
|
|
|
func TestBasicFormat(t *testing.T) {
|
|
type adapterOutput struct {
|
|
adapter statsd.Adapter
|
|
expected string
|
|
}
|
|
|
|
for _, ao := range []adapterOutput{{
|
|
adapter: newWithTagsAdapter(),
|
|
expected: `counter:%s|c|#A:B,C:D
|
|
gauge:%s|g|#A:B,C:D
|
|
measure:%s|h|#A:B,C:D
|
|
timer:%s|ms|#A:B,C:D
|
|
`}, {
|
|
adapter: newNoTagsAdapter(),
|
|
expected: `counter.B.D:%s|c
|
|
gauge.B.D:%s|g
|
|
measure.B.D:%s|h
|
|
timer.B.D:%s|ms
|
|
`},
|
|
} {
|
|
adapter := ao.adapter
|
|
expected := ao.expected
|
|
t.Run(fmt.Sprintf("%T", adapter), func(t *testing.T) {
|
|
for _, nkind := range []core.NumberKind{
|
|
core.Float64NumberKind,
|
|
core.Int64NumberKind,
|
|
} {
|
|
t.Run(nkind.String(), func(t *testing.T) {
|
|
ctx := context.Background()
|
|
writer := &testWriter{}
|
|
config := statsd.Config{
|
|
Writer: writer,
|
|
MaxPacketSize: 1024,
|
|
}
|
|
exp, err := statsd.NewExporter(config, adapter)
|
|
if err != nil {
|
|
t.Fatal("New error: ", err)
|
|
}
|
|
|
|
checkpointSet := test.NewCheckpointSet(sdk.NewDefaultLabelEncoder())
|
|
cdesc := export.NewDescriptor(
|
|
"counter", export.CounterKind, nil, "", "", nkind, false)
|
|
gdesc := export.NewDescriptor(
|
|
"gauge", export.GaugeKind, nil, "", "", nkind, false)
|
|
mdesc := export.NewDescriptor(
|
|
"measure", export.MeasureKind, nil, "", "", nkind, false)
|
|
tdesc := export.NewDescriptor(
|
|
"timer", export.MeasureKind, nil, "", unit.Milliseconds, nkind, false)
|
|
|
|
labels := []core.KeyValue{
|
|
key.New("A").String("B"),
|
|
key.New("C").String("D"),
|
|
}
|
|
const value = 123.456
|
|
|
|
checkpointSet.AddCounter(cdesc, value, labels...)
|
|
checkpointSet.AddGauge(gdesc, value, labels...)
|
|
checkpointSet.AddMeasure(mdesc, value, labels...)
|
|
checkpointSet.AddMeasure(tdesc, value, labels...)
|
|
|
|
err = exp.Export(ctx, checkpointSet)
|
|
require.Nil(t, err)
|
|
|
|
var vfmt string
|
|
if nkind == core.Int64NumberKind {
|
|
fv := value
|
|
vfmt = strconv.FormatInt(int64(fv), 10)
|
|
} else {
|
|
vfmt = strconv.FormatFloat(value, 'g', -1, 64)
|
|
}
|
|
|
|
require.Equal(t, 1, len(writer.vec))
|
|
require.Equal(t, fmt.Sprintf(expected, vfmt, vfmt, vfmt, vfmt), writer.vec[0])
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func makeLabels(offset, nkeys int) []core.KeyValue {
|
|
r := make([]core.KeyValue, nkeys)
|
|
for i := range r {
|
|
r[i] = key.New(fmt.Sprint("k", offset+i)).String(fmt.Sprint("v", offset+i))
|
|
}
|
|
return r
|
|
}
|
|
|
|
type splitTestCase struct {
|
|
name string
|
|
setup func(add func(int))
|
|
check func(expected, got []string, t *testing.T)
|
|
}
|
|
|
|
var splitTestCases = []splitTestCase{
|
|
// These test use the number of keys to control where packets
|
|
// are split.
|
|
{"Simple",
|
|
func(add func(int)) {
|
|
add(1)
|
|
add(1000)
|
|
add(1)
|
|
},
|
|
func(expected, got []string, t *testing.T) {
|
|
require.EqualValues(t, expected, got)
|
|
},
|
|
},
|
|
{"LastBig",
|
|
func(add func(int)) {
|
|
add(1)
|
|
add(1)
|
|
add(1000)
|
|
},
|
|
func(expected, got []string, t *testing.T) {
|
|
require.Equal(t, 2, len(got))
|
|
require.EqualValues(t, []string{
|
|
expected[0] + expected[1],
|
|
expected[2],
|
|
}, got)
|
|
},
|
|
},
|
|
{"FirstBig",
|
|
func(add func(int)) {
|
|
add(1000)
|
|
add(1)
|
|
add(1)
|
|
add(1000)
|
|
add(1)
|
|
add(1)
|
|
},
|
|
func(expected, got []string, t *testing.T) {
|
|
require.Equal(t, 4, len(got))
|
|
require.EqualValues(t, []string{
|
|
expected[0],
|
|
expected[1] + expected[2],
|
|
expected[3],
|
|
expected[4] + expected[5],
|
|
}, got)
|
|
},
|
|
},
|
|
{"OneBig",
|
|
func(add func(int)) {
|
|
add(1000)
|
|
},
|
|
func(expected, got []string, t *testing.T) {
|
|
require.EqualValues(t, expected, got)
|
|
},
|
|
},
|
|
{"LastSmall",
|
|
func(add func(int)) {
|
|
add(1000)
|
|
add(1)
|
|
},
|
|
func(expected, got []string, t *testing.T) {
|
|
require.EqualValues(t, expected, got)
|
|
},
|
|
},
|
|
{"Overflow",
|
|
func(add func(int)) {
|
|
for i := 0; i < 1000; i++ {
|
|
add(1)
|
|
}
|
|
},
|
|
func(expected, got []string, t *testing.T) {
|
|
require.Less(t, 1, len(got))
|
|
require.Equal(t, strings.Join(expected, ""), strings.Join(got, ""))
|
|
},
|
|
},
|
|
{"Empty",
|
|
func(add func(int)) {
|
|
},
|
|
func(expected, got []string, t *testing.T) {
|
|
require.Equal(t, 0, len(got))
|
|
},
|
|
},
|
|
{"AllBig",
|
|
func(add func(int)) {
|
|
add(1000)
|
|
add(1000)
|
|
add(1000)
|
|
},
|
|
func(expected, got []string, t *testing.T) {
|
|
require.EqualValues(t, expected, got)
|
|
},
|
|
},
|
|
}
|
|
|
|
func TestPacketSplit(t *testing.T) {
|
|
for _, tcase := range splitTestCases {
|
|
t.Run(tcase.name, func(t *testing.T) {
|
|
ctx := context.Background()
|
|
writer := &testWriter{}
|
|
config := statsd.Config{
|
|
Writer: writer,
|
|
MaxPacketSize: 1024,
|
|
}
|
|
adapter := newWithTagsAdapter()
|
|
exp, err := statsd.NewExporter(config, adapter)
|
|
if err != nil {
|
|
t.Fatal("New error: ", err)
|
|
}
|
|
|
|
checkpointSet := test.NewCheckpointSet(adapter.LabelEncoder)
|
|
desc := export.NewDescriptor("counter", export.CounterKind, nil, "", "", core.Int64NumberKind, false)
|
|
|
|
var expected []string
|
|
|
|
offset := 0
|
|
tcase.setup(func(nkeys int) {
|
|
labels := makeLabels(offset, nkeys)
|
|
offset += nkeys
|
|
expect := fmt.Sprint("counter:100|c", adapter.LabelEncoder.Encode(labels), "\n")
|
|
expected = append(expected, expect)
|
|
checkpointSet.AddCounter(desc, 100, labels...)
|
|
})
|
|
|
|
err = exp.Export(ctx, checkpointSet)
|
|
require.Nil(t, err)
|
|
|
|
tcase.check(expected, writer.vec, t)
|
|
})
|
|
}
|
|
}
|