1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Merge pull request #1361 from quotengrote/quotengrote-patch-2

zfs_pool_dataset_count: Integers
This commit is contained in:
Kenyon Ralph 2023-04-10 09:29:56 -07:00 committed by GitHub
commit e5f366d3d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,7 +50,8 @@ if [ "$1" = "config" ]; then
echo 'graph_title zfs - pool, dataset and snapshot count' # Titelzeile
echo 'graph_vlabel count' # Text links, hochkant
echo 'graph_category fs' # Kategorie
echo 'graph_args -l 0' # wertebegrenzer 0-100
echo "graph_printf %6.0lf"
echo "graph_args -l 0 --base 1000"
exit 0
fi