mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
0d9389e1f4
* Extend template and generate * Generate and fix up alertmanager endpoints * Prometheus routes * fix up Testing endpoints * touch up ruler API * Update provisioning and fix 500 * Drop dead code * Remove more dead code * Resolve merge conflicts
84 lines
2.7 KiB
Go
84 lines
2.7 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/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"
|
|
"github.com/grafana/grafana/pkg/web"
|
|
)
|
|
|
|
type TestingApiForkingService interface {
|
|
RouteEvalQueries(*models.ReqContext) response.Response
|
|
RouteTestRuleConfig(*models.ReqContext) response.Response
|
|
RouteTestRuleGrafanaConfig(*models.ReqContext) response.Response
|
|
}
|
|
|
|
func (f *ForkedTestingApi) RouteEvalQueries(ctx *models.ReqContext) response.Response {
|
|
conf := apimodels.EvalQueriesPayload{}
|
|
if err := web.Bind(ctx.Req, &conf); err != nil {
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
}
|
|
return f.forkRouteEvalQueries(ctx, conf)
|
|
}
|
|
func (f *ForkedTestingApi) RouteTestRuleConfig(ctx *models.ReqContext) response.Response {
|
|
datasourceUIDParam := web.Params(ctx.Req)[":DatasourceUID"]
|
|
conf := apimodels.TestRulePayload{}
|
|
if err := web.Bind(ctx.Req, &conf); err != nil {
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
}
|
|
return f.forkRouteTestRuleConfig(ctx, conf, datasourceUIDParam)
|
|
}
|
|
func (f *ForkedTestingApi) RouteTestRuleGrafanaConfig(ctx *models.ReqContext) response.Response {
|
|
conf := apimodels.TestRulePayload{}
|
|
if err := web.Bind(ctx.Req, &conf); err != nil {
|
|
return response.Error(http.StatusBadRequest, "bad request data", err)
|
|
}
|
|
return f.forkRouteTestRuleGrafanaConfig(ctx, conf)
|
|
}
|
|
|
|
func (api *API) RegisterTestingApiEndpoints(srv TestingApiForkingService, m *metrics.API) {
|
|
api.RouteRegister.Group("", func(group routing.RouteRegister) {
|
|
group.Post(
|
|
toMacaronPath("/api/v1/eval"),
|
|
api.authorize(http.MethodPost, "/api/v1/eval"),
|
|
metrics.Instrument(
|
|
http.MethodPost,
|
|
"/api/v1/eval",
|
|
srv.RouteEvalQueries,
|
|
m,
|
|
),
|
|
)
|
|
group.Post(
|
|
toMacaronPath("/api/v1/rule/test/{DatasourceUID}"),
|
|
api.authorize(http.MethodPost, "/api/v1/rule/test/{DatasourceUID}"),
|
|
metrics.Instrument(
|
|
http.MethodPost,
|
|
"/api/v1/rule/test/{DatasourceUID}",
|
|
srv.RouteTestRuleConfig,
|
|
m,
|
|
),
|
|
)
|
|
group.Post(
|
|
toMacaronPath("/api/v1/rule/test/grafana"),
|
|
api.authorize(http.MethodPost, "/api/v1/rule/test/grafana"),
|
|
metrics.Instrument(
|
|
http.MethodPost,
|
|
"/api/v1/rule/test/grafana",
|
|
srv.RouteTestRuleGrafanaConfig,
|
|
m,
|
|
),
|
|
)
|
|
}, middleware.ReqSignedIn)
|
|
}
|