[monitoring-plugins] Fix double percentage sign in usage (#1743)
GitHub
git at monitoring-plugins.org
Sun Jan 30 12:50:10 CET 2022
Module: monitoring-plugins
Branch: master
Commit: e781e0d1010b57da0e468cb7e9afb03860870218
Author: Lorenz <12514511+RincewindsHat at users.noreply.github.com>
Committer: GitHub <noreply at github.com>
Date: Sun Jan 30 12:44:02 2022 +0100
URL: https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=e781e0d
Fix double percentage sign in usage (#1743)
---
plugins/check_procs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/check_procs.c b/plugins/check_procs.c
index 4872340..a025ee8 100644
--- a/plugins/check_procs.c
+++ b/plugins/check_procs.c
@@ -775,7 +775,7 @@ be the total number of running processes\n\n"));
printf (" %s\n", "check_procs -w 50000 -c 100000 --metric=VSZ");
printf (" %s\n\n", _("Alert if VSZ of any processes over 50K or 100K"));
printf (" %s\n", "check_procs -w 10 -c 20 --metric=CPU");
- printf (" %s\n", _("Alert if CPU of any processes over 10%% or 20%%"));
+ printf (" %s\n", _("Alert if CPU of any processes over 10\% or 20\%"));
printf (UT_SUPPORT);
}
More information about the Commits
mailing list