Sponsored Content
Operating Systems AIX System monitoring with RMC/RSCT Post 302924847 by blackrageous on Wednesday 12th of November 2014 04:01:03 PM
Old 11-12-2014
You can use the AIX error subsystem and hook alerts or action routines; however, the downside of this method is that you have to modify all the lpars (note: the error log system does support central logging I think in the purescale environment...not sure).

What you is modify the errnotify odm in order to do this. You could create odm-add files and push this to each lpar.

Here is an example. You could of course have an action routine that sends a snmp trap to your event manager (most should support snmp traps).

ODM Error Notify Method - Mt Xia: Global System Administration: AIX

Note: the snmp dameon and smux peer for aix provide quite a bit of information. If your event monitor does support snmp you may want to startup the snmp daemon and smux to trap to your event monitor and setup it to query. To test this info, you can configure /etc/snmpd.conf and do an snmpinfo -m dump -c public from a machine or use a mib browser

Posted to the wrong thread. I meant to comment on Zaxon's message about the HMC and events. I agree with Baukin regarding snmp and RSCT. I think snmpv3 addresses security...not sure. I am currently taking a look. Traditionally community strings were transferred in clear text.

It seems the "value" of RSCT for ibm products now is that basic/cheap lowest level cluster communication it provides for products like the HMC, VIOS, CAA (cluster awareness built into AIX).

Security is Not My Problem....that's a good one! :-)

Last edited by blackrageous; 11-12-2014 at 05:28 PM..
 

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Monitoring system available time

Hi, I am new to Unix. I have an application which i need to monitor it for the available system time. If the system is down, i need to send an email notifying the downtime. Can someone provide a sample code or shell script to perform the above activity. Thanks (3 Replies)
Discussion started by: borncrazy
3 Replies

2. Programming

system monitoring api

Hi all, I am looking for api to get me system monitoring statictics every 5 minutes. I am looking at the following statistics: 1. System CPU Usage 2. Process CPU Usage 3. Process Memory Usage 4. I/O Usage for a certain disk. 5. Process I/O bytes/sec utilization. I have seen very... (4 Replies)
Discussion started by: uiqbal
4 Replies

3. AIX

Install fileset rsct.basic.rte

Hello! Please I need a help. AIX 5.2 5200-08 I don't have the fileset - rsct.basic.* installed and when I try to install from CD I have failure because some pre-requisists is necessary. In CD the version is rsct.basic.rte.2.3.1.0 and the pre-requisists is rsct.basic.rte.2.3.0.0. In... (6 Replies)
Discussion started by: clefeitosa
6 Replies

4. AIX

AIX system monitoring

Hi All, I am new to administration. can any one pls tell me how can i accomplish the follwoing task in AIX : 1.The overall %CPU used, the %CPU used of each CPU, the overall Real Memory in KB is used, the total Real Memory is installed in the host, the overall Virtual Memory in KB is... (2 Replies)
Discussion started by: panyam
2 Replies

5. Shell Programming and Scripting

system monitoring script

Hi, Does anyone have an example system monitoring script to monitor drives, memory, etc. Need a good example. Cheers Walnutpony (4 Replies)
Discussion started by: walnutpony123
4 Replies

6. Linux

Best Linux monitoring system

Hi all, I'm looking for the best tool to monitor the Linux system. I've found a lot of interesting tools searching the web but I didn't find one which can do all the requirments (like a one in all tool). I would prefer it to include a command line interface also. Thank you, Andreea (0 Replies)
Discussion started by: andreea9322
0 Replies

7. Infrastructure Monitoring

Best system monitoring for Linux

Hi all, I'm looking for the best tool to monitor the Linux system. I've found a lot of interesting tools searching the web but I didn't find one which can do all the requirments (like a one in all tool). I would prefer it to include a command line interface also. Thank you, Andreea (1 Reply)
Discussion started by: andreea9322
1 Replies

8. AIX

LPAR RMC state for DLPAR

Hello, I have checked the state of rmc on the HMC as below: HMC1:~> lssyscfg -r lpar -m Server-xxx -F lpar_id,state,rmc_state,rmc_ipaddr,os_version,dlpar_mem_capable,dlpar_proc_capable,dlpar_io_capable --filter "lpar_ids=4" 4,Running,inactive,10.176.x.x,VIOS 2.2.6.51,0,0,0 HMC1:~> lssyscfg... (2 Replies)
Discussion started by: Phat
2 Replies
LWP::Debug(3pm) 					User Contributed Perl Documentation					   LWP::Debug(3pm)

NAME
LWP::Debug - deprecated DESCRIPTION
LWP::Debug used to provide tracing facilities, but these are not used by LWP any more. The code in this module is kept around (undocumented) so that 3rd party code that happen to use the old interfaces continue to run. One useful feature that LWP::Debug provided (in an imprecise and troublesome way) was network traffic monitoring. The following section provide some hints about recommened replacements. Network traffic monitoring The best way to monitor the network traffic that LWP generates is to use an external TCP monitoring program. The Wireshark program (<http://www.wireshark.org/>) is higly recommended for this. Another approach it to use a debugging HTTP proxy server and make LWP direct all its traffic via this one. Call "$ua->proxy" to set it up and then just use LWP as before. For less precise monitoring needs just setting up a few simple handlers might do. The following example sets up handlers to dump the request and response objects that pass through LWP: use LWP::UserAgent; $ua = LWP::UserAgent->new; $ua->default_header('Accept-Encoding' => scalar HTTP::Message::decodable()); $ua->add_handler("request_send", sub { shift->dump; return }); $ua->add_handler("response_done", sub { shift->dump; return }); $ua->get("http://www.example.com"); SEE ALSO
LWP::UserAgent perl v5.14.2 2012-01-14 LWP::Debug(3pm)
All times are GMT -4. The time now is 12:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy