Skip to content

Commit

Permalink
Merge pull request dennyzhang#4 from ecklm/master
Browse files Browse the repository at this point in the history
nagios_plugins: Fix false OKs on help text
  • Loading branch information
dennyzhang authored Jul 12, 2019
2 parents 9820927 + 0667902 commit 1d49865
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nagios_plugins/check_proc_cpu/check_proc_cpu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ else
echo "check_proc_cpu.sh -w 200 -c 400 --cmdpattern \"tomcat7.*java.*Dcom\""
echo ""
echo "Copyright (C) 2015 DennyZhang ([email protected])"
exit
exit 3
fi
## File - check_proc_cpu.sh ends
2 changes: 1 addition & 1 deletion nagios_plugins/check_proc_fd/check_proc_fd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ else
echo "check_proc_fd.sh -w 1024 -c 2048 --cmdpattern \"tomcat7.*java.*MaxPermSize\""
echo ""
echo "Copyright (C) 2014 DennyZhang ([email protected])"
exit
exit 3
fi
## File - check_proc_fd.sh ends
2 changes: 1 addition & 1 deletion nagios_plugins/check_proc_mem/check_proc_mem.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ else
echo "check_proc_mem.sh -w 1024 -c 2048 --cmdpattern \"tomcat7.*java.*Dcom\""
echo ""
echo "Copyright (C) 2014 DennyZhang ([email protected])"
exit
exit 3
fi
## File - check_proc_mem.sh ends
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ else
echo "check_proc_threadcount.sh -w 1024 -c 2048 --cmdpattern \"tomcat7.*java.*MaxPermSize\""
echo ""
echo "Copyright (C) 2017 DennyZhang ([email protected])"
exit
exit 3
fi
## File - check_proc_threadcount.sh ends

0 comments on commit 1d49865

Please sign in to comment.