Documentation
¶
Overview ¶
Deprecated: [0.116.0] Use xreceiver module instead.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var NewFactory = xreceiver.NewFactory
NewFactory returns a Factory. Deprecated: [0.116.0] Use the xreceiver.NewFactory instead.
var WithLogs = xreceiver.WithLogs
WithLogs overrides the default "error not supported" implementation for Factory.CreateLogs and the default "undefined" stability level. Deprecated: [0.116.0] Use the xreceiver.WithLogs instead.
var WithMetrics = xreceiver.WithMetrics
WithMetrics overrides the default "error not supported" implementation for Factory.CreateMetrics and the default "undefined" stability level. Deprecated: [0.116.0] Use the xreceiver.WithMetrics instead.
var WithProfiles = xreceiver.WithProfiles
WithProfiles overrides the default "error not supported" implementation for Factory.CreateProfiles and the default "undefined" stability level. Deprecated: [0.116.0] Use the xreceiver.WithProfiles instead.
var WithTraces = xreceiver.WithTraces
WithTraces overrides the default "error not supported" implementation for Factory.CreateTraces and the default "undefined" stability level. Deprecated: [0.116.0] Use the xreceiver.WithTraces instead.
Functions ¶
This section is empty.
Types ¶
type CreateProfilesFunc ¶
type CreateProfilesFunc = xreceiver.CreateProfilesFunc
CreateProfilesFunc is the equivalent of Factory.CreateProfiles. Deprecated: [0.116.0] Use the xreceiver.CreateProfilesFunc instead.
type Factory ¶ added in v0.111.0
Factory is a factory interface for receivers.
This interface cannot be directly implemented. Implementations must use the NewFactory to implement it. Deprecated: [0.116.0] Use the xreceiver.Factory instead.
type FactoryOption ¶ added in v0.111.0
type FactoryOption = xreceiver.FactoryOption
FactoryOption apply changes to Factory. Deprecated: [0.116.0] Use the xreceiver.FactoryOption instead.
type Profiles ¶
Profiles receiver receives profiles. Its purpose is to translate data from any format to the collector's internal profile format. Profiles receiver feeds a xconsumer.Profiles with data.
For example, it could be a pprof data source which translates pprof profiles into pprofile.Profiles. Deprecated: [0.116.0] Use the xreceiver.Profiles instead.