Hello everyone.
I`m having some trouble with trigger with my Zabbix 5.0.
I create a item to check if the process is running in my CentOS like this:
So, I create a trigget to check if the process is running and only one process not more than 1.
-Trigger problem:
- Trigger OK:
This macros:
{$PROC_MIN_DASHMONITOR} = 1
{$PROC_MAX_DASHMONITOR} = 1
I want to check in the last 3 times if the process is running on One unique process.
Someone can help me?
I read the documentation in Zabbix Page but I don't figure out what I'm doing wrong.
I`m having some trouble with trigger with my Zabbix 5.0.
I create a item to check if the process is running in my CentOS like this:
Code:
proc.num[node,,,webserver.coffee]
-Trigger problem:
Code:
{Template_Teste: proc.num[node,,,webserver.coffee].count(#3)}<{$PROC_MIN_DASHMONITOR}
or {Template_Teste: proc.num[node,,,webserver.coffee].count(#3)}>{$PROC_MAX_DASHMONITOR}
Code:
{Template_Teste: proc.num[node,,,webserver.coffee].last(#1)}={$PROC_MIN_DASHMONITOR}
{$PROC_MIN_DASHMONITOR} = 1
{$PROC_MAX_DASHMONITOR} = 1
I want to check in the last 3 times if the process is running on One unique process.
Someone can help me?
I read the documentation in Zabbix Page but I don't figure out what I'm doing wrong.
Comment