Shrew
Apr 18, 2023Nimbostratus
iRule periodic logging
Hello,
I would like to use periodical logging using iRule.
Everything is working fine for me when just one session is opened using following simple iRule.
when CLIENT_ACCEPTED {
after 10000 -periodic { log local0. "Time!!!" }
}
However when second session starts, second timer starts as well so I have double logging and so on with third session....
Is it possible somehow to have just one timer across all the sessions to use periodic logging just once?