I created an index that collects metrics for different applications and I visualize these metrics in Kibana. However, there is a field that contains bucket aggregation datas (something like that: Variable width histogram aggregation). For better undestanding I show an example of a hit:
{
"_index": "metrics-monitoring",
"_id": "1",
"_version": 1,
"_score": null,
"_source": {
"kind": "HISTOGRAM",
"buckets": [
{
"min": -3.4028234663852886e+38,
"max": 0,
"count": 20
},
{
"min": 0,
"max": 5,
"count": 9
},
{
"min": 5,
"max": 10,
"count": 1
},
{
"min": 10,
"max": 25,
"count": 0
},
{
"min": 25,
"max": 50,
"count": 0
},
{
"min": 50,
"max": 75,
"count": 0
},
{
"min": 75,
"max": 100,
"count": 0
},
{
"min": 100,
"max": 250,
"count": 0
},
{
"min": 250,
"max": 500,
"count": 0
},
{
"min": 500,
"max": 750,
"count": 0
},
{
"min": 750,
"max": 1000,
"count": 0
},
{
"min": 1000,
"max": 2500,
"count": 0
},
{
"min": 2500,
"max": 5000,
"count": 0
},
{
"min": 5000,
"max": 7500,
"count": 0
},
{
"min": 7500,
"max": 10000,
"count": 0
},
{
"min": 10000,
"max": 3.4028234663852886e+38,
"count": 0
}
],
"count": 349
}
I would like to create a histogram/bar chart type visualization from the buckets field values. Something like this just in Kibana:
How can I do this in Kibana? Is there any way to do that?