栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux

zabbix告警页面sql语句

Linux 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

zabbix告警页面sql语句

 zabbix告警列表的sql语句。

select b.priority bpriority,concat(f.groupid,'') as hstgrpId,concat(e.hostid,'') as hostid,e.name hostName,a.name errMsg from (  
		select * from problem p   
		where p.r_eventid is null and p.source =0 and p.object=0 and  p.severity in (3, 4, 5)   
		and NOT EXISTS (  
			select 1 FROM functions f,items i,hosts_groups hgg  
			left JOIN rights r ON r.id=hgg.groupid and r.groupid=13  
			WHERe p.objectid=f.triggerid  
			AND f.itemid=i.itemid  
			AND i.hostid=hgg.hostid  
			GROUP BY i.hostid  
			HAVINg MAX(permission) < 2  
			OR MIN(permission) IS NULL  
			OR MIN(permission)= 0 )  
		and not exists(  
			select 1 from acknowledges a WHERe p.eventid=a.eventid  )  
        order by p.name desc  
) a inner join  (  
		select * from triggers t   
		where not exists(  
			SELECt 1  
			FROM functions f,items i,hosts h   
			WHERe t.triggerid=f.triggerid AND f.itemid=i.itemid  
			AND i.hostid=h.hostid AND (i.status<>0 OR h.status<>0)  
		) and t.status= 0  
) b on b.triggerid = a.objectid  
inner join functions c on b.triggerid=c.triggerid  
inner join items d on c.itemid=d.itemid  
inner join hosts e on d.hostid=e.hostid  
inner join hosts_groups f on f.hostid=d.hostid  
where b.priority>=3

其中bpriority严重程度的枚举值:

      0  Not classified
      1  Information
      2  Warning
      3  Average
      4  High
      5  Disaster

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/460972.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号