2019-11-22 06:46:05 +02:00
|
|
|
// 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 dogstatsd // import "go.opentelemetry.io/otel/exporter/metric/dogstatsd"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2020-01-02 20:41:21 +02:00
|
|
|
"time"
|
2019-11-22 06:46:05 +02:00
|
|
|
|
2020-01-02 20:41:21 +02:00
|
|
|
"go.opentelemetry.io/otel/api/global"
|
2019-11-22 06:46:05 +02:00
|
|
|
"go.opentelemetry.io/otel/exporter/metric/internal/statsd"
|
2020-01-02 20:41:21 +02:00
|
|
|
|
2019-11-22 06:46:05 +02:00
|
|
|
export "go.opentelemetry.io/otel/sdk/export/metric"
|
2020-01-02 20:41:21 +02:00
|
|
|
"go.opentelemetry.io/otel/sdk/metric/batcher/ungrouped"
|
|
|
|
"go.opentelemetry.io/otel/sdk/metric/controller/push"
|
|
|
|
"go.opentelemetry.io/otel/sdk/metric/selector/simple"
|
2019-11-22 06:46:05 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
2020-01-02 20:41:21 +02:00
|
|
|
Options = statsd.Options
|
2019-11-22 06:46:05 +02:00
|
|
|
|
|
|
|
// Exporter implements a dogstatsd-format statsd exporter,
|
|
|
|
// which encodes label sets as independent fields in the
|
|
|
|
// output.
|
|
|
|
//
|
|
|
|
// TODO: find a link for this syntax. It's been copied out of
|
|
|
|
// code, not a specification:
|
|
|
|
//
|
|
|
|
// https://github.com/stripe/veneur/blob/master/sinks/datadog/datadog.go
|
|
|
|
Exporter struct {
|
|
|
|
*statsd.Exporter
|
|
|
|
*statsd.LabelEncoder
|
|
|
|
|
|
|
|
ReencodedLabelsCount int
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ export.Exporter = &Exporter{}
|
|
|
|
_ export.LabelEncoder = &Exporter{}
|
|
|
|
)
|
|
|
|
|
2020-01-02 20:41:21 +02:00
|
|
|
// NewRawExporter returns a new Dogstatsd-syntax exporter for use in a pipeline.
|
|
|
|
// This type implements the metric.LabelEncoder interface,
|
|
|
|
// allowing the SDK's unique label encoding to be pre-computed
|
|
|
|
// for the exporter and stored in the LabelSet.
|
|
|
|
func NewRawExporter(options Options) (*Exporter, error) {
|
2019-11-22 06:46:05 +02:00
|
|
|
exp := &Exporter{
|
|
|
|
LabelEncoder: statsd.NewLabelEncoder(),
|
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
2020-01-02 20:41:21 +02:00
|
|
|
exp.Exporter, err = statsd.NewExporter(options, exp)
|
2019-11-22 06:46:05 +02:00
|
|
|
return exp, err
|
|
|
|
}
|
|
|
|
|
2020-01-02 20:41:21 +02:00
|
|
|
// InstallNewPipeline instantiates a NewExportPipeline and registers it globally.
|
|
|
|
// Typically called as:
|
|
|
|
// pipeline, err := dogstatsd.InstallNewPipeline(dogstatsd.Options{...})
|
|
|
|
// if err != nil {
|
|
|
|
// ...
|
|
|
|
// }
|
|
|
|
// defer pipeline.Stop()
|
|
|
|
// ... Done
|
|
|
|
func InstallNewPipeline(options Options) (*push.Controller, error) {
|
|
|
|
controller, err := NewExportPipeline(options)
|
|
|
|
if err != nil {
|
|
|
|
return controller, err
|
|
|
|
}
|
|
|
|
global.SetMeterProvider(controller)
|
|
|
|
return controller, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewExportPipeline sets up a complete export pipeline with the recommended setup,
|
|
|
|
// chaining a NewRawExporter into the recommended selectors and batchers.
|
|
|
|
func NewExportPipeline(options Options) (*push.Controller, error) {
|
|
|
|
selector := simple.NewWithExactMeasure()
|
|
|
|
exporter, err := NewRawExporter(options)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// The ungrouped batcher ensures that the export sees the full
|
|
|
|
// set of labels as dogstatsd tags.
|
|
|
|
batcher := ungrouped.New(selector, false)
|
|
|
|
|
|
|
|
// The pusher automatically recognizes that the exporter
|
|
|
|
// implements the LabelEncoder interface, which ensures the
|
|
|
|
// export encoding for labels is encoded in the LabelSet.
|
|
|
|
pusher := push.New(batcher, exporter, time.Hour)
|
|
|
|
pusher.Start()
|
|
|
|
|
|
|
|
return pusher, nil
|
|
|
|
}
|
|
|
|
|
2019-11-22 06:46:05 +02:00
|
|
|
// AppendName is part of the stats-internal adapter interface.
|
|
|
|
func (*Exporter) AppendName(rec export.Record, buf *bytes.Buffer) {
|
|
|
|
_, _ = buf.WriteString(rec.Descriptor().Name())
|
|
|
|
}
|
|
|
|
|
|
|
|
// AppendTags is part of the stats-internal adapter interface.
|
|
|
|
func (e *Exporter) AppendTags(rec export.Record, buf *bytes.Buffer) {
|
|
|
|
encoded, inefficient := e.LabelEncoder.ForceEncode(rec.Labels())
|
|
|
|
_, _ = buf.WriteString(encoded)
|
|
|
|
|
|
|
|
if inefficient {
|
|
|
|
e.ReencodedLabelsCount++
|
|
|
|
}
|
|
|
|
}
|