I have separate 10 urls running with ten separate ip addresses. If we do an apache bounce on the server, I did not want to get ten separate pages, so I tried to consolidate all of the checks into one trigger. For example:
({host:check_service[http,ip,port].last(0)}=0)|
({host:check_service[http,ip,port].last(0)}=0)|
...
...
...
...
ten lines of this with the last line excluding the trailing '|' or symbol.
When trying to run this, I get an error in the server log that states:
Expression ...<data>.... cannot be evaluated.
I lessen the length down all the way to only 6 expressions and it works. Any more than six, kicks out this error.
Are there limitations to how many expressions can be placed within a trigger?
Thanks
({host:check_service[http,ip,port].last(0)}=0)|
({host:check_service[http,ip,port].last(0)}=0)|
...
...
...
...
ten lines of this with the last line excluding the trailing '|' or symbol.
When trying to run this, I get an error in the server log that states:
Expression ...<data>.... cannot be evaluated.
I lessen the length down all the way to only 6 expressions and it works. Any more than six, kicks out this error.
Are there limitations to how many expressions can be placed within a trigger?
Thanks

Comment