Kibana histogram - drawing multiple series on a single chart

前端 未结 4 680
逝去的感伤
逝去的感伤 2021-01-18 04:18

I have an index in Elasticsearch which contains an array of simple objects (key-value please see example below).

The documents have a timestamp.

I can creat

4条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-18 05:10

    This is possible by running two queries, one to plot bytes_sent and one to plot bytes_received. Set the histogram to use the common "value" field. It looks like you may also need to split your data up as well so there's unique records that are timestamp,bytes_sent,value and timestamp,bytes_received,value.

    -Brent

提交回复
热议问题