mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
c6483cd8ed
* Alerting: Refactor API handlers to use web.Bind * lint
57 lines
1.6 KiB
Go
57 lines
1.6 KiB
Go
package api
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/grafana/grafana/pkg/api/response"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/services/datasources"
|
|
apimodels "github.com/grafana/grafana/pkg/services/ngalert/api/tooling/definitions"
|
|
)
|
|
|
|
type ForkedPrometheusApi struct {
|
|
ProxySvc, GrafanaSvc PrometheusApiService
|
|
DatasourceCache datasources.CacheService
|
|
}
|
|
|
|
// NewForkedProm implements a set of routes that proxy to various Prometheus-compatible backends.
|
|
func NewForkedProm(datasourceCache datasources.CacheService, proxy, grafana PrometheusApiService) *ForkedPrometheusApi {
|
|
return &ForkedPrometheusApi{
|
|
ProxySvc: proxy,
|
|
GrafanaSvc: grafana,
|
|
DatasourceCache: datasourceCache,
|
|
}
|
|
}
|
|
|
|
func (f *ForkedPrometheusApi) forkRouteGetAlertStatuses(ctx *models.ReqContext) response.Response {
|
|
t, err := backendType(ctx, f.DatasourceCache)
|
|
if err != nil {
|
|
return ErrResp(400, err, "")
|
|
}
|
|
|
|
switch t {
|
|
case apimodels.GrafanaBackend:
|
|
return f.GrafanaSvc.RouteGetAlertStatuses(ctx)
|
|
case apimodels.LoTexRulerBackend:
|
|
return f.ProxySvc.RouteGetAlertStatuses(ctx)
|
|
default:
|
|
return ErrResp(400, fmt.Errorf("unexpected backend type (%v)", t), "")
|
|
}
|
|
}
|
|
|
|
func (f *ForkedPrometheusApi) forkRouteGetRuleStatuses(ctx *models.ReqContext) response.Response {
|
|
t, err := backendType(ctx, f.DatasourceCache)
|
|
if err != nil {
|
|
return ErrResp(400, err, "")
|
|
}
|
|
|
|
switch t {
|
|
case apimodels.GrafanaBackend:
|
|
return f.GrafanaSvc.RouteGetRuleStatuses(ctx)
|
|
case apimodels.LoTexRulerBackend:
|
|
return f.ProxySvc.RouteGetRuleStatuses(ctx)
|
|
default:
|
|
return ErrResp(400, fmt.Errorf("unexpected backend type (%v)", t), "")
|
|
}
|
|
}
|