-1

Is there some equivalent tool to pt-stalk to monitor server load instead of MySQL on Linux machine?

HTF
  • 3,050
  • 14
  • 49
  • 78
  • What, specifically, are you trying to monitor? "server load" is a vague term (it could mean something as simple as load average, or it could mean a multivariate analysis of your system's overall workload) – voretaq7 Jan 24 '14 at 18:20

1 Answers1

1

To my best knowledge no such tool exists for server level monitoring.

That being said it should not be hard to make one of yourself. For example you can use 'monit' which is lightweight monitoring tool with alarm on load and actions that should resolve this alarm.

What data to collect depends on your personal preferences but i would recommend:

  • dmesg | tail -n 1000
  • ps axwwww
  • vmstat 5 5
  • any relevant pieces of logs from your application
  • netstat -antp
  • ifconfig -a
  • df
  • maybe sar
  • maybe 30 sec of network trafic (e.g. tcpdump)
zeridon
  • 760
  • 3
  • 6