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

Fix warning on btrfs_device_stats.

It's always those typos!
This commit is contained in:
HaseHarald 2021-04-04 14:23:26 +02:00 committed by Lars Kruse
parent a47b05ae11
commit a1e346bcb7

View file

@ -13,8 +13,8 @@ btrfs_device_stats - Script to monitor btrfs device statistics
Simply create a symlink in your plugins directory like with any other plugin.
Must be run as root.
[btrfs_device_stats]
user root
[btrfs_device_stats]
user root
=head2 DEFAULT CONFIGURATION
@ -22,7 +22,7 @@ Must be run as root.
=head1 AUTHOR
2019, HaseHarald
2019-2021, HaseHarald
=head1 MAGIC MARKERS
@ -88,18 +88,18 @@ def munin_config(fs):
print("graph_info This graph shows stats of devices used by btrfs")
print("corruption_errs.label Corruption Errors")
print("corruption_errs.warming 1")
print("corruption_errs.warning 1")
print("flush_errs.label Flush Errors")
print("flush_errs.warming 1")
print("flush_errs.warning 1")
print("generation_errs.label Generation Errors")
print("generation_errs.warming 1")
print("generation_errs.warning 1")
print("read_errs.label Read Errors")
print("read_errs.warming 1")
print("read_errs.warning 1")
print("write_errs.label Write Errors")
print("write_errs.warming 1")
print("write_errs.warning 1")
print("nr_items.label Nr. of Items")
print("flags.label Nr. of Flags")
print("flags.warming 1")
print("flags.warning 1")
print("")