2015-01-21 11:07:45 -08:00
|
|
|
// Copyright 2013 The Prometheus Authors
|
2013-02-12 04:15:40 -08:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package web
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2013-05-05 10:32:04 -07:00
|
|
|
"sync"
|
2013-05-24 01:44:34 -07:00
|
|
|
"time"
|
2013-08-13 08:19:13 -07:00
|
|
|
|
|
|
|
"github.com/prometheus/prometheus/retrieval"
|
2014-05-28 10:44:54 -07:00
|
|
|
"github.com/prometheus/prometheus/rules/manager"
|
2013-02-12 04:15:40 -08:00
|
|
|
)
|
|
|
|
|
2014-12-10 07:16:49 -08:00
|
|
|
// PrometheusStatusHandler implements http.Handler.
|
2013-08-13 08:19:13 -07:00
|
|
|
type PrometheusStatusHandler struct {
|
|
|
|
mu sync.RWMutex
|
|
|
|
|
2013-05-05 10:32:04 -07:00
|
|
|
BuildInfo map[string]string
|
2013-02-22 12:07:35 -08:00
|
|
|
Config string
|
2013-05-05 10:32:04 -07:00
|
|
|
Flags map[string]string
|
2014-05-28 10:44:54 -07:00
|
|
|
RuleManager manager.RuleManager
|
2013-02-22 12:07:35 -08:00
|
|
|
TargetPools map[string]*retrieval.TargetPool
|
2013-05-24 01:44:34 -07:00
|
|
|
|
|
|
|
Birth time.Time
|
2013-02-12 04:15:40 -08:00
|
|
|
}
|
|
|
|
|
2015-03-18 10:53:43 -07:00
|
|
|
// TargetStateToClass returns a map of TargetState to the name of a Bootstrap CSS class.
|
2015-03-07 13:27:39 -08:00
|
|
|
func (h *PrometheusStatusHandler) TargetStateToClass() map[retrieval.TargetState]string {
|
|
|
|
return map[retrieval.TargetState]string{
|
|
|
|
retrieval.Unknown: "warning",
|
|
|
|
retrieval.Healthy: "success",
|
|
|
|
retrieval.Unhealthy: "danger",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-13 08:19:13 -07:00
|
|
|
func (h *PrometheusStatusHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
executeTemplate(w, "status", h)
|
2013-02-12 04:15:40 -08:00
|
|
|
}
|