Hello everyone
I put a check on poller
is a simple control..is a grep on the file log ...
grep max_poll /app/bss/monitoring/log/check_poller.log
the result is: max_poll_time:+000000000 00:02:00.000000
This is the advanced version :-D
awk -F"[:.]" '/max_poll/{print $3 ":" $4}' /app/bss/monitoring/log/check_poller.log
the result is : 02:00
I have the following error on zabbix:
Type of received value [01:00] is not suitable for value type [Numeric (integer 64bit)]
He does not like the value
What can I do ??
thanks
I put a check on poller
is a simple control..is a grep on the file log ...
grep max_poll /app/bss/monitoring/log/check_poller.log
the result is: max_poll_time:+000000000 00:02:00.000000
This is the advanced version :-D
awk -F"[:.]" '/max_poll/{print $3 ":" $4}' /app/bss/monitoring/log/check_poller.log
the result is : 02:00
I have the following error on zabbix:
Type of received value [01:00] is not suitable for value type [Numeric (integer 64bit)]
He does not like the value
What can I do ??
thanks
Comment