I'm using an active zabbix agent item to monitor a folder that generates several log files that get a random number in it's file name. I'm getting data and my trigger and alerts are working fine.
Item:
logrt["C:\Folder\Logs\Log.*[0-9]{1,3}","ERROR","UTF-8",100,skip,]
Trigger:
{HOST:logrt["C:\Folder\Logs\Log.*[0-9]{1,3}","ERROR","UTF-8",100,skip,].str(ERROR)}=1
Say there are 8 files in the Logs folder, how can I find out which one contains the error string?
Item:
logrt["C:\Folder\Logs\Log.*[0-9]{1,3}","ERROR","UTF-8",100,skip,]
Trigger:
{HOST:logrt["C:\Folder\Logs\Log.*[0-9]{1,3}","ERROR","UTF-8",100,skip,].str(ERROR)}=1
Say there are 8 files in the Logs folder, how can I find out which one contains the error string?
Comment