mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
dcd0c6b11e
Unfurl OrgID in pkg/services to allow using identity.Requester interface
59 lines
1.5 KiB
Go
59 lines
1.5 KiB
Go
package api
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana-plugin-sdk-go/data"
|
|
"github.com/grafana/grafana/pkg/api/response"
|
|
"github.com/grafana/grafana/pkg/infra/log"
|
|
contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model"
|
|
"github.com/grafana/grafana/pkg/services/ngalert/models"
|
|
)
|
|
|
|
type Historian interface {
|
|
Query(ctx context.Context, query models.HistoryQuery) (*data.Frame, error)
|
|
}
|
|
|
|
type HistorySrv struct {
|
|
logger log.Logger
|
|
hist Historian
|
|
}
|
|
|
|
const labelQueryPrefix = "labels_"
|
|
|
|
func (srv *HistorySrv) RouteQueryStateHistory(c *contextmodel.ReqContext) response.Response {
|
|
from := c.QueryInt64("from")
|
|
to := c.QueryInt64("to")
|
|
limit := c.QueryInt("limit")
|
|
ruleUID := c.Query("ruleUID")
|
|
dashUID := c.Query("dashboardUID")
|
|
panelID := c.QueryInt64("panelID")
|
|
|
|
labels := make(map[string]string)
|
|
for k, v := range c.Req.URL.Query() {
|
|
if strings.HasPrefix(k, labelQueryPrefix) {
|
|
labels[k[len(labelQueryPrefix):]] = v[0]
|
|
}
|
|
}
|
|
|
|
query := models.HistoryQuery{
|
|
RuleUID: ruleUID,
|
|
OrgID: c.SignedInUser.GetOrgID(),
|
|
DashboardUID: dashUID,
|
|
PanelID: panelID,
|
|
SignedInUser: c.SignedInUser,
|
|
From: time.Unix(from, 0),
|
|
To: time.Unix(to, 0),
|
|
Limit: limit,
|
|
Labels: labels,
|
|
}
|
|
frame, err := srv.hist.Query(c.Req.Context(), query)
|
|
if err != nil {
|
|
return ErrResp(http.StatusInternalServerError, err, "")
|
|
}
|
|
return response.JSON(http.StatusOK, frame)
|
|
}
|