b224fa620b
Add a few zfs related plugins [2] PR: 210494 [1] Submitted by: bcr [2] Reported by: Fabian Keil [1] Sponsored by: Absolight
25 lines
358 B
Bash
25 lines
358 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
|
|
set -e
|
|
set -u
|
|
|
|
cat <<'EOM'
|
|
graph_title ZFS deduplication ratio
|
|
graph_vlabel ratio
|
|
graph_category ZFS
|
|
graph_info This graph shows the ZFS pool deduplication ratio
|
|
EOM
|
|
|
|
listing=$(zpool get -H dedup)
|
|
|
|
while read -r label _ ratio _; do
|
|
echo "${label}.label ${label}"
|
|
echo "${label}.value ${ratio%x}"
|
|
done <<eot
|
|
${listing}
|
|
eot
|
|
|
|
exit 0
|
|
|