Replies: 1 comment
-
Groups are ways to put monitors with specific alerters and loggers. Monitors can have a single group, and Loggers and Alerters can have multiple ones. If it's not specified, there's an implicit group called If you want to have a Logger work for all your Monitors despite some of them having groups, you can specify your Logger as being in the special group |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As I progress in my monitoring, I realized that the HTML dashboard was empty. After some debugging and scratching my head a lot I found out that when I add a default alerting group, it was used for logging.
Concretely, this is what I had in
monitor.ini
:In
monitors.ini
I was declaring a default group for alerting (at least in my imagination):The effect? No logging (alerting was fine).
save_results2()
was never called.I got rid of the groups (no groups and no defaults) and everything works.
Thus my question: gow does
group
work? What should I have there? Does it apply to both logging and alerting?Beta Was this translation helpful? Give feedback.
All reactions