Documentation ¶
Overview ¶
Package loggingexporter exports data to console as logs.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewFactory ¶ added in v0.7.0
func NewFactory() component.ExporterFactory
NewFactory creates a factory for Logging exporter
Types ¶
type Config ¶
type Config struct { config.ExporterSettings `mapstructure:",squash"` // squash ensures fields are correctly decoded in embedded struct // LogLevel defines log level of the logging exporter; options are debug, info, warn, error. LogLevel zapcore.Level `mapstructure:"loglevel"` // SamplingInitial defines how many samples are initially logged during each second. SamplingInitial int `mapstructure:"sampling_initial"` // SamplingThereafter defines the sampling rate after the initial samples are logged. SamplingThereafter int `mapstructure:"sampling_thereafter"` }
Config defines configuration for logging exporter.
Click to show internal directories.
Click to hide internal directories.