2020-04-11 09:40:24 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
2020-04-11 15:49:23 +00:00
|
|
|
"sort"
|
2020-04-11 09:40:24 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/httpserver"
|
|
|
|
)
|
|
|
|
|
|
|
|
// apiAlert has info for an alert.
|
|
|
|
type apiAlert struct {
|
2020-04-11 15:49:23 +00:00
|
|
|
ID uint64 `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Group string `json:"group"`
|
|
|
|
Expression string `json:"expression"`
|
|
|
|
State string `json:"state"`
|
|
|
|
Value string `json:"value"`
|
2020-04-11 09:40:24 +00:00
|
|
|
Labels map[string]string `json:"labels"`
|
|
|
|
Annotations map[string]string `json:"annotations"`
|
|
|
|
ActiveAt time.Time `json:"activeAt"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type requestHandler struct {
|
|
|
|
groups []Group
|
|
|
|
}
|
|
|
|
|
2020-04-11 15:49:23 +00:00
|
|
|
var pathList = [][]string{
|
|
|
|
{"/api/v1/alerts", "list all active alerts"},
|
|
|
|
{"/api/v1/groupName/alertID/status", "get alert status by ID"},
|
2020-04-11 19:42:01 +00:00
|
|
|
// /metrics is served by httpserver by default
|
|
|
|
{"/metrics", "list of application metrics"},
|
2020-04-11 15:49:23 +00:00
|
|
|
}
|
|
|
|
|
2020-04-11 09:40:24 +00:00
|
|
|
func (rh *requestHandler) handler(w http.ResponseWriter, r *http.Request) bool {
|
|
|
|
resph := responseHandler{w}
|
|
|
|
switch r.URL.Path {
|
2020-04-11 15:49:23 +00:00
|
|
|
case "/":
|
|
|
|
for _, path := range pathList {
|
|
|
|
p, doc := path[0], path[1]
|
|
|
|
fmt.Fprintf(w, "<a href='%s'>%q</a> - %s<br/>", p, p, doc)
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
case "/api/v1/alerts":
|
|
|
|
resph.handle(rh.list())
|
|
|
|
return true
|
2020-04-11 09:40:24 +00:00
|
|
|
default:
|
2020-04-11 15:49:23 +00:00
|
|
|
// /api/v1/<groupName>/<alertID>/status
|
2020-04-11 09:40:24 +00:00
|
|
|
if strings.HasSuffix(r.URL.Path, "/status") {
|
|
|
|
resph.handle(rh.alert(r.URL.Path))
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-11 15:49:23 +00:00
|
|
|
func (rh *requestHandler) list() ([]byte, error) {
|
2020-04-11 09:40:24 +00:00
|
|
|
type listAlertsResponse struct {
|
|
|
|
Data struct {
|
2020-04-11 15:49:23 +00:00
|
|
|
Alerts []*apiAlert `json:"alerts"`
|
2020-04-11 09:40:24 +00:00
|
|
|
} `json:"data"`
|
|
|
|
Status string `json:"status"`
|
|
|
|
}
|
|
|
|
lr := listAlertsResponse{Status: "success"}
|
|
|
|
for _, g := range rh.groups {
|
2020-04-11 15:49:23 +00:00
|
|
|
for _, r := range g.Rules {
|
|
|
|
lr.Data.Alerts = append(lr.Data.Alerts, r.AlertsAPI()...)
|
2020-04-11 09:40:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-11 15:49:23 +00:00
|
|
|
// sort list of alerts for deterministic output
|
|
|
|
sort.Slice(lr.Data.Alerts, func(i, j int) bool {
|
|
|
|
return lr.Data.Alerts[i].Name < lr.Data.Alerts[j].Name
|
|
|
|
})
|
|
|
|
|
2020-04-11 09:40:24 +00:00
|
|
|
b, err := json.Marshal(lr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, &httpserver.ErrorWithStatusCode{
|
|
|
|
Err: fmt.Errorf(`error encoding list of active alerts: %s`, err),
|
|
|
|
StatusCode: http.StatusInternalServerError,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return b, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rh *requestHandler) alert(path string) ([]byte, error) {
|
|
|
|
parts := strings.SplitN(strings.TrimPrefix(path, "/api/v1/"), "/", 3)
|
|
|
|
if len(parts) != 3 {
|
|
|
|
return nil, &httpserver.ErrorWithStatusCode{
|
|
|
|
Err: fmt.Errorf(`path %q cointains /status suffix but doesn't match pattern "/group/alert/status"`, path),
|
|
|
|
StatusCode: http.StatusBadRequest,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
group := strings.TrimRight(parts[0], "/")
|
|
|
|
idStr := strings.TrimRight(parts[1], "/")
|
|
|
|
id, err := strconv.ParseUint(idStr, 10, 0)
|
|
|
|
if err != nil {
|
|
|
|
return nil, &httpserver.ErrorWithStatusCode{
|
2020-04-11 15:49:23 +00:00
|
|
|
Err: fmt.Errorf(`cannot parse int from %q`, idStr),
|
2020-04-11 09:40:24 +00:00
|
|
|
StatusCode: http.StatusBadRequest,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, g := range rh.groups {
|
2020-04-11 15:49:23 +00:00
|
|
|
if g.Name != group {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
for i := range g.Rules {
|
|
|
|
if apiAlert := g.Rules[i].AlertAPI(id); apiAlert != nil {
|
|
|
|
return json.Marshal(apiAlert)
|
2020-04-11 09:40:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, &httpserver.ErrorWithStatusCode{
|
2020-04-11 15:49:23 +00:00
|
|
|
Err: fmt.Errorf(`cannot find alert %s in %q`, idStr, group),
|
2020-04-11 09:40:24 +00:00
|
|
|
StatusCode: http.StatusNotFound,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// responseHandler wrapper on http.ResponseWriter with sugar
|
|
|
|
type responseHandler struct{ http.ResponseWriter }
|
|
|
|
|
|
|
|
func (w responseHandler) handle(b []byte, err error) {
|
|
|
|
if err != nil {
|
|
|
|
httpserver.Errorf(w, "%s", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
w.Write(b)
|
|
|
|
}
|