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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error Reporting Utility

Status
Not open for further replies.

misn1day

Technical User
Jun 19, 2002
14
US
I am looking for a utility that can monitor the error reports on all of my AIX boxes. Does anyone know of a web based or similiar utility that can alert/keep track of errors from one central location? Kind of like what Big Brother does for disk space, memory, etc.
 
Hello,
IBM has service director and service agent when some hardware error and type perm happens you can get e mail. more info you can find on IBM website.
 
Without any tools, you can use errnotify class in odm, with a method sending a mail.
Try odmget errnotify to see the already defined objects.
Then odmadd to add a new method, like :
errnotify:
en_pid = 0
en_name = "myreport"
en_persistenceflg = 1
en_label = ""
en_crcid = 0
en_class = "H"
en_type = "PERM"
en_alertflg = ""
en_resource = ""
en_rtype = ""
en_rclass = ""
en_symptom = ""
en_err64 = ""
en_dup = ""
en_method = "/usr/lpp/diagnostics/bin/myscript $6 $9"
In that case your system will run the script "myscript" each time an "PERM" error on Hardware will be logged in your errorlog.
Use myscript to send a mail to system administrator.

Another thing : for monitoring FS space, network interface,.. you could use Netsaint ( a very efficient supervision tool running on AIX, Linux,...(freeware).
 
The one thing that I wanted to stay away from was having to set up mail on all of my systems. I was hoping there was a Netsaint (I am actually using Nagios) like application that could alert me of new messages in the error log. I am presently looking into setting up syslog and having the results send to a syslog server. I am however having problems with this. Someone, somewhere has had to develop something that makes the error log process easier. :) I will keep looking and I appreciate all the comments.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top