40 lines
1.6 KiB
Go
40 lines
1.6 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package component // import "go.opentelemetry.io/collector/component"
|
|
|
|
import (
|
|
"go.opentelemetry.io/otel/metric"
|
|
"go.opentelemetry.io/otel/trace"
|
|
"go.uber.org/zap"
|
|
|
|
"go.opentelemetry.io/collector/config/configtelemetry"
|
|
"go.opentelemetry.io/collector/pdata/pcommon"
|
|
)
|
|
|
|
// TelemetrySettings provides components with APIs to report telemetry.
|
|
type TelemetrySettings struct {
|
|
// Logger that the factory can use during creation and can pass to the created
|
|
// component to be used later as well.
|
|
Logger *zap.Logger
|
|
|
|
// TracerProvider that the factory can pass to other instrumented third-party libraries.
|
|
TracerProvider trace.TracerProvider
|
|
|
|
// MeterProvider that the factory can pass to other instrumented third-party libraries.
|
|
MeterProvider metric.MeterProvider
|
|
|
|
// MetricsLevel controls the level of detail for metrics emitted by the collector.
|
|
// Experimental: *NOTE* this field is experimental and may be changed or removed.
|
|
MetricsLevel configtelemetry.Level
|
|
|
|
// Resource contains the resource attributes for the collector's telemetry.
|
|
Resource pcommon.Resource
|
|
|
|
// ReportStatus allows a component to report runtime changes in status. The service
|
|
// will automatically report status for a component during startup and shutdown. Components can
|
|
// use this method to report status after start and before shutdown. For more details about
|
|
// component status reporting see: https://github.com/open-telemetry/opentelemetry-collector/blob/main/docs/component-status.md
|
|
ReportStatus func(*StatusEvent)
|
|
}
|