免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 5776 | 回复: 7
打印 上一主题 下一主题

有个zabbix抓取图片脚本需要各位大神帮忙看下了 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-07-22 14:21 |只看该作者 |倒序浏览
20可用积分
本帖最后由 610302547 于 2014-07-22 14:25 编辑

下面这个脚本是从网上找的.

功能就是从网页和数据库中获取screen上显示的服务器性能监控图, 然后通过邮件形式发送到我的邮箱中.

而我现在想要的是获取到的图片能不能导入到PDF文档中, 谢谢! 因为不懂Python, 所以麻烦cu上的大神了.
  1. #! /usr/bin/env python
  2. #coding=utf-8
  3. # Andy_f
  4. import time,os
  5. import urllib
  6. import urllib2
  7. import cookielib
  8. import MySQLdb
  9. import smtplib
  10. from email.mime.text import MIMEText

  11. screens = ["zabbix"]
  12. #
  13. save_graph_path = "/opt/httpd-2.4.3/htdocs/reports/%s"%time.strftime("%Y-%m-%d")
  14. if not os.path.exists(save_graph_path):
  15.     os.makedirs(save_graph_path)
  16. # zabbix host
  17. zabbix_host = "192.168.2.1"
  18. # zabbix login username
  19. username = "admin"
  20. # zabbix login password
  21. password = "password"
  22. # graph width
  23. width = 600
  24. # graph height
  25. height = 100
  26. # graph Time period, s
  27. period = 86400
  28. # zabbix DB
  29. dbhost = "192.168.2.1"
  30. dbport = 3306
  31. dbuser = "zabbix"
  32. dbpasswd = "zabbix"
  33. dbname = "zabbix"
  34. # mail
  35. to_list = ["wangshuai@163.com"]
  36. smtp_server = "mail.163.com"
  37. mail_user = "zabbix@163.com"
  38. mail_pass = "password"
  39. domain  = "163.com

  40. def mysql_query(sql):
  41.     try:
  42.         conn = MySQLdb.connect(host=dbhost,user=dbuser,passwd=dbpasswd,port=dbport,connect_timeout=20)
  43.         conn.select_db(dbname)
  44.         cur = conn.cursor()
  45.         count = cur.execute(sql)
  46.         if count == 0:
  47.             result = 0
  48.         else:
  49.             result = cur.fetchall()
  50.         return result
  51.         cur.close()
  52.         conn.close()
  53.     except MySQLdb.Error,e:
  54.         print "mysql error:" ,e

  55. def get_graph(zabbix_host,username,password,screen,width,height,period,save_graph_path):
  56.     screenid_list = []
  57.     global html
  58.     html = ''
  59.     for i in mysql_query("select screenid from screens where name='%s'"%(screen)):
  60.                 for screenid in i:
  61.                     graphid_list = []
  62.                     for c in mysql_query("select resourceid from screens_items where screenid='%s'"%(int(screenid))):
  63.                         for d in c:
  64.                             graphid_list.append(int(d))
  65.                     for graphid in graphid_list:
  66.                         login_opt = urllib.urlencode({
  67.                         "name": username,
  68.                         "password": password,
  69.                         "autologin": 1,
  70.                         "enter": "Sign in"})
  71.                         get_graph_opt = urllib.urlencode({
  72.                         "graphid": graphid,
  73.                         "screenid": screenid,
  74.                         "width": width,
  75.                         "height": height,
  76.                         "period": period})
  77.                         cj = cookielib.CookieJar()
  78.                         opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
  79.                         login_url = r"http://%s/index.php"%zabbix_host
  80.                         save_graph_url = r"http://%s/chart2.php"%zabbix_host
  81.                         opener.open(login_url,login_opt).read()
  82.                         data = opener.open(save_graph_url,get_graph_opt).read()
  83.                         filename = "%s/%s.%s.png"%(save_graph_path,screenid,graphid)
  84.                         html += '<img width="600" height="250" src="http://%s/%s/%s/%s.%s.png">'%(zabbix_host,save_graph_path.split("/")[len(save_graph_path.split("/"))-2],save_graph_path.split("/")[len(save_graph_path.split("/"))-1],screenid,graphid)
  85.                         f = open(filename,"wb")
  86.                         f.write(data)
  87.                         f.close()



  88. def send_mail(username,password,smtp_server,to_list,sub,content):
  89.     print to_list
  90.     me = "monitor"+"<"+username+">"
  91.     msg = MIMEText(content,_subtype="html",_charset="utf8")
  92.     msg["Subject"] = sub
  93.     msg["From"] = me
  94.     msg["To"] = ";".join(to_list)
  95.     try:
  96.         server = smtplib.SMTP()
  97.         server.connect(smtp_server)
  98.         server.login(username,password)
  99.         server.sendmail(me,to_list,msg.as_string())
  100.         server.close()
  101.         print "send mail Ok!"
  102.     except Exception, e:
  103.         print e

  104. if __name__ == '__main__':
  105.     for screen in screens:
  106.         get_graph(zabbix_host,username,password,screen,width,height,period,save_graph_path)
  107.     send_mail(mail_user,mail_pass,smtp_server,to_list,"PROD Server Performance Report",html)
复制代码

论坛徽章:
0
2 [报告]
发表于 2014-07-22 15:31 |只看该作者

论坛徽章:
4
白羊座
日期:2013-11-05 10:26:09冥斗士
日期:2015-11-17 14:19:55白银圣斗士
日期:2015-11-17 15:13:0815-16赛季CBA联赛之新疆
日期:2016-04-01 09:10:58
3 [报告]
发表于 2014-07-22 16:07 |只看该作者
回复 2# 610302547
下面的代码可以把jpg文件保存成pdf
  1. import PIL
  2. pic = PIL.Image.open("test.jpg")
  3. with open("test.pdf", "w") as fh:
  4.     pic.save(fh, "PDF")
复制代码

论坛徽章:
0
4 [报告]
发表于 2014-07-23 11:43 |只看该作者
icymirror 发表于 2014-07-22 16:07
回复 2# 610302547
下面的代码可以把jpg文件保存成pdf


谢谢, 因为没有学习过python, 所以你说的不大懂. 不过我这边有几十张图片怎么让他们按照一定格式显示在PDF里面呢?

能否给下完整的代码?

非常感谢!

论坛徽章:
0
5 [报告]
发表于 2014-07-23 13:13 |只看该作者
请问楼主的qq是多少?我也正在研究这个问题,咨询一个问题,谢谢哈

论坛徽章:
0
6 [报告]
发表于 2014-07-23 13:15 |只看该作者
回复 4# 610302547



我的qq68154866
我的脚本报这个错误,请问楼主这个是什么问题?
[root@localhost script]# python get_screen.py
mysql error: (1130, "Host '192.168.160.199' is not allowed to connect to this MySQL server"
Traceback (most recent call last):
  File "get_screen.py", line 115, in ?
    get_graph(zabbix_host,username,password,screen,width,height,period,save_graph_path)
  File "get_screen.py", line 64, in get_graph
    for i in mysql_query("select screenid from screens where name='%s'"%(screen)):
TypeError: iteration over non-sequence

   

论坛徽章:
0
7 [报告]
发表于 2014-07-23 14:41 |只看该作者
回复 6# fireweb


   
hi,

已经加你QQ. 谢谢!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP