From 13006f59e0aaccabf973893c5b0e1dc1168660be Mon Sep 17 00:00:00 2001 From: Pim van den Berg Date: Thu, 29 Jun 2017 19:53:46 +0200 Subject: plugins: rename libvirt -> virt The plugin was renamed in collectd 5.5.0. --- plugin/virt.json | 117 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 plugin/virt.json (limited to 'plugin/virt.json') diff --git a/plugin/virt.json b/plugin/virt.json new file mode 100644 index 0000000..9c1d1d0 --- /dev/null +++ b/plugin/virt.json @@ -0,0 +1,117 @@ +{ + "disk_octets": { + "title": "Disk Traffic ({{TI}}) on {{HOST}}", + "vertical": "Bytes per second", + "type": "io", + "legend": { + "read": { + "name": "Read", + "color": "0000ff" + }, + "write": { + "name": "Write", + "color": "00b000" + } + }, + "legend_format": "%5.1lf%s" + }, + "disk_ops": { + "title": "Disk Operations ({{TI}}) on {{HOST}}", + "vertical": "Ops per second", + "type": "io", + "legend": { + "read": { + "name": "Read", + "color": "0000ff" + }, + "write": { + "name": "Write", + "color": "00b000" + } + }, + "legend_format": "%5.1lf%s" + }, + "if_dropped": { + "title": "Interface Packets Dropped ({{TI}}) on {{HOST}}", + "vertical": "Packets/s", + "type": "io", + "legend": { + "rx": { + "name": "Receive", + "color": "0000ff" + }, + "tx": { + "name": "Transmit", + "color": "00b000" + } + }, + "legend_format": "%5.1lf%s" + }, + "if_errors": { + "title": "Interface Errors ({{TI}}) on {{HOST}}", + "vertical": "Errors/s", + "type": "io", + "legend": { + "rx": { + "name": "Receive", + "color": "0000ff" + }, + "tx": { + "name": "Transmit", + "color": "00b000" + } + }, + "legend_format": "%5.1lf%s" + }, + "if_octets": { + "title": "Interface Traffic ({{TI}}) on {{HOST}}", + "vertical": "{{ND}} per second", + "type": "io", + "legend": { + "rx": { + "name": "Receive", + "color": "0000ff" + }, + "tx": { + "name": "Transmit", + "color": "00b000" + } + }, + "legend_format": "%5.1lf%s", + "datasize": true + }, + "if_packets": { + "title": "Interface Packets ({{TI}}) on {{HOST}}", + "vertical": "Packets per second", + "type": "io", + "legend": { + "rx": { + "name": "Receive", + "color": "0000ff" + }, + "tx": { + "name": "Transmit", + "color": "00b000" + } + }, + "legend_format": "%5.1lf%s" + }, + "virt_cpu_total": { + "title": "CPU usage on {{HOST}}", + "vertical": "Milliseconds", + "legend": { + "value": { + "name": "CPU time", + "color": "0000ff" + } + }, + "legend_format": "%5.1lf", + "scale": 0.000001 + }, + "virt_vcpu": { + "title": "vCPU usage on {{HOST}}", + "vertical": "Milliseconds", + "legend_format": "%5.1lf", + "scale": 0.000001 + } +} -- cgit v1.1