elasticsearch - Is it Possible to Use Histogram Facet or Its Curl Response in Kibana -


is possible use manually created histogram facet (or results of curl request) 1 in kibana dashboard:

{     "query" : {         "match_all" : {}     },     "facets" : {         "histo1" : {             "histogram" : {                 "key_script" : "doc['date'].date.minuteofhour * factor1",                 "value_script" : "doc['num1'].value + factor2",                 "params" : {                     "factor1" : 2,                     "factor2" : 3                 }             }         }     } } 

thanks

it looks supported in kibana4, there doesn't seem more info out there that.

for reference: https://github.com/elasticsearch/kibana/issues/1249


Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -