2013-05-08 12:15:47 -07:00
|
|
|
// Code generated by protoc-gen-go.
|
|
|
|
// source: config.proto
|
|
|
|
// DO NOT EDIT!
|
|
|
|
|
2015-01-23 05:44:30 -08:00
|
|
|
/*
|
|
|
|
Package io_prometheus is a generated protocol buffer package.
|
|
|
|
|
|
|
|
It is generated from these files:
|
|
|
|
config.proto
|
|
|
|
|
|
|
|
It has these top-level messages:
|
|
|
|
LabelPair
|
|
|
|
LabelPairs
|
|
|
|
GlobalConfig
|
|
|
|
TargetGroup
|
2015-04-25 03:59:05 -07:00
|
|
|
DNSConfig
|
|
|
|
ScrapeConfig
|
2015-01-23 05:44:30 -08:00
|
|
|
PrometheusConfig
|
|
|
|
*/
|
2013-05-08 12:15:47 -07:00
|
|
|
package io_prometheus
|
|
|
|
|
2015-02-13 11:24:17 -08:00
|
|
|
import proto "github.com/golang/protobuf/proto"
|
2013-05-08 12:15:47 -07:00
|
|
|
import math "math"
|
|
|
|
|
2015-01-23 05:44:30 -08:00
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
2013-05-08 12:15:47 -07:00
|
|
|
var _ = proto.Marshal
|
|
|
|
var _ = math.Inf
|
|
|
|
|
2013-10-10 11:53:39 -07:00
|
|
|
// A label/value pair suitable for attaching to timeseries.
|
2013-05-08 12:15:47 -07:00
|
|
|
type LabelPair struct {
|
2013-10-10 11:53:39 -07:00
|
|
|
// The name of the label. Must adhere to the regex "[a-zA-Z_][a-zA-Z0-9_]*".
|
|
|
|
Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
|
|
|
// The value of the label. May contain any characters.
|
2013-05-08 12:15:47 -07:00
|
|
|
Value *string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LabelPair) Reset() { *m = LabelPair{} }
|
|
|
|
func (m *LabelPair) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*LabelPair) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (m *LabelPair) GetName() string {
|
|
|
|
if m != nil && m.Name != nil {
|
|
|
|
return *m.Name
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LabelPair) GetValue() string {
|
|
|
|
if m != nil && m.Value != nil {
|
|
|
|
return *m.Value
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2013-10-10 11:53:39 -07:00
|
|
|
// A set of label/value pairs.
|
2013-05-08 12:15:47 -07:00
|
|
|
type LabelPairs struct {
|
|
|
|
Label []*LabelPair `protobuf:"bytes,1,rep,name=label" json:"label,omitempty"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LabelPairs) Reset() { *m = LabelPairs{} }
|
|
|
|
func (m *LabelPairs) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*LabelPairs) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (m *LabelPairs) GetLabel() []*LabelPair {
|
|
|
|
if m != nil {
|
|
|
|
return m.Label
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-10-10 11:53:39 -07:00
|
|
|
// The global Prometheus configuration section.
|
2013-05-08 12:15:47 -07:00
|
|
|
type GlobalConfig struct {
|
2013-10-10 11:53:39 -07:00
|
|
|
// How frequently to scrape targets by default. Must be a valid Prometheus
|
|
|
|
// duration string in the form "[0-9]+[smhdwy]".
|
|
|
|
ScrapeInterval *string `protobuf:"bytes,1,opt,name=scrape_interval,def=1m" json:"scrape_interval,omitempty"`
|
|
|
|
// How frequently to evaluate rules by default. Must be a valid Prometheus
|
|
|
|
// duration string in the form "[0-9]+[smhdwy]".
|
|
|
|
EvaluationInterval *string `protobuf:"bytes,2,opt,name=evaluation_interval,def=1m" json:"evaluation_interval,omitempty"`
|
|
|
|
// The labels to add to any timeseries that this Prometheus instance scrapes.
|
|
|
|
Labels *LabelPairs `protobuf:"bytes,3,opt,name=labels" json:"labels,omitempty"`
|
|
|
|
// The list of file names of rule files to load.
|
|
|
|
RuleFile []string `protobuf:"bytes,4,rep,name=rule_file" json:"rule_file,omitempty"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
2013-05-08 12:15:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *GlobalConfig) Reset() { *m = GlobalConfig{} }
|
|
|
|
func (m *GlobalConfig) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*GlobalConfig) ProtoMessage() {}
|
|
|
|
|
|
|
|
const Default_GlobalConfig_ScrapeInterval string = "1m"
|
|
|
|
const Default_GlobalConfig_EvaluationInterval string = "1m"
|
|
|
|
|
|
|
|
func (m *GlobalConfig) GetScrapeInterval() string {
|
|
|
|
if m != nil && m.ScrapeInterval != nil {
|
|
|
|
return *m.ScrapeInterval
|
|
|
|
}
|
|
|
|
return Default_GlobalConfig_ScrapeInterval
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *GlobalConfig) GetEvaluationInterval() string {
|
|
|
|
if m != nil && m.EvaluationInterval != nil {
|
|
|
|
return *m.EvaluationInterval
|
|
|
|
}
|
|
|
|
return Default_GlobalConfig_EvaluationInterval
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *GlobalConfig) GetLabels() *LabelPairs {
|
|
|
|
if m != nil {
|
|
|
|
return m.Labels
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *GlobalConfig) GetRuleFile() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.RuleFile
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-10-10 11:53:39 -07:00
|
|
|
// A labeled group of targets to scrape for a job.
|
2013-05-08 12:15:47 -07:00
|
|
|
type TargetGroup struct {
|
2013-10-10 11:53:39 -07:00
|
|
|
// The list of endpoints to scrape via HTTP.
|
|
|
|
Target []string `protobuf:"bytes,1,rep,name=target" json:"target,omitempty"`
|
|
|
|
// The labels to add to any timeseries scraped for this target group.
|
2013-05-08 12:15:47 -07:00
|
|
|
Labels *LabelPairs `protobuf:"bytes,2,opt,name=labels" json:"labels,omitempty"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *TargetGroup) Reset() { *m = TargetGroup{} }
|
|
|
|
func (m *TargetGroup) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*TargetGroup) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (m *TargetGroup) GetTarget() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Target
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *TargetGroup) GetLabels() *LabelPairs {
|
|
|
|
if m != nil {
|
|
|
|
return m.Labels
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-04-25 03:59:05 -07:00
|
|
|
// The configuration for DNS based service discovery.
|
|
|
|
type DNSConfig struct {
|
|
|
|
// The list of DNS-SD service names pointing to SRV records
|
|
|
|
// containing endpoint information.
|
|
|
|
Name []string `protobuf:"bytes,1,rep,name=name" json:"name,omitempty"`
|
|
|
|
// Discovery refresh period when using DNS-SD to discover targets. Must be a
|
|
|
|
// valid Prometheus duration string in the form "[0-9]+[smhdwy]".
|
|
|
|
RefreshInterval *string `protobuf:"bytes,2,opt,name=refresh_interval,def=30s" json:"refresh_interval,omitempty"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *DNSConfig) Reset() { *m = DNSConfig{} }
|
|
|
|
func (m *DNSConfig) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*DNSConfig) ProtoMessage() {}
|
|
|
|
|
|
|
|
const Default_DNSConfig_RefreshInterval string = "30s"
|
|
|
|
|
|
|
|
func (m *DNSConfig) GetName() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Name
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *DNSConfig) GetRefreshInterval() string {
|
|
|
|
if m != nil && m.RefreshInterval != nil {
|
|
|
|
return *m.RefreshInterval
|
|
|
|
}
|
|
|
|
return Default_DNSConfig_RefreshInterval
|
|
|
|
}
|
|
|
|
|
2013-10-10 11:53:39 -07:00
|
|
|
// The configuration for a Prometheus job to scrape.
|
|
|
|
//
|
2015-04-25 03:59:05 -07:00
|
|
|
// The next field no. is 10.
|
|
|
|
type ScrapeConfig struct {
|
2013-10-10 11:53:39 -07:00
|
|
|
// The job name. Must adhere to the regex "[a-zA-Z_][a-zA-Z0-9_-]*".
|
2015-04-25 03:59:05 -07:00
|
|
|
JobName *string `protobuf:"bytes,1,req,name=job_name" json:"job_name,omitempty"`
|
2013-10-10 11:53:39 -07:00
|
|
|
// How frequently to scrape targets from this job. Overrides the global
|
|
|
|
// default. Must be a valid Prometheus duration string in the form
|
|
|
|
// "[0-9]+[smhdwy]".
|
|
|
|
ScrapeInterval *string `protobuf:"bytes,2,opt,name=scrape_interval" json:"scrape_interval,omitempty"`
|
|
|
|
// Per-target timeout when scraping this job. Must be a valid Prometheus
|
|
|
|
// duration string in the form "[0-9]+[smhdwy]".
|
|
|
|
ScrapeTimeout *string `protobuf:"bytes,7,opt,name=scrape_timeout,def=10s" json:"scrape_timeout,omitempty"`
|
2015-04-25 03:59:05 -07:00
|
|
|
// List of DNS service discovery configurations.
|
|
|
|
DnsConfig []*DNSConfig `protobuf:"bytes,9,rep,name=dns_config" json:"dns_config,omitempty"`
|
|
|
|
// List of labeled target groups for this job.
|
2013-10-10 11:53:39 -07:00
|
|
|
TargetGroup []*TargetGroup `protobuf:"bytes,5,rep,name=target_group" json:"target_group,omitempty"`
|
2015-04-20 03:24:25 -07:00
|
|
|
// The HTTP resource path on which to fetch metrics from targets.
|
|
|
|
MetricsPath *string `protobuf:"bytes,6,opt,name=metrics_path,def=/metrics" json:"metrics_path,omitempty"`
|
|
|
|
// The URL scheme with which to fetch metrics from targets.
|
|
|
|
Scheme *string `protobuf:"bytes,8,opt,name=scheme,def=http" json:"scheme,omitempty"`
|
2013-10-10 11:53:39 -07:00
|
|
|
XXX_unrecognized []byte `json:"-"`
|
2013-05-08 12:15:47 -07:00
|
|
|
}
|
|
|
|
|
2015-04-25 03:59:05 -07:00
|
|
|
func (m *ScrapeConfig) Reset() { *m = ScrapeConfig{} }
|
|
|
|
func (m *ScrapeConfig) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ScrapeConfig) ProtoMessage() {}
|
2013-05-08 12:15:47 -07:00
|
|
|
|
2015-04-25 03:59:05 -07:00
|
|
|
const Default_ScrapeConfig_ScrapeTimeout string = "10s"
|
|
|
|
const Default_ScrapeConfig_MetricsPath string = "/metrics"
|
|
|
|
const Default_ScrapeConfig_Scheme string = "http"
|
2013-06-11 13:59:27 -07:00
|
|
|
|
2015-04-25 03:59:05 -07:00
|
|
|
func (m *ScrapeConfig) GetJobName() string {
|
|
|
|
if m != nil && m.JobName != nil {
|
|
|
|
return *m.JobName
|
2013-05-08 12:15:47 -07:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2015-04-25 03:59:05 -07:00
|
|
|
func (m *ScrapeConfig) GetScrapeInterval() string {
|
2013-05-08 12:15:47 -07:00
|
|
|
if m != nil && m.ScrapeInterval != nil {
|
|
|
|
return *m.ScrapeInterval
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2015-04-25 03:59:05 -07:00
|
|
|
func (m *ScrapeConfig) GetScrapeTimeout() string {
|
2013-08-16 09:17:48 -07:00
|
|
|
if m != nil && m.ScrapeTimeout != nil {
|
|
|
|
return *m.ScrapeTimeout
|
|
|
|
}
|
2015-04-25 03:59:05 -07:00
|
|
|
return Default_ScrapeConfig_ScrapeTimeout
|
2013-08-16 09:17:48 -07:00
|
|
|
}
|
|
|
|
|
2015-04-25 03:59:05 -07:00
|
|
|
func (m *ScrapeConfig) GetDnsConfig() []*DNSConfig {
|
|
|
|
if m != nil {
|
|
|
|
return m.DnsConfig
|
2013-06-11 13:59:27 -07:00
|
|
|
}
|
2015-04-25 03:59:05 -07:00
|
|
|
return nil
|
2013-06-11 13:59:27 -07:00
|
|
|
}
|
|
|
|
|
2015-04-25 03:59:05 -07:00
|
|
|
func (m *ScrapeConfig) GetTargetGroup() []*TargetGroup {
|
2013-05-08 12:15:47 -07:00
|
|
|
if m != nil {
|
|
|
|
return m.TargetGroup
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-04-25 03:59:05 -07:00
|
|
|
func (m *ScrapeConfig) GetMetricsPath() string {
|
2013-06-11 13:59:27 -07:00
|
|
|
if m != nil && m.MetricsPath != nil {
|
|
|
|
return *m.MetricsPath
|
|
|
|
}
|
2015-04-25 03:59:05 -07:00
|
|
|
return Default_ScrapeConfig_MetricsPath
|
2013-06-11 13:59:27 -07:00
|
|
|
}
|
|
|
|
|
2015-04-25 03:59:05 -07:00
|
|
|
func (m *ScrapeConfig) GetScheme() string {
|
2015-04-20 03:24:25 -07:00
|
|
|
if m != nil && m.Scheme != nil {
|
|
|
|
return *m.Scheme
|
|
|
|
}
|
2015-04-25 03:59:05 -07:00
|
|
|
return Default_ScrapeConfig_Scheme
|
2015-04-20 03:24:25 -07:00
|
|
|
}
|
|
|
|
|
2013-10-10 11:53:39 -07:00
|
|
|
// The top-level Prometheus configuration.
|
2013-05-08 12:15:47 -07:00
|
|
|
type PrometheusConfig struct {
|
2013-10-10 11:53:39 -07:00
|
|
|
// Global Prometheus configuration options. If omitted, an empty global
|
|
|
|
// configuration with default values (see GlobalConfig definition) will be
|
|
|
|
// created.
|
|
|
|
Global *GlobalConfig `protobuf:"bytes,1,opt,name=global" json:"global,omitempty"`
|
2015-04-25 03:59:05 -07:00
|
|
|
// The list of scrape configs.
|
|
|
|
ScrapeConfig []*ScrapeConfig `protobuf:"bytes,3,rep,name=scrape_config" json:"scrape_config,omitempty"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
2013-05-08 12:15:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PrometheusConfig) Reset() { *m = PrometheusConfig{} }
|
|
|
|
func (m *PrometheusConfig) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*PrometheusConfig) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (m *PrometheusConfig) GetGlobal() *GlobalConfig {
|
|
|
|
if m != nil {
|
|
|
|
return m.Global
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-04-25 03:59:05 -07:00
|
|
|
func (m *PrometheusConfig) GetScrapeConfig() []*ScrapeConfig {
|
2013-05-08 12:15:47 -07:00
|
|
|
if m != nil {
|
2015-04-25 03:59:05 -07:00
|
|
|
return m.ScrapeConfig
|
2013-05-08 12:15:47 -07:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
}
|