mirror of
https://github.com/grafana/grafana.git
synced 2025-09-28 17:13:55 +08:00

* (WIP) send alerts to external, internal, or both alertmanagers * Modify admin configuration endpoint, update swagger docs * Integration test for admin config updated * Code review changes * Fix alertmanagers choice not changing bug, add unit test * Add AlertmanagersChoice as enum in swagger, code review changes * Fix API and tests errors * Change enum from int to string, use 'SendAlertsTo' instead of 'AlertmanagerChoice' where necessary * Fix tests to reflect last changes * Keep senders running when alerts are handled just internally * Check if any external AM has been discovered before sending alerts, update tests * remove duplicate data from logs * update comment * represent alertmanagers choice as an int instead of a string * default alertmanagers choice to all alertmanagers, test cases * update definitions and generate spec
83 lines
2.2 KiB
Go
83 lines
2.2 KiB
Go
package definitions
|
|
|
|
import (
|
|
v1 "github.com/prometheus/client_golang/api/prometheus/v1"
|
|
)
|
|
|
|
// swagger:route GET /api/v1/ngalert/alertmanagers configuration RouteGetAlertmanagers
|
|
//
|
|
// Get the discovered and dropped Alertmanagers of the user's organization based on the specified configuration.
|
|
//
|
|
// Produces:
|
|
// - application/json
|
|
//
|
|
// Responses:
|
|
// 200: GettableAlertmanagers
|
|
|
|
// swagger:route GET /api/v1/ngalert/admin_config configuration RouteGetNGalertConfig
|
|
//
|
|
// Get the NGalert configuration of the user's organization, returns 404 if no configuration is present.
|
|
//
|
|
// Produces:
|
|
// - application/json
|
|
//
|
|
// Responses:
|
|
// 200: GettableNGalertConfig
|
|
// 404: Failure
|
|
// 500: Failure
|
|
|
|
// swagger:route POST /api/v1/ngalert/admin_config configuration RoutePostNGalertConfig
|
|
//
|
|
// Creates or updates the NGalert configuration of the user's organization. If no value is sent for alertmanagersChoice, it defaults to "all".
|
|
//
|
|
// Consumes:
|
|
// - application/json
|
|
//
|
|
// Responses:
|
|
// 201: Ack
|
|
// 400: ValidationError
|
|
|
|
// swagger:route DELETE /api/v1/ngalert/admin_config configuration RouteDeleteNGalertConfig
|
|
//
|
|
// Deletes the NGalert configuration of the user's organization.
|
|
//
|
|
// Consumes:
|
|
// - application/json
|
|
//
|
|
// Responses:
|
|
// 200: Ack
|
|
// 500: Failure
|
|
|
|
// swagger:parameters RoutePostNGalertConfig
|
|
type NGalertConfig struct {
|
|
// in:body
|
|
Body PostableNGalertConfig
|
|
}
|
|
|
|
// swagger:enum AlertmanagersChoice
|
|
type AlertmanagersChoice string
|
|
|
|
const (
|
|
AllAlertmanagers AlertmanagersChoice = "all"
|
|
InternalAlertmanager AlertmanagersChoice = "internal"
|
|
ExternalAlertmanagers AlertmanagersChoice = "external"
|
|
)
|
|
|
|
// swagger:model
|
|
type PostableNGalertConfig struct {
|
|
Alertmanagers []string `json:"alertmanagers"`
|
|
AlertmanagersChoice AlertmanagersChoice `json:"alertmanagersChoice"`
|
|
}
|
|
|
|
// swagger:model
|
|
type GettableNGalertConfig struct {
|
|
Alertmanagers []string `json:"alertmanagers"`
|
|
AlertmanagersChoice AlertmanagersChoice `json:"alertmanagersChoice"`
|
|
}
|
|
|
|
// swagger:model
|
|
type GettableAlertmanagers struct {
|
|
Status string `json:"status"`
|
|
Data v1.AlertManagersResult `json:"data"`
|
|
}
|