mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
a2f4344bf2
* Alerting: Refactor & fix unified alerting metrics structure Fixes and refactors the metrics structure we have for the ngalert service. Now, each component has its own metric struct that includes the JUST the metrics it uses. Additionally, I have fixed the configuration metrics and added new metrics to determine if we have discovered and started all the necessary configurations of an instance. This allows us to alert on `grafana_alerting_discovered_configurations - grafana_alerting_active_configurations != 0` to know whether an alertmanager instance did not start successfully.
51 lines
1.5 KiB
Go
51 lines
1.5 KiB
Go
/*Package api contains base API implementation of unified alerting
|
|
*
|
|
*Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
|
*
|
|
*Do not manually edit these files, please find ngalert/api/swagger-codegen/ for commands on how to generate them.
|
|
*/
|
|
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/go-macaron/binding"
|
|
|
|
"github.com/grafana/grafana/pkg/api/response"
|
|
"github.com/grafana/grafana/pkg/api/routing"
|
|
"github.com/grafana/grafana/pkg/middleware"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
apimodels "github.com/grafana/grafana/pkg/services/ngalert/api/tooling/definitions"
|
|
"github.com/grafana/grafana/pkg/services/ngalert/metrics"
|
|
)
|
|
|
|
type TestingApiService interface {
|
|
RouteEvalQueries(*models.ReqContext, apimodels.EvalQueriesPayload) response.Response
|
|
RouteTestRuleConfig(*models.ReqContext, apimodels.TestRulePayload) response.Response
|
|
}
|
|
|
|
func (api *API) RegisterTestingApiEndpoints(srv TestingApiService, m *metrics.API) {
|
|
api.RouteRegister.Group("", func(group routing.RouteRegister) {
|
|
group.Post(
|
|
toMacaronPath("/api/v1/eval"),
|
|
binding.Bind(apimodels.EvalQueriesPayload{}),
|
|
metrics.Instrument(
|
|
http.MethodPost,
|
|
"/api/v1/eval",
|
|
srv.RouteEvalQueries,
|
|
m,
|
|
),
|
|
)
|
|
group.Post(
|
|
toMacaronPath("/api/v1/rule/test/{Recipient}"),
|
|
binding.Bind(apimodels.TestRulePayload{}),
|
|
metrics.Instrument(
|
|
http.MethodPost,
|
|
"/api/v1/rule/test/{Recipient}",
|
|
srv.RouteTestRuleConfig,
|
|
m,
|
|
),
|
|
)
|
|
}, middleware.ReqSignedIn)
|
|
}
|