Documentation ¶
Overview ¶
Package prometheusexporter exports metrics data as a Prometheus pull handler.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewFactory ¶
func NewFactory() component.ExporterFactory
NewFactory creates a new Prometheus exporter factory.
Types ¶
type Config ¶
type Config struct { config.ExporterSettings `mapstructure:",squash"` // squash ensures fields are correctly decoded in embedded struct confighttp.HTTPServerSettings `mapstructure:",squash"` // Namespace if set, exports metrics under the provided value. Namespace string `mapstructure:"namespace"` // ConstLabels are values that are applied for every exported metric. ConstLabels prometheus.Labels `mapstructure:"const_labels"` // SendTimestamps will send the underlying scrape timestamp with the export SendTimestamps bool `mapstructure:"send_timestamps"` // MetricExpiration defines how long metrics are kept without updates MetricExpiration time.Duration `mapstructure:"metric_expiration"` // ResourceToTelemetrySettings defines configuration for converting resource attributes to metric labels. ResourceToTelemetrySettings resourcetotelemetry.Settings `mapstructure:"resource_to_telemetry_conversion"` // EnableOpenMetrics enables the use of the OpenMetrics encoding option for the prometheus exporter. EnableOpenMetrics bool `mapstructure:"enable_open_metrics"` }
Config defines configuration for Prometheus exporter.
Click to show internal directories.
Click to hide internal directories.