Documentation ¶
Index ¶
- type MetricFamily
- type PrometheusClient
- func (p *PrometheusClient) Close() error
- func (p *PrometheusClient) Collect(ch chan<- prometheus.Metric)
- func (p *PrometheusClient) Connect() error
- func (p *PrometheusClient) Describe(ch chan<- *prometheus.Desc)
- func (p *PrometheusClient) Description() string
- func (p *PrometheusClient) Expire()
- func (p *PrometheusClient) SampleConfig() string
- func (p *PrometheusClient) Start() error
- func (p *PrometheusClient) Stop()
- func (p *PrometheusClient) Write(metrics []telegraf.Metric) error
- type Sample
- type SampleID
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MetricFamily ¶
type MetricFamily struct { // Samples are the Sample belonging to this MetricFamily. Samples map[SampleID]*Sample // Need the telegraf ValueType because there isn't a Prometheus ValueType // representing Histogram or Summary TelegrafValueType telegraf.ValueType // LabelSet is the label counts for all Samples. LabelSet map[string]int }
MetricFamily contains the data required to build valid prometheus Metrics.
type PrometheusClient ¶
type PrometheusClient struct { Listen string TLSCert string `toml:"tls_cert"` TLSKey string `toml:"tls_key"` BasicUsername string `toml:"basic_username"` BasicPassword string `toml:"basic_password"` IPRange []string `toml:"ip_range"` ExpirationInterval internal.Duration `toml:"expiration_interval"` Path string `toml:"path"` CollectorsExclude []string `toml:"collectors_exclude"` StringAsLabel bool `toml:"string_as_label"` sync.Mutex // contains filtered or unexported fields }
func (*PrometheusClient) Close ¶
func (p *PrometheusClient) Close() error
func (*PrometheusClient) Collect ¶
func (p *PrometheusClient) Collect(ch chan<- prometheus.Metric)
Collect implements prometheus.Collector
func (*PrometheusClient) Connect ¶
func (p *PrometheusClient) Connect() error
func (*PrometheusClient) Describe ¶
func (p *PrometheusClient) Describe(ch chan<- *prometheus.Desc)
Implements prometheus.Collector
func (*PrometheusClient) Description ¶
func (p *PrometheusClient) Description() string
func (*PrometheusClient) Expire ¶
func (p *PrometheusClient) Expire()
Expire removes Samples that have expired.
func (*PrometheusClient) SampleConfig ¶
func (p *PrometheusClient) SampleConfig() string
func (*PrometheusClient) Start ¶
func (p *PrometheusClient) Start() error
func (*PrometheusClient) Stop ¶
func (p *PrometheusClient) Stop()
type Sample ¶
type Sample struct { // Labels are the Prometheus labels. Labels map[string]string // Value is the value in the Prometheus output. Only one of these will populated. Value float64 HistogramValue map[float64]uint64 SummaryValue map[float64]float64 // Histograms and Summaries need a count and a sum Count uint64 Sum float64 // Expiration is the deadline that this Sample is valid until. Expiration time.Time }
Sample represents the current value of a series.
Click to show internal directories.
Click to hide internal directories.