mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Merge pull request #1051 from prometheus/globallabels
Change global label handling
This commit is contained in:
commit
d839980fcb
|
@ -70,6 +70,8 @@ func Main() int {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var reloadables []Reloadable
|
||||||
|
|
||||||
var (
|
var (
|
||||||
memStorage = local.NewMemorySeriesStorage(&cfg.storage)
|
memStorage = local.NewMemorySeriesStorage(&cfg.storage)
|
||||||
remoteStorage = remote.New(&cfg.remote)
|
remoteStorage = remote.New(&cfg.remote)
|
||||||
|
@ -77,6 +79,7 @@ func Main() int {
|
||||||
)
|
)
|
||||||
if remoteStorage != nil {
|
if remoteStorage != nil {
|
||||||
sampleAppender = append(sampleAppender, remoteStorage)
|
sampleAppender = append(sampleAppender, remoteStorage)
|
||||||
|
reloadables = append(reloadables, remoteStorage)
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -106,7 +109,9 @@ func Main() int {
|
||||||
|
|
||||||
webHandler := web.New(memStorage, queryEngine, ruleManager, status, &cfg.web)
|
webHandler := web.New(memStorage, queryEngine, ruleManager, status, &cfg.web)
|
||||||
|
|
||||||
if !reloadConfig(cfg.configFile, status, targetManager, ruleManager) {
|
reloadables = append(reloadables, status, targetManager, ruleManager, webHandler, notificationHandler)
|
||||||
|
|
||||||
|
if !reloadConfig(cfg.configFile, reloadables...) {
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -123,7 +128,7 @@ func Main() int {
|
||||||
case <-hup:
|
case <-hup:
|
||||||
case <-webHandler.Reload():
|
case <-webHandler.Reload():
|
||||||
}
|
}
|
||||||
reloadConfig(cfg.configFile, status, targetManager, ruleManager)
|
reloadConfig(cfg.configFile, reloadables...)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
|
|
@ -20,12 +20,14 @@ import (
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
"strings"
|
"strings"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/prometheus/client_golang/prometheus"
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
"github.com/prometheus/common/model"
|
"github.com/prometheus/common/model"
|
||||||
"github.com/prometheus/log"
|
"github.com/prometheus/log"
|
||||||
|
|
||||||
|
"github.com/prometheus/prometheus/config"
|
||||||
"github.com/prometheus/prometheus/util/httputil"
|
"github.com/prometheus/prometheus/util/httputil"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -86,7 +88,9 @@ type NotificationHandler struct {
|
||||||
notificationsQueueLength prometheus.Gauge
|
notificationsQueueLength prometheus.Gauge
|
||||||
notificationsQueueCapacity prometheus.Metric
|
notificationsQueueCapacity prometheus.Metric
|
||||||
|
|
||||||
stopped chan struct{}
|
globalLabels model.LabelSet
|
||||||
|
mtx sync.RWMutex
|
||||||
|
stopped chan struct{}
|
||||||
}
|
}
|
||||||
|
|
||||||
// NotificationHandlerOptions are the configurable parameters of a NotificationHandler.
|
// NotificationHandlerOptions are the configurable parameters of a NotificationHandler.
|
||||||
|
@ -141,10 +145,28 @@ func NewNotificationHandler(o *NotificationHandlerOptions) *NotificationHandler
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ApplyConfig updates the status state as the new config requires.
|
||||||
|
// Returns true on success.
|
||||||
|
func (n *NotificationHandler) ApplyConfig(conf *config.Config) bool {
|
||||||
|
n.mtx.Lock()
|
||||||
|
defer n.mtx.Unlock()
|
||||||
|
|
||||||
|
n.globalLabels = conf.GlobalConfig.Labels
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
// Send a list of notifications to the configured alert manager.
|
// Send a list of notifications to the configured alert manager.
|
||||||
func (n *NotificationHandler) sendNotifications(reqs NotificationReqs) error {
|
func (n *NotificationHandler) sendNotifications(reqs NotificationReqs) error {
|
||||||
|
n.mtx.RLock()
|
||||||
|
defer n.mtx.RUnlock()
|
||||||
|
|
||||||
alerts := make([]map[string]interface{}, 0, len(reqs))
|
alerts := make([]map[string]interface{}, 0, len(reqs))
|
||||||
for _, req := range reqs {
|
for _, req := range reqs {
|
||||||
|
for ln, lv := range n.globalLabels {
|
||||||
|
if _, ok := req.Labels[ln]; !ok {
|
||||||
|
req.Labels[ln] = lv
|
||||||
|
}
|
||||||
|
}
|
||||||
alerts = append(alerts, map[string]interface{}{
|
alerts = append(alerts, map[string]interface{}{
|
||||||
"summary": req.Summary,
|
"summary": req.Summary,
|
||||||
"description": req.Description,
|
"description": req.Description,
|
||||||
|
|
|
@ -51,7 +51,6 @@ type TargetProvider interface {
|
||||||
// target providers.
|
// target providers.
|
||||||
type TargetManager struct {
|
type TargetManager struct {
|
||||||
mtx sync.RWMutex
|
mtx sync.RWMutex
|
||||||
globalLabels model.LabelSet
|
|
||||||
sampleAppender storage.SampleAppender
|
sampleAppender storage.SampleAppender
|
||||||
running bool
|
running bool
|
||||||
done chan struct{}
|
done chan struct{}
|
||||||
|
@ -356,7 +355,6 @@ func (tm *TargetManager) ApplyConfig(cfg *config.Config) bool {
|
||||||
tm.mtx.Lock()
|
tm.mtx.Lock()
|
||||||
defer tm.mtx.Unlock()
|
defer tm.mtx.Unlock()
|
||||||
|
|
||||||
tm.globalLabels = cfg.GlobalConfig.Labels
|
|
||||||
tm.providers = providers
|
tm.providers = providers
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
@ -481,7 +479,6 @@ func (tm *TargetManager) targetsFromGroup(tg *config.TargetGroup, cfg *config.Sc
|
||||||
model.MetricsPathLabel: model.LabelValue(cfg.MetricsPath),
|
model.MetricsPathLabel: model.LabelValue(cfg.MetricsPath),
|
||||||
model.JobLabel: model.LabelValue(cfg.JobName),
|
model.JobLabel: model.LabelValue(cfg.JobName),
|
||||||
},
|
},
|
||||||
tm.globalLabels,
|
|
||||||
}
|
}
|
||||||
for _, lset := range labelsets {
|
for _, lset := range labelsets {
|
||||||
for ln, lv := range lset {
|
for ln, lv := range lset {
|
||||||
|
|
|
@ -14,18 +14,32 @@
|
||||||
package remote
|
package remote
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/prometheus/client_golang/prometheus"
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
"github.com/prometheus/common/model"
|
"github.com/prometheus/common/model"
|
||||||
|
|
||||||
|
"github.com/prometheus/prometheus/config"
|
||||||
"github.com/prometheus/prometheus/storage/remote/influxdb"
|
"github.com/prometheus/prometheus/storage/remote/influxdb"
|
||||||
"github.com/prometheus/prometheus/storage/remote/opentsdb"
|
"github.com/prometheus/prometheus/storage/remote/opentsdb"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Storage collects multiple remote storage queues.
|
// Storage collects multiple remote storage queues.
|
||||||
type Storage struct {
|
type Storage struct {
|
||||||
queues []*StorageQueueManager
|
queues []*StorageQueueManager
|
||||||
|
globalLabels model.LabelSet
|
||||||
|
mtx sync.RWMutex
|
||||||
|
}
|
||||||
|
|
||||||
|
// ApplyConfig updates the status state as the new config requires.
|
||||||
|
// Returns true on success.
|
||||||
|
func (s *Storage) ApplyConfig(conf *config.Config) bool {
|
||||||
|
s.mtx.Lock()
|
||||||
|
defer s.mtx.Unlock()
|
||||||
|
|
||||||
|
s.globalLabels = conf.GlobalConfig.Labels
|
||||||
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
// New returns a new remote Storage.
|
// New returns a new remote Storage.
|
||||||
|
@ -70,8 +84,21 @@ func (s *Storage) Stop() {
|
||||||
|
|
||||||
// Append implements storage.SampleAppender.
|
// Append implements storage.SampleAppender.
|
||||||
func (s *Storage) Append(smpl *model.Sample) {
|
func (s *Storage) Append(smpl *model.Sample) {
|
||||||
|
s.mtx.RLock()
|
||||||
|
|
||||||
|
var snew model.Sample
|
||||||
|
snew = *smpl
|
||||||
|
snew.Metric = smpl.Metric.Clone()
|
||||||
|
|
||||||
|
for ln, lv := range s.globalLabels {
|
||||||
|
if _, ok := smpl.Metric[ln]; !ok {
|
||||||
|
snew.Metric[ln] = lv
|
||||||
|
}
|
||||||
|
}
|
||||||
|
s.mtx.RUnlock()
|
||||||
|
|
||||||
for _, q := range s.queues {
|
for _, q := range s.queues {
|
||||||
q.Append(smpl)
|
q.Append(&snew)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,20 +19,18 @@ import (
|
||||||
"github.com/golang/protobuf/proto"
|
"github.com/golang/protobuf/proto"
|
||||||
|
|
||||||
"github.com/prometheus/prometheus/promql"
|
"github.com/prometheus/prometheus/promql"
|
||||||
"github.com/prometheus/prometheus/storage/local"
|
|
||||||
"github.com/prometheus/prometheus/storage/metric"
|
"github.com/prometheus/prometheus/storage/metric"
|
||||||
|
|
||||||
dto "github.com/prometheus/client_model/go"
|
|
||||||
"github.com/prometheus/common/expfmt"
|
"github.com/prometheus/common/expfmt"
|
||||||
"github.com/prometheus/common/model"
|
"github.com/prometheus/common/model"
|
||||||
|
|
||||||
|
dto "github.com/prometheus/client_model/go"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Federation implements a web handler to serve scrape federation requests.
|
func (h *Handler) federation(w http.ResponseWriter, req *http.Request) {
|
||||||
type Federation struct {
|
h.mtx.RLock()
|
||||||
Storage local.Storage
|
defer h.mtx.RUnlock()
|
||||||
}
|
|
||||||
|
|
||||||
func (fed *Federation) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
|
||||||
req.ParseForm()
|
req.ParseForm()
|
||||||
|
|
||||||
metrics := map[model.Fingerprint]metric.Metric{}
|
metrics := map[model.Fingerprint]metric.Metric{}
|
||||||
|
@ -43,7 +41,7 @@ func (fed *Federation) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
||||||
http.Error(w, err.Error(), http.StatusBadRequest)
|
http.Error(w, err.Error(), http.StatusBadRequest)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
for fp, met := range fed.Storage.MetricsForLabelMatchers(matchers...) {
|
for fp, met := range h.storage.MetricsForLabelMatchers(matchers...) {
|
||||||
metrics[fp] = met
|
metrics[fp] = met
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -63,7 +61,9 @@ func (fed *Federation) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
for fp, met := range metrics {
|
for fp, met := range metrics {
|
||||||
sp := fed.Storage.LastSamplePairForFingerprint(fp)
|
globalUsed := map[model.LabelName]struct{}{}
|
||||||
|
|
||||||
|
sp := h.storage.LastSamplePairForFingerprint(fp)
|
||||||
if sp == nil {
|
if sp == nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
@ -80,14 +80,27 @@ func (fed *Federation) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
||||||
Name: proto.String(string(ln)),
|
Name: proto.String(string(ln)),
|
||||||
Value: proto.String(string(lv)),
|
Value: proto.String(string(lv)),
|
||||||
})
|
})
|
||||||
|
if _, ok := h.globalLabels[ln]; ok {
|
||||||
|
globalUsed[ln] = struct{}{}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Attach global labels if they do not exist yet.
|
||||||
|
for ln, lv := range h.globalLabels {
|
||||||
|
if _, ok := globalUsed[ln]; !ok {
|
||||||
|
protMetric.Label = append(protMetric.Label, &dto.LabelPair{
|
||||||
|
Name: proto.String(string(ln)),
|
||||||
|
Value: proto.String(string(lv)),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
protMetric.TimestampMs = (*int64)(&sp.Timestamp)
|
protMetric.TimestampMs = (*int64)(&sp.Timestamp)
|
||||||
protMetric.Untyped.Value = (*float64)(&sp.Value)
|
protMetric.Untyped.Value = (*float64)(&sp.Value)
|
||||||
|
|
||||||
if err := enc.Encode(protMetricFam); err != nil {
|
if err := enc.Encode(protMetricFam); err != nil {
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
33
web/web.go
33
web/web.go
|
@ -54,10 +54,10 @@ var localhostRepresentations = []string{"127.0.0.1", "localhost"}
|
||||||
type Handler struct {
|
type Handler struct {
|
||||||
ruleManager *rules.Manager
|
ruleManager *rules.Manager
|
||||||
queryEngine *promql.Engine
|
queryEngine *promql.Engine
|
||||||
|
storage local.Storage
|
||||||
|
|
||||||
apiV1 *v1.API
|
apiV1 *v1.API
|
||||||
apiLegacy *legacy.API
|
apiLegacy *legacy.API
|
||||||
federation *Federation
|
|
||||||
|
|
||||||
router *route.Router
|
router *route.Router
|
||||||
listenErrCh chan error
|
listenErrCh chan error
|
||||||
|
@ -66,7 +66,19 @@ type Handler struct {
|
||||||
options *Options
|
options *Options
|
||||||
statusInfo *PrometheusStatus
|
statusInfo *PrometheusStatus
|
||||||
|
|
||||||
muAlerts sync.Mutex
|
globalLabels model.LabelSet
|
||||||
|
mtx sync.RWMutex
|
||||||
|
}
|
||||||
|
|
||||||
|
// ApplyConfig updates the status state as the new config requires.
|
||||||
|
// Returns true on success.
|
||||||
|
func (h *Handler) ApplyConfig(conf *config.Config) bool {
|
||||||
|
h.mtx.Lock()
|
||||||
|
defer h.mtx.Unlock()
|
||||||
|
|
||||||
|
h.globalLabels = conf.GlobalConfig.Labels
|
||||||
|
|
||||||
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
// PrometheusStatus contains various information about the status
|
// PrometheusStatus contains various information about the status
|
||||||
|
@ -89,8 +101,10 @@ type PrometheusStatus struct {
|
||||||
// Returns true on success.
|
// Returns true on success.
|
||||||
func (s *PrometheusStatus) ApplyConfig(conf *config.Config) bool {
|
func (s *PrometheusStatus) ApplyConfig(conf *config.Config) bool {
|
||||||
s.mu.Lock()
|
s.mu.Lock()
|
||||||
|
defer s.mu.Unlock()
|
||||||
|
|
||||||
s.Config = conf.String()
|
s.Config = conf.String()
|
||||||
s.mu.Unlock()
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -120,6 +134,7 @@ func New(st local.Storage, qe *promql.Engine, rm *rules.Manager, status *Prometh
|
||||||
|
|
||||||
ruleManager: rm,
|
ruleManager: rm,
|
||||||
queryEngine: qe,
|
queryEngine: qe,
|
||||||
|
storage: st,
|
||||||
|
|
||||||
apiV1: &v1.API{
|
apiV1: &v1.API{
|
||||||
QueryEngine: qe,
|
QueryEngine: qe,
|
||||||
|
@ -130,9 +145,6 @@ func New(st local.Storage, qe *promql.Engine, rm *rules.Manager, status *Prometh
|
||||||
Storage: st,
|
Storage: st,
|
||||||
Now: model.Now,
|
Now: model.Now,
|
||||||
},
|
},
|
||||||
federation: &Federation{
|
|
||||||
Storage: st,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if o.ExternalURL.Path != "" {
|
if o.ExternalURL.Path != "" {
|
||||||
|
@ -153,7 +165,7 @@ func New(st local.Storage, qe *promql.Engine, rm *rules.Manager, status *Prometh
|
||||||
|
|
||||||
router.Get("/heap", instrf("heap", dumpHeap))
|
router.Get("/heap", instrf("heap", dumpHeap))
|
||||||
|
|
||||||
router.Get("/federate", instrh("federate", h.federation))
|
router.Get("/federate", instrf("federate", h.federation))
|
||||||
router.Get(o.MetricsPath, prometheus.Handler().ServeHTTP)
|
router.Get(o.MetricsPath, prometheus.Handler().ServeHTTP)
|
||||||
|
|
||||||
h.apiLegacy.Register(router.WithPrefix("/api"))
|
h.apiLegacy.Register(router.WithPrefix("/api"))
|
||||||
|
@ -205,9 +217,6 @@ func (h *Handler) Run() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *Handler) alerts(w http.ResponseWriter, r *http.Request) {
|
func (h *Handler) alerts(w http.ResponseWriter, r *http.Request) {
|
||||||
h.muAlerts.Lock()
|
|
||||||
defer h.muAlerts.Unlock()
|
|
||||||
|
|
||||||
alerts := h.ruleManager.AlertingRules()
|
alerts := h.ruleManager.AlertingRules()
|
||||||
alertsSorter := byAlertStateSorter{alerts: alerts}
|
alertsSorter := byAlertStateSorter{alerts: alerts}
|
||||||
sort.Sort(alertsSorter)
|
sort.Sort(alertsSorter)
|
||||||
|
|
Loading…
Reference in a new issue