mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -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
86 lines
2.9 KiB
Go
86 lines
2.9 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"
|
|
"github.com/grafana/grafana/pkg/services/ngalert/metrics"
|
|
"github.com/grafana/grafana/pkg/web"
|
|
)
|
|
|
|
type PrometheusApiForkingService interface {
|
|
RouteGetAlertStatuses(*models.ReqContext) response.Response
|
|
RouteGetGrafanaAlertStatuses(*models.ReqContext) response.Response
|
|
RouteGetGrafanaRuleStatuses(*models.ReqContext) response.Response
|
|
RouteGetRuleStatuses(*models.ReqContext) response.Response
|
|
}
|
|
|
|
func (f *ForkedPrometheusApi) RouteGetAlertStatuses(ctx *models.ReqContext) response.Response {
|
|
datasourceUIDParam := web.Params(ctx.Req)[":DatasourceUID"]
|
|
return f.forkRouteGetAlertStatuses(ctx, datasourceUIDParam)
|
|
}
|
|
func (f *ForkedPrometheusApi) RouteGetGrafanaAlertStatuses(ctx *models.ReqContext) response.Response {
|
|
return f.forkRouteGetGrafanaAlertStatuses(ctx)
|
|
}
|
|
func (f *ForkedPrometheusApi) RouteGetGrafanaRuleStatuses(ctx *models.ReqContext) response.Response {
|
|
return f.forkRouteGetGrafanaRuleStatuses(ctx)
|
|
}
|
|
func (f *ForkedPrometheusApi) RouteGetRuleStatuses(ctx *models.ReqContext) response.Response {
|
|
datasourceUIDParam := web.Params(ctx.Req)[":DatasourceUID"]
|
|
return f.forkRouteGetRuleStatuses(ctx, datasourceUIDParam)
|
|
}
|
|
|
|
func (api *API) RegisterPrometheusApiEndpoints(srv PrometheusApiForkingService, m *metrics.API) {
|
|
api.RouteRegister.Group("", func(group routing.RouteRegister) {
|
|
group.Get(
|
|
toMacaronPath("/api/prometheus/{DatasourceUID}/api/v1/alerts"),
|
|
api.authorize(http.MethodGet, "/api/prometheus/{DatasourceUID}/api/v1/alerts"),
|
|
metrics.Instrument(
|
|
http.MethodGet,
|
|
"/api/prometheus/{DatasourceUID}/api/v1/alerts",
|
|
srv.RouteGetAlertStatuses,
|
|
m,
|
|
),
|
|
)
|
|
group.Get(
|
|
toMacaronPath("/api/prometheus/grafana/api/v1/alerts"),
|
|
api.authorize(http.MethodGet, "/api/prometheus/grafana/api/v1/alerts"),
|
|
metrics.Instrument(
|
|
http.MethodGet,
|
|
"/api/prometheus/grafana/api/v1/alerts",
|
|
srv.RouteGetGrafanaAlertStatuses,
|
|
m,
|
|
),
|
|
)
|
|
group.Get(
|
|
toMacaronPath("/api/prometheus/grafana/api/v1/rules"),
|
|
api.authorize(http.MethodGet, "/api/prometheus/grafana/api/v1/rules"),
|
|
metrics.Instrument(
|
|
http.MethodGet,
|
|
"/api/prometheus/grafana/api/v1/rules",
|
|
srv.RouteGetGrafanaRuleStatuses,
|
|
m,
|
|
),
|
|
)
|
|
group.Get(
|
|
toMacaronPath("/api/prometheus/{DatasourceUID}/api/v1/rules"),
|
|
api.authorize(http.MethodGet, "/api/prometheus/{DatasourceUID}/api/v1/rules"),
|
|
metrics.Instrument(
|
|
http.MethodGet,
|
|
"/api/prometheus/{DatasourceUID}/api/v1/rules",
|
|
srv.RouteGetRuleStatuses,
|
|
m,
|
|
),
|
|
)
|
|
}, middleware.ReqSignedIn)
|
|
}
|