我想创建一个箱形图,以显示某些REST端点的执行时间如何在某个时间段内分配。我想有很多箱子,例如一个箱子要用10分钟。
我每3秒推送一次有关REST端点的信息。这是此类数据的示例。有关/ books端点的示例信息。时间段内的总调用次数(3s),平均执行时间等。
{
"_index": "metrics-2018-09",
"_type": "doc",
"_id": "LBIqIWYBcLDRF6t2O8JR",
"_version": 1,
"_score": null,
"_source": {
"@timestamp": "2018-09-28T17:11:47.751Z",
"name": "http_server_requests",
"type": "timer",
"exception": "None",
"method": "GET",
"status": "200",
"uri": "/books",
"count": 0,
"sum": 0,
"mean": 0,
"max": 0
},
"fields": {
"@timestamp": [
"2018-09-28T17:11:47.751Z"
]
},
"highlight": {
"uri": [
"/@kibana-highlighted-field@books@/kibana-highlighted-field@"
]
},
"sort": [
1538154707751
]
}
如何为其创建箱形图?
当我尝试键入“ mark”时:“ boxplot” Kibana说:“无效的标记类型” boxplot“”
答案 0 :(得分:0)
我从elastic stack discuss那里得到了答案
箱形图标记已作为vega-lite 3.0的一部分添加,我们目前正在Kibana中运行版本2.4。