Documentation
¶
Overview ¶
Package componenttest define types and functions used to help test packages implementing the component package interfaces.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CheckConfigStruct ¶
CheckConfigStruct enforces that given configuration object is following the patterns used by the collector. This ensures consistency between different implementations of components and extensions. It is recommended for implementers of components to call this function on their tests passing the default configuration of the component factory.
func NewNopHost ¶
NewNopHost returns a new instance of nopHost with proper defaults for most tests.
func NewNopTelemetrySettings ¶
func NewNopTelemetrySettings() component.TelemetrySettings
NewNopTelemetrySettings returns a new nop telemetry settings for Create* functions.
Types ¶
type Telemetry ¶ added in v0.119.0
type Telemetry struct { Reader *sdkmetric.ManualReader SpanRecorder *tracetest.SpanRecorder // contains filtered or unexported fields }
func NewTelemetry ¶ added in v0.119.0
func NewTelemetry(opts ...TelemetryOption) *Telemetry
func (*Telemetry) GetMetric ¶ added in v0.119.0
func (tt *Telemetry) GetMetric(name string) (metricdata.Metrics, error)
func (*Telemetry) NewTelemetrySettings ¶ added in v0.119.0
func (tt *Telemetry) NewTelemetrySettings() component.TelemetrySettings
type TelemetryOption ¶ added in v0.119.0
type TelemetryOption interface {
// contains filtered or unexported methods
}
func WithMetricOptions ¶ added in v0.119.0
func WithMetricOptions(opts ...sdkmetric.Option) TelemetryOption
func WithTraceOptions ¶ added in v0.119.0
func WithTraceOptions(opts ...sdktrace.TracerProviderOption) TelemetryOption
Click to show internal directories.
Click to hide internal directories.