Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

shell scripts for performance monitor

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
hi!all
i want some shell scripts which keeps on checking the various performance parametes like cpu utilization memory usage, disk space etc. and sends alert mail to adminstrator if the value of any parameters goes up to some specified value.
if anyone has such a script or knows where i can get that script kindly tell me as i know little of shell scripting.

kindly help...thanx in advance

regards,
Krishan
 
The easiest/best perf. monitoring scripts that I have used actually come with Solaris. Do a man on sar and sar(1m). (stands for System Activity Reporter) To enable the sar monitoring system, all you need to do is uncomment a few lines in the /etc/init.d/perf file, or setup a few cron jobs in the user sys's crontab file.

The enty I use in sys's crontab looks like this:
0,10,20,30,40,50 * * * * /usr/lib/sa/sa1

This basically makes the sadc command collect data to be used by sar every 10 minutes.

HTH
jason
 
yes but i want a script who can mail me about the activities going on there...
kindly let me know how u do it...

thank u for u r reply
 
Ahhh... I should have read your whole message.

We use a combination of Big Brother and the free version of Sun Management Center (basic version) for the functions that you are talking about. They may be a little overkill for what you are trying to look at, but both are relatively easy to setup and free.

Big Brother, for example, is set up to page/email us when:
a box is bounced,
monitored file systems reach a capacity above 90% full,
Veritas / Disk Suite has an issue,
etc...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top