Saturday, March 30, 2019

linux - Server monitoring for medium scale UNIX network





I'm looking for suggestions for a good monitoring tools, or tools, to handle a mixed Linux (RedHat 4-5) and HPUX environment.



Currently we are using Hobbit which is working reasonably well but it is becoming harder to keep track of what alerts are sent out for what servers.



Features I'd like to see:





  1. Easy configuration of servers.

  2. The ability to monitor CPU, network, memory, and specific processes



I've looked into Nagios but from what I have seen it won't be easy to set up the configuration for all of our servers ~200 and that without installing a plugin into each agent I won't be able to monitor processes.


Answer



Set up SNMP on your servers, preferably via some configuration management tool like Puppet.



Then, use a monitoring tool like Zenoss Core to monitor them. Zenoss can scan a subnet for hosts, which makes it easy to add 200 servers, and you can group/organize the servers in various ways, to determine what exactly is monitored.




We're only monitoring a dozen devices so far, but Zenoss is very powerful yet user friendly. It has a friendly GUI, history graphs, alerts, etc.


No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...