mirror of
https://github.com/grafana/grafana.git
synced 2025-07-28 10:12:19 +08:00

* grafana/master: (127 commits) alerting: move all notification conditions to defaultShouldNotify filter NULL values for column value suggestions imguploader: Add support for ECS credential provider for S3 Remove .dropdown-menu-open on body click fixes #13409 Remove option r from ln command since its not working everywhere fix: updated tests Fix spelling of your and you're Changed setting to be an alerting setting Remove non-existing css prop fix: Legend to the right, as table, should follow the width prop. Removing css conflicting with baron's width calculation. #13312 rendering: Added concurrent rendering limits devenv: fix uid for bulk alert dashboards Explore: moved code to app/features/explore target gfdev-prometheus datasource devenv: adds script for creating many dashboards with alerts Fix goconst issues When stacking graphs, always include the y-offset so that tooltips can render proper values for individual points provisioning: changed provisioning default update interval from 3 to 10 seconds Fix https://github.com/grafana/grafana/issues/13387 metric segment options displays after blur docs: improve oauth generic azure ad instructions ...
68 lines
1.7 KiB
Go
68 lines
1.7 KiB
Go
package api
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/api/pluginproxy"
|
|
"github.com/grafana/grafana/pkg/bus"
|
|
"github.com/grafana/grafana/pkg/metrics"
|
|
m "github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/plugins"
|
|
)
|
|
|
|
const HeaderNameNoBackendCache = "X-Grafana-NoCache"
|
|
|
|
func (hs *HTTPServer) getDatasourceFromCache(id int64, c *m.ReqContext) (*m.DataSource, error) {
|
|
nocache := c.Req.Header.Get(HeaderNameNoBackendCache) == "true"
|
|
cacheKey := fmt.Sprintf("ds-%d", id)
|
|
|
|
if !nocache {
|
|
if cached, found := hs.cache.Get(cacheKey); found {
|
|
ds := cached.(*m.DataSource)
|
|
if ds.OrgId == c.OrgId {
|
|
return ds, nil
|
|
}
|
|
}
|
|
}
|
|
|
|
query := m.GetDataSourceByIdQuery{Id: id, OrgId: c.OrgId}
|
|
if err := bus.Dispatch(&query); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
hs.cache.Set(cacheKey, query.Result, time.Second*5)
|
|
return query.Result, nil
|
|
}
|
|
|
|
func (hs *HTTPServer) ProxyDataSourceRequest(c *m.ReqContext) {
|
|
c.TimeRequest(metrics.M_DataSource_ProxyReq_Timer)
|
|
|
|
ds, err := hs.getDatasourceFromCache(c.ParamsInt64(":id"), c)
|
|
if err != nil {
|
|
c.JsonApiErr(500, "Unable to load datasource meta data", err)
|
|
return
|
|
}
|
|
|
|
// find plugin
|
|
plugin, ok := plugins.DataSources[ds.Type]
|
|
if !ok {
|
|
c.JsonApiErr(500, "Unable to find datasource plugin", err)
|
|
return
|
|
}
|
|
|
|
proxyPath := c.Params("*")
|
|
|
|
// Check for a trailing slash, and pass it to the proxy
|
|
// macaron does not include trailing slashes when resolving a wildcard path
|
|
if len(proxyPath) > 1 {
|
|
path := c.Req.URL.Path
|
|
if path[len(path)-1] == '/' && proxyPath[len(proxyPath)-1] != '/' {
|
|
proxyPath += "/"
|
|
}
|
|
}
|
|
|
|
proxy := pluginproxy.NewDataSourceProxy(ds, plugin, c, proxyPath)
|
|
proxy.HandleRequest()
|
|
}
|