[monitoring-plugins] check_nt.c - Changed 'Mb' to 'MB' in MEMUSE.
Jan Wagner
git at monitoring-plugins.org
Sat Jun 28 22:30:08 CEST 2014
Module: monitoring-plugins
Branch: master
Commit: 6e12805fa4fab1ee6109527313e56a4756bb3363
Author: abrist <abrist at nagios.com>
Committer: Jan Wagner <waja at cyconet.org>
Date: Mon May 19 15:47:35 2014 -0400
URL: https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=6e12805
check_nt.c - Changed 'Mb' to 'MB' in MEMUSE.
---
plugins/check_nt.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/plugins/check_nt.c b/plugins/check_nt.c
index cacf665..fefbfb7 100644
--- a/plugins/check_nt.c
+++ b/plugins/check_nt.c
@@ -293,10 +293,10 @@ int main(int argc, char **argv){
/* Divisor should be 1048567, not 3044515, as we are measuring "Commit Charge" here,
which equals RAM + Pagefiles. */
- xasprintf(&output_message,_("Memory usage: total:%.2f Mb - used: %.2f Mb (%.0f%%) - free: %.2f Mb (%.0f%%)"),
+ xasprintf(&output_message,_("Memory usage: total:%.2f MB - used: %.2f MB (%.0f%%) - free: %.2f MB (%.0f%%)"),
mem_commitLimit / 1048567, mem_commitByte / 1048567, percent_used_space,
(mem_commitLimit - mem_commitByte) / 1048567, (mem_commitLimit - mem_commitByte) / mem_commitLimit * 100);
- xasprintf(&perfdata,_("'Memory usage'=%.2fMb;%.2f;%.2f;0.00;%.2f"), mem_commitByte / 1048567,
+ xasprintf(&perfdata,_("'Memory usage'=%.2fMB;%.2f;%.2f;0.00;%.2f"), mem_commitByte / 1048567,
warning_used_space / 1048567, critical_used_space / 1048567, mem_commitLimit / 1048567);
return_code=STATE_OK;
More information about the Commits
mailing list