The Artima Developer Community
Sponsored Link

Java Buzz Forum
Quick & Dirty Server Monitoring

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Nick Lothian

Posts: 397
Nickname: nicklothia
Registered: Jun, 2003

Nick Lothian is Java Developer & Team Leader
Quick & Dirty Server Monitoring Posted: Sep 23, 2007 6:12 PM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Nick Lothian.
Original Post: Quick & Dirty Server Monitoring
Feed Title: BadMagicNumber
Feed URL: http://feeds.feedburner.com/Badmagicnumber
Feed Description: Java, Development and Me
Latest Java Buzz Posts
Latest Java Buzz Posts by Nick Lothian
Latest Posts From BadMagicNumber

Advertisement
Sometimes it’s difficult to setup Nagios for server monitoring. This is what I do instead. Firstly, for load monitoring: #!/bin/bash FILENAME=< absolute path >/monitoring/logs/load-$(date +%Y%m%d).txt cat /proc/loadavg | awk ‘{print strftime(”%Y/%m/%d %H:%M:%S”, systime()), $1, $2, $3}’ >> $FILENAME Run it both from cron, and then I use another cron script and gnuplot to graph the output. genloadgraph.sh: DATE=$1 if [ -z $DATE [...]

Read: Quick & Dirty Server Monitoring

Topic: Lone Star Ruby Conf: The Community Angle from PeopleOverProcess.com Previous Topic   Next Topic Topic: Still Crazy After All These Years

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use