diff options
Diffstat (limited to 'contrib/check_mssql.sh')
| -rwxr-xr-x | contrib/check_mssql.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/check_mssql.sh b/contrib/check_mssql.sh index 048da720..7faa6bed 100755 --- a/contrib/check_mssql.sh +++ b/contrib/check_mssql.sh | |||
| @@ -10,6 +10,7 @@ | |||
| 10 | # | 10 | # |
| 11 | # Version 1.0. | 11 | # Version 1.0. |
| 12 | # Version 1.1: rewritten the initial script so that it not only works from the CLI but also from within Nagios. Always helpful... | 12 | # Version 1.1: rewritten the initial script so that it not only works from the CLI but also from within Nagios. Always helpful... |
| 13 | # Version 1.2: grouped output so things look a bit better. | ||
| 13 | # | 14 | # |
| 14 | # You might want to change these values: | 15 | # You might want to change these values: |
| 15 | 16 | ||
| @@ -21,6 +22,7 @@ mktempcmd=`which mktemp` | |||
| 21 | wccmd=`which wc` | 22 | wccmd=`which wc` |
| 22 | sedcmd=`which sed` | 23 | sedcmd=`which sed` |
| 23 | trcmd=`which tr` | 24 | trcmd=`which tr` |
| 25 | uniqcmd=`which uniq` | ||
| 24 | 26 | ||
| 25 | ################################################################################################################### | 27 | ################################################################################################################### |
| 26 | 28 | ||
| @@ -68,7 +70,7 @@ if [ ! -s $resultfile ]; then | |||
| 68 | exit 2; | 70 | exit 2; |
| 69 | else | 71 | else |
| 70 | nmbr=`$catcmd $resultfile | $grepcmd -v "\-\-\-\-\-" | $grepcmd -v "loginame" | $grepcmd -v "affected" | $sedcmd '/^$/d' | $sedcmd 's/ //g' | $wccmd -l | sed 's/ //g'`; | 72 | nmbr=`$catcmd $resultfile | $grepcmd -v "\-\-\-\-\-" | $grepcmd -v "loginame" | $grepcmd -v "affected" | $sedcmd '/^$/d' | $sedcmd 's/ //g' | $wccmd -l | sed 's/ //g'`; |
| 71 | users=`$catcmd $resultfile | $grepcmd -v "\-\-\-\-\-" | $grepcmd -v "loginame" | $grepcmd -v "affected" | $sedcmd '/^$/d' | $sedcmd 's/ //g' | $trcmd \\\n , | $sedcmd 's/,$/./g' | $sedcmd 's/,/, /g'`; | 73 | users=`$catcmd $resultfile | $grepcmd -v "\-\-\-\-\-" | $grepcmd -v "loginame" | $grepcmd -v "affected" | $sedcmd '/^$/d' | $sedcmd 's/ //g' | $uniqcmd -c | $trcmd \\\n , | $sedcmd 's/,$/./g' | $sedcmd 's/,/, /g' | $sedcmd 's/ //g' | $trcmd \\\t " "`; |
| 72 | $rmcmd -f $tmpfile $resultfile; | 74 | $rmcmd -f $tmpfile $resultfile; |
| 73 | echo "OK - MS SQL Server $srv has $nmbr user(s) connected: $users" | sed 's/: $/./g'; | 75 | echo "OK - MS SQL Server $srv has $nmbr user(s) connected: $users" | sed 's/: $/./g'; |
| 74 | exit 0; | 76 | exit 0; |
