forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 9
/
server.go
75 lines (61 loc) · 1.83 KB
/
server.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package api
import (
"fmt"
"net/http"
"net/url"
"strconv"
"github.com/elastic/beats/libbeat/beat"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/common/cfgwarn"
"github.com/elastic/beats/libbeat/logp"
"github.com/elastic/beats/libbeat/monitoring"
)
// Start starts the metrics api endpoint on the configured host and port
func Start(cfg *common.Config, info beat.Info) {
cfgwarn.Beta("Metrics endpoint is enabled.")
config := DefaultConfig
cfg.Unpack(&config)
logp.Info("Starting stats endpoint")
go func() {
mux := http.NewServeMux()
// register handlers
mux.HandleFunc("/", rootHandler(info))
mux.HandleFunc("/stats", statsHandler)
url := config.Host + ":" + strconv.Itoa(config.Port)
logp.Info("URL: %s", url)
endpoint := http.ListenAndServe(url, mux)
logp.Info("finished starting stats endpoint: %v", endpoint)
}()
}
func rootHandler(info beat.Info) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
// Return error page
if r.URL.Path != "/" {
http.NotFound(w, r)
return
}
w.Header().Set("Content-Type", "application/json; charset=utf-8")
data := common.MapStr{
"version": info.Version,
"beat": info.Beat,
"name": info.Name,
"uuid": info.UUID,
"hostname": info.Hostname,
}
print(w, data, r.URL)
}
}
// statsHandler report expvar and all libbeat/monitoring metrics
func statsHandler(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json; charset=utf-8")
data := monitoring.CollectStructSnapshot(nil, monitoring.Full, false)
print(w, data, r.URL)
}
func print(w http.ResponseWriter, data common.MapStr, u *url.URL) {
query := u.Query()
if _, ok := query["pretty"]; ok {
fmt.Fprintf(w, data.StringToPrint())
} else {
fmt.Fprintf(w, data.String())
}
}