We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a8eee2 commit 70dbc4fCopy full SHA for 70dbc4f
pkg/tsdb/elasticsearch/elasticsearch.go
@@ -1,6 +1,7 @@
1
package elasticsearch
2
3
import (
4
+ "context"
5
"encoding/json"
6
"fmt"
7
"strconv"
@@ -28,7 +29,7 @@ func init() {
28
29
tsdb.RegisterExecutor("elasticsearch", NewEsExecutor)
30
}
31
-func (e *EsExecutor) Execute(queries tsdb.QuerySlice, context *tsdb.QueryContext) *tsdb.BatchResult {
32
+func (e *EsExecutor) Execute(ctx context.Context, queries tsdb.QuerySlice, context *tsdb.QueryContext) *tsdb.BatchResult {
33
batchResult := &tsdb.BatchResult{}
34
35
//convert dashboard query datastructure to helper objects
0 commit comments