mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
063160aae2
* pass url parameters through context.Context * fix url param names without colon prefix * change context params to vars * replace url vars in tests using new api * rename vars to params * add some comments * rename seturlvars to seturlparams
89 lines
1.8 KiB
Go
89 lines
1.8 KiB
Go
package api
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/grafana/grafana/pkg/api/response"
|
|
"github.com/grafana/grafana/pkg/infra/log"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
apimodels "github.com/grafana/grafana/pkg/services/ngalert/api/tooling/definitions"
|
|
)
|
|
|
|
type promEndpoints struct {
|
|
rules, alerts string
|
|
}
|
|
|
|
var dsTypeToLotexRoutes = map[string]promEndpoints{
|
|
"prometheus": {
|
|
rules: "/api/v1/rules",
|
|
alerts: "/api/v1/alerts",
|
|
},
|
|
"loki": {
|
|
rules: "/prometheus/api/v1/rules",
|
|
alerts: "/prometheus/api/v1/alerts",
|
|
},
|
|
}
|
|
|
|
type LotexProm struct {
|
|
log log.Logger
|
|
*AlertingProxy
|
|
}
|
|
|
|
func NewLotexProm(proxy *AlertingProxy, log log.Logger) *LotexProm {
|
|
return &LotexProm{
|
|
log: log,
|
|
AlertingProxy: proxy,
|
|
}
|
|
}
|
|
|
|
func (p *LotexProm) RouteGetAlertStatuses(ctx *models.ReqContext) response.Response {
|
|
endpoints, err := p.getEndpoints(ctx)
|
|
if err != nil {
|
|
return ErrResp(http.StatusInternalServerError, err, "")
|
|
}
|
|
|
|
return p.withReq(
|
|
ctx,
|
|
http.MethodGet,
|
|
withPath(
|
|
*ctx.Req.URL,
|
|
endpoints.alerts,
|
|
),
|
|
nil,
|
|
jsonExtractor(&apimodels.AlertResponse{}),
|
|
nil,
|
|
)
|
|
}
|
|
|
|
func (p *LotexProm) RouteGetRuleStatuses(ctx *models.ReqContext) response.Response {
|
|
endpoints, err := p.getEndpoints(ctx)
|
|
if err != nil {
|
|
return ErrResp(http.StatusInternalServerError, err, "")
|
|
}
|
|
|
|
return p.withReq(
|
|
ctx,
|
|
http.MethodGet,
|
|
withPath(
|
|
*ctx.Req.URL,
|
|
endpoints.rules,
|
|
),
|
|
nil,
|
|
jsonExtractor(&apimodels.RuleResponse{}),
|
|
nil,
|
|
)
|
|
}
|
|
|
|
func (p *LotexProm) getEndpoints(ctx *models.ReqContext) (*promEndpoints, error) {
|
|
ds, err := p.DataProxy.DataSourceCache.GetDatasource(ctx.ParamsInt64(":Recipient"), ctx.SignedInUser, ctx.SkipCache)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
routes, ok := dsTypeToLotexRoutes[ds.Type]
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected datasource type. expecting loki or prometheus")
|
|
}
|
|
return &routes, nil
|
|
}
|