Hi,
I have recently started using Kibana for visualization purposes. I am exploring field JSON Input.
Can anyone help me in understanding how we can actually utilize JSON Input field.
Basically I am trying to get a view of "Running Total" - bar chart over the period of time.
I came across few aggregations in knowledge base of Kibana but the query is throwing error.
Any help or information on this will be highly appreciated. Thanks.
Input for reference:
{
"size":0,
"aggs" : {
"total_per_month" : {
"date_histogram" : {
"field" : "reportDate",
"interval" : "month"
},
"aggs": {
"1": {
"sum": {
"field": counts"
}
},
"cumulative_total": {
"cumulative_sum": {
"buckets_path": "1"
}
}
}
}
}
}