Is there some equivalent tool to pt-stalk to monitor server load instead of MySQL on Linux machine?
Asked
Active
Viewed 201 times
1 Answers
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