Zabbix 自訂郵件發送指令碼(Python)

來源:互聯網
上載者:User

 1、Zabbix添加處理方法:管理——處理方法——create media type

650) this.width=650;" src="http://www.bkjia.com/uploads/allimg/131228/122H0C46-0.png" border="0" alt="" />

zabbix會傳給指令碼三個參數:接收使用者,郵件主題,郵件內容

 zabbix_sendmail.py

 
  1. #!/usr/bin/python 
  2. #coding:utf-8 
  3.  
  4.  
  5. import smtplib 
  6. from email.mime.text import MIMEText 
  7. import sys 
  8.  
  9. mail_host = 'smtp.163.com' 
  10. mail_user = 'username' 
  11. mail_pass = 'password' 
  12. mail_postfix = '163.com' 
  13.  
  14. def send_mail(to_list,subject,content): 
  15.     me = mail_user+"<"+mail_user+"@"+mail_postfix+">" 
  16.     msg = MIMEText(content) 
  17.     msg['Subject'] = subject 
  18.     msg['From'] = me 
  19.     msg['to'] = to_list 
  20.      
  21.     try: 
  22.         s = smtplib.SMTP() 
  23.         s.connect(mail_host) 
  24.         s.login(mail_user,mail_pass) 
  25.         s.sendmail(me,to_list,msg.as_string()) 
  26.         s.close() 
  27.         return True 
  28.     except Exception,e: 
  29.         print str(e) 
  30.         return False 
  31.      
  32. if __name__ == "__main__": 
  33.     send_mail(sys.argv[1], sys.argv[2], sys.argv[3]) 

2、添加觸發設定:系統配置——操作——create action

650) this.width=650;" src="http://www.bkjia.com/uploads/allimg/131228/122H062Y-1.png" border="0" alt="" />

 

650) this.width=650;" src="http://www.bkjia.com/uploads/allimg/131228/122H0C53-2.png" border="0" alt="" />

 

650) this.width=650;" src="http://www.bkjia.com/uploads/allimg/131228/122H04193-3.png" border="0" alt="" />

3、zabbix_server添加指令碼配置:

mkdir -p /usr/local/zabbix/scripts

把指令碼上傳到該目錄

修改zabbix_server.conf配置:

AlertScriptsPath=/usr/local/zabbix/scripts

然後重啟服務

配置完成,很簡單!~

 

 

本文出自 “營運筆記” 部落格,請務必保留此出處http://lihuipeng.blog.51cto.com/3064864/1066915

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.