zabbix报警 Lack of free swap space on zabbix
使用Zabbix监控一些云主机时,可能遇到:
Lack of free swap space on Zabbix server
使用命令:
free -m
看到:
Swap 的total,used,free值都是0。这是因为Zabbix没有考虑云主机用户。
处理步骤:
点击Template OS Linux找到触发器找到Lack of free swap space on {HOST.NAME}
点击Lack of free swap space on {HOST.NAME}
下面是英文步骤
Configuration->Templates->搜索:Template OS Linux->Triggers
选择 Lack of free swap space on {HOST.NAME}
修改Expression
{Template OS Linux:system.swap.size[,pfree].last(0)}<50
修改为
{Template OS Linux:system.swap.size[,pfree].last(0)}<50 and {Template OS Linux:system.swap.size[,free].last(0)}<>0
原文地址:https://blog.51cto.com/13645280/2366422
时间: 2024-11-08 23:52:24