Hello there,
i have a event log of Veeam, where i try to monitor event 190. My Problem is, that I have multiple Job which means that one job could fail, and because another one finishes with success, it will recover the state of the check to OK.
I figured out, that there are tags : 6 Tagging (zabbix.com)
What i did is, to create a regex that would find the Jobname in a line like "Bla bla bla 'Jobname' bla bla bla"
Then i added a marker to my trigger :
Name: Jobname
Value :{{ITEM.VALUE<N>}.regsub('(.*?)')}
But my tag doesn't seem to get added.
My idea is to change the state, only if the marker is the same on the failed and success event, which is the Jobname.
I think I misunderstood the documentation somewhere?
Can anybody explain how i can to that?
Thank you.
i have a event log of Veeam, where i try to monitor event 190. My Problem is, that I have multiple Job which means that one job could fail, and because another one finishes with success, it will recover the state of the check to OK.
I figured out, that there are tags : 6 Tagging (zabbix.com)
- Use information extracted from item value as tag value:
- Use an {{ITEM.VALUE<N>}.regsub()} macro in the tag value;
- See tag values in Monitoring → Problems as extracted data from the item value.
What i did is, to create a regex that would find the Jobname in a line like "Bla bla bla 'Jobname' bla bla bla"
Then i added a marker to my trigger :
Name: Jobname
Value :{{ITEM.VALUE<N>}.regsub('(.*?)')}
But my tag doesn't seem to get added.
My idea is to change the state, only if the marker is the same on the failed and success event, which is the Jobname.
I think I misunderstood the documentation somewhere?
Can anybody explain how i can to that?
Thank you.

Comment