I have a nested aggregation which returns data like:
"aggregations" : {
"builds" : {
"buckets" : [
{
"key" : 1610145879928,
"key_as_string" : "2021-01-08T22:44:39.928Z",
"total_duration_parent" : {
"total_duration_ms" : { "value" : 3515.0 }
}
},
{
"key" : 1610146149159,
"key_as_string" : "2021-01-08T22:49:09.159Z",
"total_duration_parent" : {
"total_duration_ms" : { "value" : 6206.0 }
}
},
{
"key" : 1610146149564,
"key_as_string" : "2021-01-08T22:49:09.564Z",
"total_duration_parent" : {
"total_duration_ms" : { "value" : 6714.0 }
}
},
Is it possible to use this aggregation output in a visualization to create a time-series line chart of the data?
question from:
https://stackoverflow.com/questions/65835870/in-kabana-can-you-create-a-line-chart-from-a-custom-aggregation 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…