Update config.pb.go (now includes comments from protobuf definition file).
This commit is contained in:
parent
cba2f4b261
commit
c03712dc58
|
@ -13,8 +13,11 @@ var _ = proto.Marshal
|
||||||
var _ = &json.SyntaxError{}
|
var _ = &json.SyntaxError{}
|
||||||
var _ = math.Inf
|
var _ = math.Inf
|
||||||
|
|
||||||
|
// A label/value pair suitable for attaching to timeseries.
|
||||||
type LabelPair struct {
|
type LabelPair struct {
|
||||||
|
// 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"`
|
Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
||||||
|
// The value of the label. May contain any characters.
|
||||||
Value *string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
|
Value *string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
|
||||||
XXX_unrecognized []byte `json:"-"`
|
XXX_unrecognized []byte `json:"-"`
|
||||||
}
|
}
|
||||||
|
@ -37,6 +40,7 @@ func (m *LabelPair) GetValue() string {
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// A set of label/value pairs.
|
||||||
type LabelPairs struct {
|
type LabelPairs struct {
|
||||||
Label []*LabelPair `protobuf:"bytes,1,rep,name=label" json:"label,omitempty"`
|
Label []*LabelPair `protobuf:"bytes,1,rep,name=label" json:"label,omitempty"`
|
||||||
XXX_unrecognized []byte `json:"-"`
|
XXX_unrecognized []byte `json:"-"`
|
||||||
|
@ -53,10 +57,17 @@ func (m *LabelPairs) GetLabel() []*LabelPair {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// The global Prometheus configuration section.
|
||||||
type GlobalConfig struct {
|
type GlobalConfig struct {
|
||||||
|
// 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"`
|
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"`
|
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"`
|
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"`
|
RuleFile []string `protobuf:"bytes,4,rep,name=rule_file" json:"rule_file,omitempty"`
|
||||||
XXX_unrecognized []byte `json:"-"`
|
XXX_unrecognized []byte `json:"-"`
|
||||||
}
|
}
|
||||||
|
@ -96,8 +107,11 @@ func (m *GlobalConfig) GetRuleFile() []string {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// A labeled group of targets to scrape for a job.
|
||||||
type TargetGroup struct {
|
type TargetGroup struct {
|
||||||
|
// The list of endpoints to scrape via HTTP.
|
||||||
Target []string `protobuf:"bytes,1,rep,name=target" json:"target,omitempty"`
|
Target []string `protobuf:"bytes,1,rep,name=target" json:"target,omitempty"`
|
||||||
|
// The labels to add to any timeseries scraped for this target group.
|
||||||
Labels *LabelPairs `protobuf:"bytes,2,opt,name=labels" json:"labels,omitempty"`
|
Labels *LabelPairs `protobuf:"bytes,2,opt,name=labels" json:"labels,omitempty"`
|
||||||
XXX_unrecognized []byte `json:"-"`
|
XXX_unrecognized []byte `json:"-"`
|
||||||
}
|
}
|
||||||
|
@ -120,12 +134,24 @@ func (m *TargetGroup) GetLabels() *LabelPairs {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// The configuration for a Prometheus job to scrape.
|
||||||
type JobConfig struct {
|
type JobConfig struct {
|
||||||
|
// The job name. Must adhere to the regex "[a-zA-Z_][a-zA-Z0-9_-]*".
|
||||||
Name *string `protobuf:"bytes,1,req,name=name" json:"name,omitempty"`
|
Name *string `protobuf:"bytes,1,req,name=name" json:"name,omitempty"`
|
||||||
|
// How frequently to scrape targets from this job. Overrides the global
|
||||||
|
// default.
|
||||||
ScrapeInterval *string `protobuf:"bytes,2,opt,name=scrape_interval" json:"scrape_interval,omitempty"`
|
ScrapeInterval *string `protobuf:"bytes,2,opt,name=scrape_interval" json:"scrape_interval,omitempty"`
|
||||||
|
// The DNS-SD service name pointing to SRV records containing endpoint
|
||||||
|
// information for a job. When this field is provided, no target_group
|
||||||
|
// elements may be set.
|
||||||
SdName *string `protobuf:"bytes,3,opt,name=sd_name" json:"sd_name,omitempty"`
|
SdName *string `protobuf:"bytes,3,opt,name=sd_name" json:"sd_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]".
|
||||||
SdRefreshInterval *string `protobuf:"bytes,4,opt,name=sd_refresh_interval,def=30s" json:"sd_refresh_interval,omitempty"`
|
SdRefreshInterval *string `protobuf:"bytes,4,opt,name=sd_refresh_interval,def=30s" json:"sd_refresh_interval,omitempty"`
|
||||||
|
// List of labeled target groups for this job. Only legal when DNS-SD isn't
|
||||||
|
// used for a job.
|
||||||
TargetGroup []*TargetGroup `protobuf:"bytes,5,rep,name=target_group" json:"target_group,omitempty"`
|
TargetGroup []*TargetGroup `protobuf:"bytes,5,rep,name=target_group" json:"target_group,omitempty"`
|
||||||
|
// The HTTP resource path to fetch metrics from on targets.
|
||||||
MetricsPath *string `protobuf:"bytes,6,opt,name=metrics_path,def=/metrics.json" json:"metrics_path,omitempty"`
|
MetricsPath *string `protobuf:"bytes,6,opt,name=metrics_path,def=/metrics.json" json:"metrics_path,omitempty"`
|
||||||
XXX_unrecognized []byte `json:"-"`
|
XXX_unrecognized []byte `json:"-"`
|
||||||
}
|
}
|
||||||
|
@ -179,8 +205,13 @@ func (m *JobConfig) GetMetricsPath() string {
|
||||||
return Default_JobConfig_MetricsPath
|
return Default_JobConfig_MetricsPath
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// The top-level Prometheus configuration.
|
||||||
type PrometheusConfig struct {
|
type PrometheusConfig struct {
|
||||||
|
// 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"`
|
Global *GlobalConfig `protobuf:"bytes,1,opt,name=global" json:"global,omitempty"`
|
||||||
|
// The list of jobs to scrape.
|
||||||
Job []*JobConfig `protobuf:"bytes,2,rep,name=job" json:"job,omitempty"`
|
Job []*JobConfig `protobuf:"bytes,2,rep,name=job" json:"job,omitempty"`
|
||||||
XXX_unrecognized []byte `json:"-"`
|
XXX_unrecognized []byte `json:"-"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue