2020-03-25 23:47:17 +02:00
|
|
|
// Copyright The OpenTelemetry Authors
|
2020-03-07 08:01:02 +02:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2020-11-04 19:10:58 +02:00
|
|
|
package otlp // import "go.opentelemetry.io/otel/exporters/otlp"
|
2020-03-07 08:01:02 +02:00
|
|
|
|
|
|
|
import (
|
2020-11-10 17:44:42 +02:00
|
|
|
metricsdk "go.opentelemetry.io/otel/sdk/export/metric"
|
2020-03-07 08:01:02 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2020-10-12 04:57:50 +02:00
|
|
|
// DefaultCollectorPort is the port the Exporter will attempt connect to
|
|
|
|
// if no collector port is provided.
|
2021-01-12 05:55:24 +02:00
|
|
|
DefaultCollectorPort uint16 = 4317
|
2020-10-12 04:57:50 +02:00
|
|
|
// DefaultCollectorHost is the host address the Exporter will attempt
|
|
|
|
// connect to if no collector address is provided.
|
2020-03-07 08:01:02 +02:00
|
|
|
DefaultCollectorHost string = "localhost"
|
|
|
|
)
|
|
|
|
|
2020-10-12 04:57:50 +02:00
|
|
|
// ExporterOption are setting options passed to an Exporter on creation.
|
2020-09-11 23:14:25 +02:00
|
|
|
type ExporterOption func(*config)
|
2020-03-07 08:01:02 +02:00
|
|
|
|
2020-09-11 23:14:25 +02:00
|
|
|
type config struct {
|
2020-11-10 17:44:42 +02:00
|
|
|
exportKindSelector metricsdk.ExportKindSelector
|
2020-03-13 20:42:20 +02:00
|
|
|
}
|
|
|
|
|
Split connection management away from exporter (#1369)
* Split protocol handling away from exporter
This commits adds a ProtocolDriver interface, which the exporter
will use to connect to the collector and send both metrics and traces
to it. That way, the Exporter type is free from dealing with any
connection/protocol details, as this business is taken over by the
implementations of the ProtocolDriver interface.
The gRPC code from the exporter is moved into the implementation of
ProtocolDriver. Currently it only maintains a single connection,
just as the Exporter used to do.
With the split, most of the Exporter options became actually gRPC
connection manager's options. Currently the only option that remained
to be Exporter's is about setting the export kind selector.
* Update changelog
* Increase the test coverage of GRPC driver
* Do not close a channel with multiple senders
The disconnected channel can be used for sending by multiple
goroutines (for example, by metric controller and span processor), so
this channel should not be closed at all. Dropping this line closes a
race between closing a channel and sending to it.
* Simplify new connection handler
The callbacks never return an error, so drop the return type from it.
* Access clients under a lock
The client may change as a result on reconnection in background, so
guard against a racy access.
* Simplify the GRPC driver a bit
The config type was exported earlier to have a consistent way of
configuring the driver, when also the multiple connection driver would
appear. Since we are not going to add a multiple connection driver,
pass the options directly to the driver constructor. Also shorten the
name of the constructor to `NewGRPCDriver`.
* Merge common gRPC code back into the driver
The common code was supposed to be shared between single connection
driver and multiple connection driver, but since the latter won't be
happening, it makes no sense to keep the not-so-common code in a
separate file. Also drop some abstraction too.
* Rename the file with gRPC driver implementation
* Update changelog
* Sleep for a second to trigger the timeout
Sometimes CI has it's better moments, so it's blazing fast and manages
to finish shutting the exporter down within the 1 microsecond timeout.
* Increase the timeout for shutting down the exporter
One millisecond is quite short, and I was getting failures locally or
in CI:
go test ./... + race in ./exporters/otlp
2020/12/14 18:27:54 rpc error: code = Canceled desc = context canceled
2020/12/14 18:27:54 context deadline exceeded
--- FAIL: TestNewExporter_withMultipleAttributeTypes (0.37s)
otlp_integration_test.go:541: resource span count: got 0, want 1
FAIL
FAIL go.opentelemetry.io/otel/exporters/otlp 5.278s
or
go test ./... + coverage in ./exporters/otlp
2020/12/14 17:41:16 rpc error: code = Canceled desc = context canceled
2020/12/14 17:41:16 exporter disconnected
--- FAIL: TestNewExporter_endToEnd (1.53s)
--- FAIL: TestNewExporter_endToEnd/WithCompressor (0.41s)
otlp_integration_test.go:246: span counts: got 3, want 4
2020/12/14 17:41:18 context canceled
FAIL
coverage: 35.3% of statements in ./...
FAIL go.opentelemetry.io/otel/exporters/otlp 4.753s
* Shut down the providers in end to end test
This is to make sure that all batched spans are actually flushed
before closing the exporter.
2020-12-21 22:49:45 +02:00
|
|
|
// WithMetricExportKindSelector defines the ExportKindSelector used
|
|
|
|
// for selecting AggregationTemporality (i.e., Cumulative vs. Delta
|
|
|
|
// aggregation). If not specified otherwise, exporter will use a
|
|
|
|
// cumulative export kind selector.
|
2020-11-10 17:44:42 +02:00
|
|
|
func WithMetricExportKindSelector(selector metricsdk.ExportKindSelector) ExporterOption {
|
|
|
|
return func(cfg *config) {
|
|
|
|
cfg.exportKindSelector = selector
|
|
|
|
}
|
|
|
|
}
|
2021-04-23 20:51:55 +02:00
|
|
|
|
|
|
|
// SplitDriverOption provides options for setting up a split driver.
|
|
|
|
type SplitDriverOption interface {
|
|
|
|
Apply(*splitDriver)
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithMetricDriver allows one to set the driver used for metrics
|
|
|
|
// in a SplitDriver.
|
|
|
|
func WithMetricDriver(dr ProtocolDriver) SplitDriverOption {
|
|
|
|
return metricDriverOption{dr}
|
|
|
|
}
|
|
|
|
|
|
|
|
type metricDriverOption struct {
|
|
|
|
driver ProtocolDriver
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o metricDriverOption) Apply(s *splitDriver) {
|
|
|
|
s.metric = o.driver
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithTraceDriver allows one to set the driver used for traces
|
|
|
|
// in a SplitDriver.
|
|
|
|
func WithTraceDriver(dr ProtocolDriver) SplitDriverOption {
|
|
|
|
return traceDriverOption{dr}
|
|
|
|
}
|
|
|
|
|
|
|
|
type traceDriverOption struct {
|
|
|
|
driver ProtocolDriver
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o traceDriverOption) Apply(s *splitDriver) {
|
|
|
|
s.trace = o.driver
|
|
|
|
}
|