source: noc/nagios/status-user/finger.sh @ 1098

Last change on this file since 1098 was 1098, checked in by quentin, 15 years ago
Add scripts@syn
  • Property svn:executable set to *
File size: 1.5 KB
Line 
1#!/bin/bash
2
3docnagios() {
4        echo q | env TERM=ansi LINES=1000 COLUMNS=80 /usr/local/nagios/bin/cnagios -b "$@" | sed 's/
5\[B/\n/g; s/
6/\n/g' | perl -pe '
7s/^.*(?=sipb-nagios)//; # remove garbage at beginning
8s/(.)\\[(\d+)b/$1x($2+1)/ge; # (\d+)b means repeat previous character n times
9s/\\[(\d+)d//g; # absolute go to line; ignored
101 while s/\\[(\d+)G/" "x($1-$-[0]-1)/e; # go to absolute horizontal position
111 while s/\\[\d+;(\d+)H/" "x($1-$-[0]-1)/e; # go to absolute position; line ignored
12'
13}
14
15gethostgroups() {
16    cat /etc/nagios3/*.cfg | perl -ne 'print if ( /^(\s*)define hostgroup [\{[]/ ... /[\}\]]/ )' | perl -ne 'm|hostgroup_name\s+(\S+)| and $name = $1; m|members\s+(.+)\s*$| and $members = $1; m|\}| and print "$name\t$members\n"'
17}
18
19gethgmembers() {
20    gethostgroups | grep "^$1\t" | cut -f 2 -d "        " | sed 's/,/\n/g' | perl -pe 's/\n/|/g' | sed 's/|$//'
21}
22
23read line
24case "$line" in
25    status*)
26        docnagios
27        ;;
28    broken*)
29        docnagios -l w
30        ;;
31    load*)
32        docnagios -g /LOAD/
33        ;;
34    scripts*)
35        docnagios -g "/$(gethgmembers "scripts.*")/"
36        ;;
37    xvm*)
38        docnagios -g "/$(gethgmembers "xvm.*")/"
39        ;;
40    *)
41        cat <<EOF
42Available information:
43finger status@sipb-noc -- all services
44finger broken@sipb-noc -- services that are not OKAY
45finger load@sipb-noc   -- all LOAD services
46finger scripts@sipb-noc-- all scripts services
47finger xvm@sipb-noc    -- only XVM servers
48EOF
49     
50        ;;
51esac
52#s/\\[\d*[a-zA-Z]//g'
53#perl -pe 's/^.*?\[H //s; s/.\[\d+;1H/\n/g; s/^\s+//mg;'
54
55# s/^\s+$//mg; s/Command: .*//s; s/$/\[0m/'
Note: See TracBrowser for help on using the repository browser.