Add Basic Auth support

This commit is contained in:
Johannes 'fish' Ziemke 2014-12-17 18:59:06 +01:00
parent bb3132714c
commit 326c857681
1 changed files with 40 additions and 7 deletions

View File

@ -23,11 +23,13 @@ import (
const subsystem = "exporter" const subsystem = "exporter"
var ( var (
configFile = flag.String("config", "node_exporter.conf", "config file.") configFile = flag.String("config", "node_exporter.conf", "Path to config file.")
memProfile = flag.String("memprofile", "", "write memory profile to this file") memProfile = flag.String("memprofile", "", "Write memory profile to this file.")
listeningAddress = flag.String("listen", ":8080", "address to listen on") listeningAddress = flag.String("listen", ":8080", "Address to listen on.")
enabledCollectors = flag.String("enabledCollectors", "attributes,diskstats,filesystem,loadavg,meminfo,stat,time,netdev,netstat", "comma-seperated list of collectors to use") enabledCollectors = flag.String("enabledCollectors", "attributes,diskstats,filesystem,loadavg,meminfo,stat,time,netdev,netstat", "Comma-separated list of collectors to use.")
printCollectors = flag.Bool("printCollectors", false, "If true, print available collectors and exit") printCollectors = flag.Bool("printCollectors", false, "If true, print available collectors and exit.")
authUser = flag.String("auth.user", "", "Username for basic auth.")
authPass = flag.String("auth.pass", "", "Password for basic auth.")
collectorLabelNames = []string{"collector", "result"} collectorLabelNames = []string{"collector", "result"}
@ -66,6 +68,23 @@ func (n NodeCollector) Collect(ch chan<- prometheus.Metric) {
scrapeDurations.Collect(ch) scrapeDurations.Collect(ch)
} }
type basicAuthHandler struct {
handler http.HandlerFunc
user string
password string
}
func (h *basicAuthHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
user, password, ok := r.BasicAuth()
if !ok || password != h.password || user != h.user {
w.Header().Set("WWW-Authenticate", "Basic realm=\"metrics\"")
http.Error(w, "Invalid username or password", http.StatusUnauthorized)
return
}
h.handler(w, r)
return
}
func Execute(name string, c collector.Collector, ch chan<- prometheus.Metric) { func Execute(name string, c collector.Collector, ch chan<- prometheus.Metric) {
begin := time.Now() begin := time.Now()
err := c.Update(ch) err := c.Update(ch)
@ -137,9 +156,23 @@ func main() {
sigUsr1 := make(chan os.Signal) sigUsr1 := make(chan os.Signal)
signal.Notify(sigUsr1, syscall.SIGUSR1) signal.Notify(sigUsr1, syscall.SIGUSR1)
handler := prometheus.Handler()
if *authUser != "" || *authPass != "" {
if *authUser == "" || *authPass == "" {
glog.Fatal("You need to specify -auth.user and -auth.pass to enable basic auth")
}
handler = &basicAuthHandler{
handler: prometheus.Handler().ServeHTTP,
user: *authUser,
password: *authPass,
}
}
go func() { go func() {
http.Handle("/metrics", prometheus.Handler()) http.Handle("/metrics", handler)
http.ListenAndServe(*listeningAddress, nil) err := http.ListenAndServe(*listeningAddress, nil)
if err != nil {
glog.Fatal(err)
}
}() }()
for { for {