2020-04-11 11:40:24 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
2020-04-11 17:49:23 +02:00
|
|
|
"sort"
|
2020-04-11 11:40:24 +02:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/httpserver"
|
2020-05-10 18:58:17 +02:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/procutil"
|
2020-04-11 11:40:24 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type requestHandler struct {
|
2020-05-10 18:58:17 +02:00
|
|
|
m *manager
|
2020-04-11 11:40:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (rh *requestHandler) handler(w http.ResponseWriter, r *http.Request) bool {
|
|
|
|
switch r.URL.Path {
|
2020-04-11 17:49:23 +02:00
|
|
|
case "/":
|
2021-04-02 21:54:06 +02:00
|
|
|
if r.Method != "GET" {
|
|
|
|
return false
|
|
|
|
}
|
2021-09-07 21:39:22 +02:00
|
|
|
WriteWelcome(w, [][2]string{
|
2021-04-30 08:19:08 +02:00
|
|
|
{"/api/v1/groups", "list all loaded groups and rules"},
|
|
|
|
{"/api/v1/alerts", "list all active alerts"},
|
|
|
|
{"/api/v1/groupID/alertID/status", "get alert status by ID"},
|
|
|
|
{"/metrics", "list of application metrics"},
|
|
|
|
{"/-/reload", "reload configuration"},
|
|
|
|
})
|
2020-04-11 17:49:23 +02:00
|
|
|
return true
|
2021-09-07 21:39:22 +02:00
|
|
|
case "/alerts":
|
|
|
|
WriteListAlerts(w, rh.groupAlerts())
|
|
|
|
return true
|
|
|
|
case "/groups":
|
|
|
|
WriteListGroups(w, rh.groups())
|
|
|
|
return true
|
2020-06-01 12:46:37 +02:00
|
|
|
case "/api/v1/groups":
|
2020-07-20 13:00:33 +02:00
|
|
|
data, err := rh.listGroups()
|
|
|
|
if err != nil {
|
2021-07-07 11:59:03 +02:00
|
|
|
httpserver.Errorf(w, r, "%s", err)
|
2020-07-20 13:00:33 +02:00
|
|
|
return true
|
|
|
|
}
|
2020-11-13 09:25:39 +01:00
|
|
|
w.Header().Set("Content-Type", "application/json; charset=utf-8")
|
2020-07-20 13:00:33 +02:00
|
|
|
w.Write(data)
|
2020-06-01 12:46:37 +02:00
|
|
|
return true
|
2020-04-11 17:49:23 +02:00
|
|
|
case "/api/v1/alerts":
|
2020-07-20 13:00:33 +02:00
|
|
|
data, err := rh.listAlerts()
|
|
|
|
if err != nil {
|
2021-07-07 11:59:03 +02:00
|
|
|
httpserver.Errorf(w, r, "%s", err)
|
2020-07-20 13:00:33 +02:00
|
|
|
return true
|
|
|
|
}
|
2020-11-13 09:25:39 +01:00
|
|
|
w.Header().Set("Content-Type", "application/json; charset=utf-8")
|
2020-07-20 13:00:33 +02:00
|
|
|
w.Write(data)
|
2020-04-11 17:49:23 +02:00
|
|
|
return true
|
2020-05-09 11:32:12 +02:00
|
|
|
case "/-/reload":
|
|
|
|
logger.Infof("api config reload was called, sending sighup")
|
|
|
|
procutil.SelfSIGHUP()
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
return true
|
2020-04-11 11:40:24 +02:00
|
|
|
default:
|
2020-07-20 13:00:33 +02:00
|
|
|
if !strings.HasSuffix(r.URL.Path, "/status") {
|
|
|
|
return false
|
|
|
|
}
|
2021-09-07 21:39:22 +02:00
|
|
|
alert, err := rh.alertByPath(strings.TrimPrefix(r.URL.Path, "/api/v1/"))
|
2020-07-20 13:00:33 +02:00
|
|
|
if err != nil {
|
2021-07-07 11:59:03 +02:00
|
|
|
httpserver.Errorf(w, r, "%s", err)
|
2020-04-11 11:40:24 +02:00
|
|
|
return true
|
|
|
|
}
|
2021-09-07 21:39:22 +02:00
|
|
|
|
|
|
|
// /api/v1/<groupID>/<alertID>/status
|
|
|
|
if strings.HasPrefix(r.URL.Path, "/api/v1/") {
|
|
|
|
data, err := json.Marshal(alert)
|
|
|
|
if err != nil {
|
|
|
|
httpserver.Errorf(w, r, "failed to marshal alert: %s", err)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json; charset=utf-8")
|
|
|
|
w.Write(data)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// <groupID>/<alertID>/status
|
|
|
|
WriteAlert(w, alert)
|
2020-07-20 13:00:33 +02:00
|
|
|
return true
|
2020-04-11 11:40:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-01 12:46:37 +02:00
|
|
|
type listGroupsResponse struct {
|
|
|
|
Data struct {
|
|
|
|
Groups []APIGroup `json:"groups"`
|
|
|
|
} `json:"data"`
|
|
|
|
Status string `json:"status"`
|
|
|
|
}
|
|
|
|
|
2021-09-07 21:39:22 +02:00
|
|
|
func (rh *requestHandler) groups() []APIGroup {
|
2020-06-01 12:46:37 +02:00
|
|
|
rh.m.groupsMu.RLock()
|
|
|
|
defer rh.m.groupsMu.RUnlock()
|
|
|
|
|
2021-09-07 21:39:22 +02:00
|
|
|
var groups []APIGroup
|
2020-06-01 12:46:37 +02:00
|
|
|
for _, g := range rh.m.groups {
|
2021-09-07 21:39:22 +02:00
|
|
|
groups = append(groups, g.toAPI())
|
2020-06-01 12:46:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// sort list of alerts for deterministic output
|
2021-09-07 21:39:22 +02:00
|
|
|
sort.Slice(groups, func(i, j int) bool {
|
|
|
|
return groups[i].Name < groups[j].Name
|
2020-06-01 12:46:37 +02:00
|
|
|
})
|
|
|
|
|
2021-09-07 21:39:22 +02:00
|
|
|
return groups
|
|
|
|
}
|
|
|
|
func (rh *requestHandler) listGroups() ([]byte, error) {
|
|
|
|
lr := listGroupsResponse{Status: "success"}
|
|
|
|
lr.Data.Groups = rh.groups()
|
2020-06-01 12:46:37 +02:00
|
|
|
b, err := json.Marshal(lr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, &httpserver.ErrorWithStatusCode{
|
2020-06-30 21:58:18 +02:00
|
|
|
Err: fmt.Errorf(`error encoding list of active alerts: %w`, err),
|
2020-06-01 12:46:37 +02:00
|
|
|
StatusCode: http.StatusInternalServerError,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return b, nil
|
|
|
|
}
|
|
|
|
|
2020-04-12 13:51:03 +02:00
|
|
|
type listAlertsResponse struct {
|
|
|
|
Data struct {
|
2020-04-12 14:08:11 +02:00
|
|
|
Alerts []*APIAlert `json:"alerts"`
|
2020-04-12 13:51:03 +02:00
|
|
|
} `json:"data"`
|
|
|
|
Status string `json:"status"`
|
|
|
|
}
|
|
|
|
|
2021-09-07 21:39:22 +02:00
|
|
|
func (rh *requestHandler) groupAlerts() []GroupAlerts {
|
|
|
|
rh.m.groupsMu.RLock()
|
|
|
|
defer rh.m.groupsMu.RUnlock()
|
|
|
|
|
|
|
|
var groupAlerts []GroupAlerts
|
|
|
|
for _, g := range rh.m.groups {
|
|
|
|
var alerts []*APIAlert
|
|
|
|
for _, r := range g.Rules {
|
|
|
|
a, ok := r.(*AlertingRule)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
alerts = append(alerts, a.AlertsAPI()...)
|
|
|
|
}
|
|
|
|
if len(alerts) > 0 {
|
|
|
|
groupAlerts = append(groupAlerts, GroupAlerts{
|
|
|
|
Group: g.toAPI(),
|
|
|
|
Alerts: alerts,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return groupAlerts
|
|
|
|
}
|
|
|
|
|
2020-06-01 12:46:37 +02:00
|
|
|
func (rh *requestHandler) listAlerts() ([]byte, error) {
|
2020-05-10 18:58:17 +02:00
|
|
|
rh.m.groupsMu.RLock()
|
|
|
|
defer rh.m.groupsMu.RUnlock()
|
2020-06-01 12:46:37 +02:00
|
|
|
|
2020-04-11 11:40:24 +02:00
|
|
|
lr := listAlertsResponse{Status: "success"}
|
2020-05-10 18:58:17 +02:00
|
|
|
for _, g := range rh.m.groups {
|
2020-04-11 17:49:23 +02:00
|
|
|
for _, r := range g.Rules {
|
2020-06-01 12:46:37 +02:00
|
|
|
a, ok := r.(*AlertingRule)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
lr.Data.Alerts = append(lr.Data.Alerts, a.AlertsAPI()...)
|
2020-04-11 11:40:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-11 17:49:23 +02:00
|
|
|
// sort list of alerts for deterministic output
|
|
|
|
sort.Slice(lr.Data.Alerts, func(i, j int) bool {
|
2020-05-04 23:51:22 +02:00
|
|
|
return lr.Data.Alerts[i].ID < lr.Data.Alerts[j].ID
|
2020-04-11 17:49:23 +02:00
|
|
|
})
|
|
|
|
|
2020-04-11 11:40:24 +02:00
|
|
|
b, err := json.Marshal(lr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, &httpserver.ErrorWithStatusCode{
|
2020-06-30 21:58:18 +02:00
|
|
|
Err: fmt.Errorf(`error encoding list of active alerts: %w`, err),
|
2020-04-11 11:40:24 +02:00
|
|
|
StatusCode: http.StatusInternalServerError,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return b, nil
|
|
|
|
}
|
|
|
|
|
2021-09-07 21:39:22 +02:00
|
|
|
func (rh *requestHandler) alertByPath(path string) (*APIAlert, error) {
|
2020-05-10 18:58:17 +02:00
|
|
|
rh.m.groupsMu.RLock()
|
|
|
|
defer rh.m.groupsMu.RUnlock()
|
|
|
|
|
2021-09-07 21:39:22 +02:00
|
|
|
parts := strings.SplitN(strings.TrimLeft(path, "/"), "/", 3)
|
2020-04-11 11:40:24 +02:00
|
|
|
if len(parts) != 3 {
|
|
|
|
return nil, &httpserver.ErrorWithStatusCode{
|
2021-09-07 21:39:22 +02:00
|
|
|
Err: fmt.Errorf(`path %q cointains /status suffix but doesn't match pattern "/groupID/alertID/status"`, path),
|
2020-04-11 11:40:24 +02:00
|
|
|
StatusCode: http.StatusBadRequest,
|
|
|
|
}
|
|
|
|
}
|
2020-05-10 18:58:17 +02:00
|
|
|
groupID, err := uint64FromPath(parts[0])
|
2020-04-11 11:40:24 +02:00
|
|
|
if err != nil {
|
2020-06-30 21:58:18 +02:00
|
|
|
return nil, badRequest(fmt.Errorf(`cannot parse groupID: %w`, err))
|
2020-04-11 11:40:24 +02:00
|
|
|
}
|
2020-05-10 18:58:17 +02:00
|
|
|
alertID, err := uint64FromPath(parts[1])
|
|
|
|
if err != nil {
|
2020-06-30 21:58:18 +02:00
|
|
|
return nil, badRequest(fmt.Errorf(`cannot parse alertID: %w`, err))
|
2020-04-11 11:40:24 +02:00
|
|
|
}
|
2020-05-10 18:58:17 +02:00
|
|
|
resp, err := rh.m.AlertAPI(groupID, alertID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errResponse(err, http.StatusNotFound)
|
2020-04-11 11:40:24 +02:00
|
|
|
}
|
2021-09-07 21:39:22 +02:00
|
|
|
return resp, nil
|
2020-04-11 11:40:24 +02:00
|
|
|
}
|
|
|
|
|
2020-05-10 18:58:17 +02:00
|
|
|
func uint64FromPath(path string) (uint64, error) {
|
|
|
|
s := strings.TrimRight(path, "/")
|
|
|
|
return strconv.ParseUint(s, 10, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func badRequest(err error) *httpserver.ErrorWithStatusCode {
|
|
|
|
return errResponse(err, http.StatusBadRequest)
|
|
|
|
}
|
|
|
|
|
|
|
|
func errResponse(err error, sc int) *httpserver.ErrorWithStatusCode {
|
|
|
|
return &httpserver.ErrorWithStatusCode{
|
|
|
|
Err: err,
|
|
|
|
StatusCode: sc,
|
|
|
|
}
|
|
|
|
}
|