Explorar el Código

Merge branch 'patch-1' of https://github.com/goldeelox/grafana into goldeelox-patch-1

Torkel Ödegaard hace 8 años
padre
commit
68397d342b
Se han modificado 1 ficheros con 6 adiciones y 2 borrados
  1. 6 2
      public/app/plugins/datasource/elasticsearch/query_builder.js

+ 6 - 2
public/app/plugins/datasource/elasticsearch/query_builder.js

@@ -119,8 +119,12 @@ function (queryDef) {
       query.fields = ["*", "_source"];
     }
 
-    query.script_fields = {},
-    query.docvalue_fields = [this.timeField];
+    query.script_fields = {};
+    if (this.esVersion < 5) {
+      query.fielddata_fields = [this.timeField];
+    } else {
+      query.docvalue_fields = [this.timeField];
+    }
     return query;
   };