mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
Elasticsearch: Remove GetMinInterval method that is not used anymore (#65203)
This commit is contained in:
parent
baf5a1d141
commit
e8bb894a02
@ -16,7 +16,6 @@ import (
|
||||
"github.com/grafana/grafana-plugin-sdk-go/backend"
|
||||
|
||||
"github.com/grafana/grafana/pkg/infra/log"
|
||||
"github.com/grafana/grafana/pkg/tsdb/intervalv2"
|
||||
)
|
||||
|
||||
type DatasourceInfo struct {
|
||||
@ -44,7 +43,6 @@ const loggerName = "tsdb.elasticsearch.client"
|
||||
// Client represents a client which can interact with elasticsearch api
|
||||
type Client interface {
|
||||
GetConfiguredFields() ConfiguredFields
|
||||
GetMinInterval(queryInterval string) (time.Duration, error)
|
||||
ExecuteMultisearch(r *MultiSearchRequest) (*MultiSearchResponse, error)
|
||||
MultiSearch() *MultiSearchRequestBuilder
|
||||
}
|
||||
@ -87,11 +85,6 @@ func (c *baseClientImpl) GetConfiguredFields() ConfiguredFields {
|
||||
return c.configuredFields
|
||||
}
|
||||
|
||||
func (c *baseClientImpl) GetMinInterval(queryInterval string) (time.Duration, error) {
|
||||
timeInterval := c.ds.TimeInterval
|
||||
return intervalv2.GetIntervalFrom(queryInterval, timeInterval, 0, 5*time.Second)
|
||||
}
|
||||
|
||||
type multiRequest struct {
|
||||
header map[string]interface{}
|
||||
body interface{}
|
||||
|
@ -1712,10 +1712,6 @@ func (c *fakeClient) GetConfiguredFields() es.ConfiguredFields {
|
||||
return c.configuredFields
|
||||
}
|
||||
|
||||
func (c *fakeClient) GetMinInterval(queryInterval string) (time.Duration, error) {
|
||||
return 15 * time.Second, nil
|
||||
}
|
||||
|
||||
func (c *fakeClient) ExecuteMultisearch(r *es.MultiSearchRequest) (*es.MultiSearchResponse, error) {
|
||||
c.multisearchRequests = append(c.multisearchRequests, r)
|
||||
return c.multiSearchResponse, c.multiSearchError
|
||||
|
Loading…
Reference in New Issue
Block a user