mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Comments and Typo Fixes
This commit is contained in:
parent
6aee1551e1
commit
6634984a38
|
@ -59,7 +59,7 @@ var (
|
||||||
Namespace: namespace,
|
Namespace: namespace,
|
||||||
Subsystem: subsystem,
|
Subsystem: subsystem,
|
||||||
Name: "query_duration_seconds",
|
Name: "query_duration_seconds",
|
||||||
Help: "Query timmings",
|
Help: "Query timings",
|
||||||
ConstLabels: prometheus.Labels{"slice": "prepare_time"},
|
ConstLabels: prometheus.Labels{"slice": "prepare_time"},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
@ -68,7 +68,7 @@ var (
|
||||||
Namespace: namespace,
|
Namespace: namespace,
|
||||||
Subsystem: subsystem,
|
Subsystem: subsystem,
|
||||||
Name: "query_duration_seconds",
|
Name: "query_duration_seconds",
|
||||||
Help: "Query timmings",
|
Help: "Query timings",
|
||||||
ConstLabels: prometheus.Labels{"slice": "inner_eval"},
|
ConstLabels: prometheus.Labels{"slice": "inner_eval"},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
@ -77,7 +77,7 @@ var (
|
||||||
Namespace: namespace,
|
Namespace: namespace,
|
||||||
Subsystem: subsystem,
|
Subsystem: subsystem,
|
||||||
Name: "query_duration_seconds",
|
Name: "query_duration_seconds",
|
||||||
Help: "Query timmings",
|
Help: "Query timings",
|
||||||
ConstLabels: prometheus.Labels{"slice": "result_append"},
|
ConstLabels: prometheus.Labels{"slice": "result_append"},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
@ -86,7 +86,7 @@ var (
|
||||||
Namespace: namespace,
|
Namespace: namespace,
|
||||||
Subsystem: subsystem,
|
Subsystem: subsystem,
|
||||||
Name: "query_duration_seconds",
|
Name: "query_duration_seconds",
|
||||||
Help: "Query timmings",
|
Help: "Query timings",
|
||||||
ConstLabels: prometheus.Labels{"slice": "result_sort"},
|
ConstLabels: prometheus.Labels{"slice": "result_sort"},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
|
@ -345,6 +345,7 @@ func (api *API) dropSeries(r *http.Request) (interface{}, *apiError) {
|
||||||
return res, nil
|
return res, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Target has the information for 1 target.
|
||||||
type Target struct {
|
type Target struct {
|
||||||
// Labels before any processing.
|
// Labels before any processing.
|
||||||
DiscoveredLabels model.LabelSet `json:"discoveredLabels"`
|
DiscoveredLabels model.LabelSet `json:"discoveredLabels"`
|
||||||
|
@ -358,6 +359,7 @@ type Target struct {
|
||||||
Health retrieval.TargetHealth `json:"health"`
|
Health retrieval.TargetHealth `json:"health"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TargetDiscovery has all the active targets.
|
||||||
type TargetDiscovery struct {
|
type TargetDiscovery struct {
|
||||||
ActiveTargets []*Target `json:"activeTargets"`
|
ActiveTargets []*Target `json:"activeTargets"`
|
||||||
}
|
}
|
||||||
|
@ -386,10 +388,12 @@ func (api *API) targets(r *http.Request) (interface{}, *apiError) {
|
||||||
return res, nil
|
return res, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AlertmanagerDiscovery has all the active alert-managers
|
||||||
type AlertmanagerDiscovery struct {
|
type AlertmanagerDiscovery struct {
|
||||||
ActiveAlertmanagers []*AlertmanagerTarget `json:"activeAlertmanagers"`
|
ActiveAlertmanagers []*AlertmanagerTarget `json:"activeAlertmanagers"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AlertmanagerTarget has info on 1 AM
|
||||||
type AlertmanagerTarget struct {
|
type AlertmanagerTarget struct {
|
||||||
URL string `json:"url"`
|
URL string `json:"url"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue