%PDF- %PDF-
Direktori : /backups/router/usr/local/share/munin/plugins/ |
Current File : //backups/router/usr/local/share/munin/plugins/zpool_dedup |
#!/bin/sh 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