北京SEO

Zabbix与RRDtool绘图篇之图形属性归档

2019/10/10/17:46:29  阅读:1666  来源:谷歌SEO算法  标签: 谷歌CEO

每台主机每张图的rrd文件已经创建好了,并且定时每分钟添加从ZabbixAPI取得的监控数据到rrd文件,接下来就得进行图形展示了,在图形 展示前需要将图形归类,不然请求一台主机的图形后还得扒开海量的监控图寻找相关的应用监控图(如nginx、php、redis等).

我按要求分了两大类主机硬件类和应用信息类,主机类主要展示主与机器相关的监控图如网络、硬盘、CPU负载、内存等,应用信息大类又细分为Nginx_PHP、MySQL、Redis等.

实现这些图形的分类第一步,数据库表的设计models.

  1. fromdjango.dbimportmodels,connection
  2. #Createyourmodelshere.
  3. #################################################
  4. classDrawTreeManager(models.Manager):
  5. defgetclass(self,sql):
  6. cursor=connection.cursor()
  7. cursor.execute(sql)
  8. returncursor.fetchall()
  9. classDrawTree(models.Model):
  10. classname=models.CharField(max_length=64)
  11. hostname=models.CharField(max_length=64)
  12. hostid=models.CharField(max_length=8)
  13. graphid=models.CharField(max_length=8)
  14. graphname=models.CharField(max_length=128)
  15. draw=models.CharField(max_length=2)
  16. type=models.CharField(max_length=2)
  17. objects=DrawTreeManager()
  18. def__unicode__(self):
  19. returnself.hostname
  20. ################################################
  21. classDrawGraphsManager(models.Manager):
  22. defgetdata(self,sql):
  23. cursor=connection.cursor()
  24. cursor.execute(sql)
  25. returncursor.fetchall()
  26. classDrawGraphs(models.Model):
  27. graphid=models.CharField(max_length=8)
  28. itemid=models.CharField(max_length=8)
  29. itemname=models.CharField(max_length=128)
  30. units=models.CharField(max_length=16,null=True,blank=True)
  31. objects=DrawGraphsManager()
  32. def__unicode__(self):
  33. returnself.graphid
  34. #################################################
  35. classDrawDefManager(models.Manager):
  36. defgetdata(self,sql):
  37. cursor=connection.cursor()
  38. cursor.execute(sql)
  39. returncursor.fetchall()
  40. classDrawDef(models.Model):
  41. graphid=models.CharField(max_length=8)
  42. cols=models.CharField(max_length=256,null=True,blank=True)
  43. types=models.CharField(max_length=256,null=True,blank=True)
  44. objects=DrawDefManager()
  45. def__unicode__(self):
  46. returnself.graphid

DrawGraphs表用来存放每张图的所需的信息图形id(graphid)、每张图形包含的item的id和item的名字(itemid、itemname),根据一个graphid时能够得到这张图形的所有itemid、itemname、unit(item的计数单位),itemid主要是用来冲rrd文件中取对应DS的数据(rrd文件中的DS名我是用的itemid),itemname主要显示图形下面布告牌最大值、最小值神马的,unit就是Y轴显示的单位了.

DrawTree表主要用来存放图形的层叠导航信息的,遍历所有的图形,根据图形名的关键字将每幅图归档,classname字段存放每组的组名,硬件数据的组名取Zabbix的默认分组,应用数据的分组是我自定义的分组如Nginx_PHP、Redis、MySQL等分组,hostname字段对应主机名、hostid对应主机id、graphname对应图形名、graphid对应图形id,draw对应图形是否显示的标志位(1显示、0不显示),type代表图形的分类(0代表硬件信息、1代表Nginx_PHP、2代表MySQL以此类推.

DrawDef表用来存放自定义图形显示所需的信息,graphid字段为需要自定义显示图形的图形id,cols代表需要自定义图形的颜色代码每种颜色用分号隔开,types对应需要自定义的绘图方法如线性(LINE1、LINE2、LINE3)、区块(AREA)等.

更新DrawTree与跟新DrawGraphs记录是同时进行的(为了精简代码和逻辑),views相关的代码是这样的:

  1. defzabbixindex(request):
  2. ifrequest.method=='GET':
  3. forkeyinrequest.GET:
  4. value=request.GET[key]
  5. break
  6. ifvalue=='check':
  7. zbx=Zabbix()
  8. groupinfo=zbx.group_get()
  9. hostsinfo=zbx.hostsid_get()
  10. forhostingroupinfo:
  11. groupid=host['groupid']
  12. groupname=host['groupname']
  13. hostid=host['hostid']
  14. hostname=''
  15. foriinhostsinfo:
  16. ifi.values()[0]==hostid:
  17. hostname=i.keys()[0]
  18. break
  19. hostgraphs=zbx.hostgraph_get(hostname)
  20. forgraphinhostgraphs:
  21. graphid=graph['graphid']
  22. graphname=graph['name']
  23. #不存在的图形才更新
  24. #图形展示分类
  25. flag=DrawTree.objects.filter(graphid=graphid)
  26. ifnotflag:
  27. #更新zabbixapp_drawtree表
  28. draw='1'
  29. if'PHP-FPM'ingraphnameor'Nginx'ingraphname:
  30. type='1'
  31. classname='Nginx_PHP'
  32. elif'MySQL'ingraphnameor'InnoDB'ingraphname:
  33. type='2'
  34. classname='MySQL'
  35. elif'Redis'ingraphname:
  36. type='3'
  37. classname='Redis'
  38. elif'Memcached'ingraphname:
  39. type='4'
  40. classname='Memcached'
  41. elif'MongoDB'ingraphname:
  42. type='5'
  43. classname='MongoDB'
  44. else:
  45. classname=groupname
  46. type='0'
  47. DrawTree.objects.create(classname=classname,hostname=hostname,hostid=hostid,graphid=graphid,graphname=graphname,
  48. draw=draw,type=type)
  49. #更新zabbixapp_drawgraphs表
  50. itemsinfo=zbx.graphitems_get(graphid)
  51. units=itemsinfo[0]['units']
  52. foriteminitemsinfo:
  53. itemid=item['itemid']
  54. itemname=item['name']
  55. DrawGraphs.objects.create(graphid=graphid,itemid=itemid,itemname=itemname,units=units)
  56. returnHttpResponseRedirect("/graph/zabbix/")
  57. #非get或post请求部分,tree
  58. ########################
  59. sql_0="selectdistinctclassnamefromzabbixapp_drawtreewheretype='0'"
  60. type_0=DrawTree.objects.getclass(sql_0)
  61. typelist0=[]
  62. foriintype_0:
  63. sql="selectdistincthostname,hostidfromzabbixapp_drawtreewhereclassname="+"'"+i[0]+"'"+"andtype='0'"
  64. chosts=DrawTree.objects.getclass(sql)
  65. tmplist=[]
  66. forchostinchosts:
  67. tmp={'hostname':chost[0],'hostid':chost[1]}
  68. tmplist.append(tmp)
  69. typelist0.append({'type':i[0].replace("",'-'),'host':tmplist})
  70. ########################
  71. sql_1="selectdistinctclassnamefromzabbixapp_drawtreewheretype!='0'"
  72. type_1=DrawTree.objects.getclass(sql_1)
  73. typelist1=[]
  74. foriintype_1:
  75. sql="selectdistincthostname,hostid,typefromzabbixapp_drawtreewhereclassname="+"'"+i[0]+"'"
  76. chosts=DrawTree.objects.getclass(sql)
  77. tmplist=[]
  78. forchostinchosts:
  79. tmp={'hostname':chost[0],'hostid':chost[1]}
  80. tmplist.append(tmp)
  81. typelist1.append({'type':i[0],'host':tmplist,'tflag':chost[2]})
  82. #value=typelist1--phpfensi.com
  83. avg={'privatetitle':'Zabbix监控数据展示','STATIC_URL':'/static','list0':typelist0,'list1':typelist1}
  84. returnrender_to_response('zabbixapp/zabbixindex.html',avg)

该视图函数渲染的模板zabbixindex.html写的比较简单,代码是这样的:

  1. {%extends"base.html"%}
  2. {%blocktitle%}{{privatetitle}}{%endblock%}
  3. {%blockthercss%}
  4. {%endblock%}
  5. {%blockotherjs%}
  6. {%endblock%}
  7. {%blockcontent%}
  8. <divclass="container">
  9. <divclass="row">
  10. <divclass="col-md-3">
  11. <buttontype="button"class="btnbtn-primaryactive">
  12. <spanclass="glyphiconglyphicon-tasks"></span> 硬件数据 </button>
  13. {%foriinlist0%}
  14. <div>
  15. <ahref="#{{i.type}}"data-toggle="collapse"><iclass="glyphiconglyphicon-hdd"></i>{{i.type}}</a>
  16. <ulid="{{i.type}}"class="collapse">
  17. {%fortmpini.host%}
  18. <li><atarget="draw"href="/graph/zbdraw/?type=0&hostid={{tmp.hostid}}">{{tmp.hostname}}</a></li>
  19. {%endfor%}
  20. </ul>
  21. </div>
  22. {%endfor%}
  23. <buttontype="button"class="btnbtn-primaryactive">
  24. <spanclass="glyphiconglyphicon-folder-open"></span> 应用数据 </button>
  25. {%foriinlist1%}
  26. <div>
  27. <ahref="#{{i.type}}"data-toggle="collapse"><iclass="glyphiconglyphicon-usd"></i>{{i.type}}</a>
  28. <ulid="{{i.type}}"class="collapse">
  29. {%fortmpini.host%}
  30. <li><atarget="draw"href="/graph/zbdraw/?type={{i.tflag}}&hostid={{tmp.hostid}}">{{tmp.hostname}}</a></li>
  31. {%endfor%}
  32. </ul>
  33. </div>
  34. {%endfor%}
  35. <p></p>
  36. <divalign="left">
  37. <ahref="/graph/zabbix/?action=check"class="btnbtn-info"role="button">新增图形检测</a>
  38. </div>
  39. </div>
  40. <scripttype="text/javascript">
  41. //iframe高度自适应
  42. functionautoHeight(){
  43. variframe=document.getElementById("draw");
  44. if(iframe.Document){//ie自有属性
  45. iframe.style.height=iframe.Document.documentElement.scrollHeight;
  46. }elseif(iframe.contentDocument){//ie,firefox,chrome,opera,safari
  47. iframe.height=iframe.contentDocument.body.offsetHeight;
  48. }
  49. }
  50. </script>
  51. <divclass="col-md-9">
  52. <iframename="draw"id="draw"frameborder="0"scrolling="no"style="width:99%;border:none"onload="autoHeight();"></iframe>
  53. </div>
  54. </div>
  55. </div>
  56. {%endblock%}

从ZabbixAPI取图形的各种属性值,经过适当的分类操作后将分类数据在本地落地,然后取落地后的分类数据将硬件和业务信息分类展示出来.

广告内容

Zabbix与RRDtool绘图篇之图形属性归档 Zabbix与RRDtool绘图篇之图形属性归档 Zabbix与RRDtool绘图篇之图形属性归档

相关阅读

热门评论

萧红SEO 萧红SEO

SEO爱好者,分享SEO经验~

总篇数212

精选文章

RMAN中catalog和nocatalog区别介绍 小技巧:为Linux下的文件分配多个权限 zimbra8.5.1安装第三方签名ssl证书的步骤 解决mysql不能远程连接数据库方法 windows服务器mysql增量备份批处理数据库 mysql中slow query log慢日志查询分析 JavaScript跨域问题总结 Linux下负载均衡软件LVS配置(VS/DR)教程 mysql中权限参数说明 MYSQL(错误1053)无法正常启动

SEO最新算法