Commit 8870e3e8 by Marcus Efraimsson

elasticsearch: default interval fix

5s instead of 15s
parent 242689ab
......@@ -106,7 +106,7 @@ func (c *baseClientImpl) GetTimeField() string {
func (c *baseClientImpl) GetMinInterval(queryInterval string) (time.Duration, error) {
return tsdb.GetIntervalFrom(c.ds, simplejson.NewFromAny(map[string]string{
"interval": queryInterval,
}), 15*time.Second)
}), 5*time.Second)
}
func (c *baseClientImpl) getSettings() *simplejson.Json {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment