notify_service_by_email.sh 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. #! /bin/bash
  2. #
  3. # Nagios service notification script.
  4. #
  5. # Copyright (C) 2012 Sebastian 'tokkee' Harl <sh@teamix.net>
  6. # and teamix GmbH, Nuernberg, Germany
  7. #
  8. # This file is part of "teamix Monitoring Plugins"
  9. # URL: http://oss.teamix.org/projects/monitoringplugins/
  10. #
  11. # This file is free software: you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published
  13. # by the Free Software Foundation, either version 2 of the License,
  14. # or (at your option) any later version.
  15. #
  16. # This file is distributed in the hope that it will be useful, but
  17. # WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. # GNU General Public License for more details.
  20. #
  21. # You should have received a copy of the GNU General Public License
  22. # along with this file. If not, see <http://www.gnu.org/licenses/>.
  23. #
  24. # Sample command line:
  25. # notify_service_by_email.sh -T '$NOTIFICATIONTYPE$' -H '$HOSTNAME$' \
  26. # -a '$HOSTALIAS$' -A '$HOSTADDRESS$' \
  27. # -S '$SERVICEDESC$' -s '$SERVICESTATE$' \
  28. # -o '$SERVICEOUTPUT$' -O '$LONGSERVICEOUTPUT$' \
  29. # -P '$SERVICEPERFDATA$' -D '$LONGDATETIME$' \
  30. # -E '$CONTACTEMAIL$'
  31. #
  32. NOTIFICATIONTYPE="UNKNOWN"
  33. HOSTNAME="unknown host"
  34. HOSTALIAS=""
  35. HOSTADDRESS=""
  36. SERVICEDESC="unknown service"
  37. SERVICESTATE="UNKNOWN"
  38. SERVICEOUTPUT=""
  39. LONGSERVICEOUTPUT=""
  40. SERVICEPERFDATA=""
  41. LONGDATETIME=`date`
  42. CONTACTEMAIL=""
  43. GETOPT=$( getopt -o T:H:a:A:S:s:o:O:P:D:E: \
  44. --long type,hostname,alias,address,service,state,output,longoutput,perfdata,datetime,email \
  45. -n 'notify_host_by_email' -- "$@" )
  46. if test $? -ne 0; then
  47. echo 'Failed to parse command line options!' >&2
  48. exit 1
  49. fi
  50. eval set -- "$GETOPT"
  51. while true; do
  52. case "$1" in
  53. -T|--type)
  54. NOTIFICATIONTYPE="$2"
  55. shift 2
  56. ;;
  57. -H|--hostname)
  58. HOSTNAME="$2"
  59. shift 2
  60. ;;
  61. -a|--alias)
  62. HOSTALIAS="$2"
  63. shift 2
  64. ;;
  65. -A|--address)
  66. HOSTADDRESS="$2"
  67. shift 2
  68. ;;
  69. -S|--service)
  70. SERVICEDESC="$2"
  71. shift 2
  72. ;;
  73. -s|--state)
  74. SERVICESTATE="$2"
  75. shift 2
  76. ;;
  77. -o|--output)
  78. SERVICEOUTPUT="$2"
  79. shift 2
  80. ;;
  81. -O|--longoutput)
  82. LONGSERVICEOUTPUT="$2"
  83. shift 2
  84. ;;
  85. -P|--perfdata)
  86. SERVICEPERFDATA="$2"
  87. shift 2
  88. ;;
  89. -D|--datetime)
  90. LONGDATETIME="$2"
  91. shift 2
  92. ;;
  93. -E|--email)
  94. CONTACTEMAIL="$2"
  95. shift 2
  96. ;;
  97. --)
  98. shift
  99. break
  100. ;;
  101. esac
  102. done
  103. if test -z "$CONTACTEMAIL"; then
  104. echo 'Missing contact email!' >&2
  105. exit 1
  106. fi
  107. EMAIL=$( mktemp -t )
  108. trap "rm -f $EMAIL" EXIT
  109. function email_append() {
  110. /usr/bin/printf "%b" "$@" "\n" >> $EMAIL
  111. }
  112. cat <<EOF > $EMAIL
  113. ***** Nagios *****
  114. Notification Type: $NOTIFICATIONTYPE
  115. Service: $SERVICEDESC
  116. Host: $HOSTNAME ($HOSTALIAS)
  117. EOF
  118. if test -n "$HOSTADDRESS"; then
  119. email_append "Address: $HOSTADDRESS"
  120. fi
  121. email_append "State: $SERVICESTATE"
  122. if test -n "$SERVICEOUTPUT"; then
  123. email_append "Info: $SERVICEOUTPUT"
  124. fi
  125. email_append ""
  126. email_append "Date/Time: $LONGDATETIME"
  127. if test -n "$LONGSERVICEOUTPUT"; then
  128. email_append ""
  129. email_append "Additional Info:"
  130. email_append ""
  131. email_append "$LONGSERVICEOUTPUT"
  132. fi
  133. if test -n "$SERVICEPERFDATA"; then
  134. email_append ""
  135. email_append "Performance Data:"
  136. email_append ""
  137. email_append "$SERVICEPERFDATA"
  138. fi
  139. cat $EMAIL | /usr/bin/mail -s "** $NOTIFICATIONTYPE Service Alert: $HOSTNAME/$SERVICEDESC is $SERVICESTATE **" $CONTACTEMAIL