Max disk utilization | Hide Query Show Query #type=beat
| timechart(@host, limit=25, function=max(system.diskio.iostat.busy))
| Time Chart |
CPU usage per host |
Displays a list of average CPU usage per host and limits results
to the first 25 entries.
Hide Query Show Query #type=beat system.cpu.idle.pct=*
| used:=100*(1-system.cpu.idle.pct/system.cpu.cores)
| timechart(@host, limit=25, function=avg(used))
| Time Chart |
File system usage | Hide Query Show Query #type=beat
| metricset.name="filesystem"
| eval(unavailable=100-(100*system.filesystem.available/system.filesystem.total)) | timechart(@host, function=min(unavailable),limit=50)
| Time Chart |
Out of sync partitions | Hide Query Show Query #type = beat
| groupby(kafka.partition.id, function=selectLast([kafka.partition.partition.insync_replica]))
| kafka.partition.partition.insync_replica = false
| count()
| Gauge |
Load average | Hide Query Show Query #type=beat system.load.1=* | timechart(@host, function=avg(system.load.1, as=load), limit=30)
| Time Chart |
Messages per partition | Hide Query Show Query #type=beat event.dataset = kafka.partition kafka.partition.partition.is_leader=true
| messages_in_partition := kafka.partition.offset.newest - kafka.partition.offset.oldest
| timechart(kafka.partition.partition.id, limit=24, function=min(messages_in_partition))
| Event List |