Monitoring SO servers with SNMP or similar #7434
-
We want to be able to monitor our SO servers using our network and systems management platform so that we get alerted when something stops working. Our platform can use basic ping etc. tests to see if the host is up, but also allows for more comprehensive monitoring using SNMP. thanks Ross |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
Most folks monitor their Security Onion deployments using the included Grafana as it's already configured to monitor the most important health metrics: If you feel the need to monitor uptime externally you could certainly augment with the basic ping tests from your external system. |
Beta Was this translation helpful? Give feedback.
-
You have two steps. First is to install and configure snmpd (If you're monitoring other Linux based machines, you probably know how to do that. If not, you'll have to google it. It's fairly easy and a simple google should return some tutorials on it.
So, you've made a port group called snmpports, and added UDP 161 to that. Then you added a group called snmpgroup and added the IP of your polling machine to that group. The last step is to make add the entry into your minion.sls file, so the changes will be made to the firewall. In my minion.sls file, I added this:
I hope that helps. Like you, I'm just muddling my way through, but the people on here, especially the SO staff are usually very helpful and I can't speak highly enough of their company. |
Beta Was this translation helpful? Give feedback.
-
https://www.youtube.com/watch?v=8FmZ4MRe8Uk You don't need to actively monitor anything you can have Grafana send you an email if there is an issue. |
Beta Was this translation helpful? Give feedback.
Most folks monitor their Security Onion deployments using the included Grafana as it's already configured to monitor the most important health metrics:
https://docs.securityonion.net/en/2.3/grafana.html
If you feel the need to monitor uptime externally you could certainly augment with the basic ping tests from your external system.