美文网首页linux-基础服务监控
zabbix 从数据库查询数据的月度平均值指标

zabbix 从数据库查询数据的月度平均值指标

作者: 宇晨棒棒的 | 来源:发表于2021-02-03 09:54 被阅读0次

    1.通过hosts表查找host的ID

    select host,hostid from hosts where host='Zabbix server';

    +---------------+--------+

    | host          | hostid |

    +---------------+--------+

    | Zabbix server |  10084 |

    +---------------+--------+

    2.通过items表查找主的监控项和key以及itemid

    select itemid,name,key_ from items where hostid=10084 and key_='web_time';

    +--------+----------+----------+

    | itemid | name    | key_    |

    +--------+----------+----------+

    |  66786 | web_time | web_time |

    +--------+----------+----------+

    3.通过itemid查询主机的监控项目

    select avg(value)  from trends  where itemid=66786  and from_unixtime(clock)>= '2020-12-01'  and  from_unixtime(clock)< '2021-01-01' \G

    或者存在于

    select avg(value_avg) from zabbix.trends_uint where itemid=66720 and from_unixtime(clock)>= '2020-12-01' and from_unixtime(clock)< '2021-01-01' \G

    相关文章

      网友评论

        本文标题:zabbix 从数据库查询数据的月度平均值指标

        本文链接:https://www.haomeiwen.com/subject/rzsytltx.html