Sponsored Content
Full Discussion: HP-UX Health Check
Operating Systems HP-UX HP-UX Health Check Post 302630007 by methyl on Wednesday 25th of April 2012 09:06:51 AM
Old 04-25-2012
Quote:
Forgot sar, really gettings old...
I totally disagree. Very useful and free.

Here's edited highlights of an incident earlier. User CPU% jumped from 7% to 29% and triggered an alert. Quick look with top and found a looping orphan process. Killed it.
Code:
sar -u    # Edited output

00:00:01    %usr    %sys    %wio   %idle
09:40:00       7      11       8      74
10:00:00       7      11       3      79
10:20:00       7      12       4      78
10:40:00      20      12      14      54
11:00:00      29      15       7      49
11:20:00      29      15       4      52
11:40:00       6      11       3      80
12:00:00       7      12       6      76

Can also analyse the various reports from sar for sizing reports.
 

9 More Discussions You Might Find Interesting

1. HP-UX

check health

Dear Gentelmen I need command for display to me the following statement: -battery state -The application if working or not -The cpu is working or not -The power supply is working or not -The Data base is workig or not (2 Replies)
Discussion started by: magasem
2 Replies

2. AIX

AIX Health Check

Hi All, I would like to know if there is a downloadable AIX health check script available from IBM that would print a report of a servers health status. I've been working on a number of Sun Solaris servers and Sun provide a sun checkup script which can give you an ORI figure as well as a list... (3 Replies)
Discussion started by: backslash
3 Replies

3. Solaris

sun server health check

do anybody has a procedure for daily weekley monthly health check for SUN server with solaris OS?? (5 Replies)
Discussion started by: mm00123
5 Replies

4. Shell Programming and Scripting

Health check script

Hi, I have a server type(A group of AIX,HP-UX and Linux servers running with different appn) in which i need to do health check(memory,cpu,h/w etc). I am planning to automate the same. Please help me out in writing the same. Thanks Renjesh Raju (9 Replies)
Discussion started by: Renjesh
9 Replies

5. AIX

AIX Health Check script

Hi Everyone, Can you please help me put together a aix health check script that will check the status of CPU,Memory,Adapter, Filesystems (threshold 80%) and Disks.Im thinking of deploying a script to gather the required data in all the 22 servers and probably send out a mail if anything needs... (3 Replies)
Discussion started by: R!C
3 Replies

6. Shell Programming and Scripting

Health check script

There are 3 servers . I want to fire commands df -kh and mpstat -P ALL on those individual servers and retrieve particular values to genrate reports. This part is almost done. But i am facing issue when i need to compile the reports from all three servers on to one server in order to generate a... (1 Reply)
Discussion started by: pratikm23
1 Replies

7. Shell Programming and Scripting

Script to check the health of a database

need a script to check the health of a session server database. It must read the data base and send an alert if the database is unavailable. If its unavailable, we will want to bring down the database listener to force failover. can u guyz help me in doing this. what information do i need... (1 Reply)
Discussion started by: remo999
1 Replies

8. Shell Programming and Scripting

Health check report

Hi Team, I am writing a small script in that I want collect all servers of /opt and /stage. Below is my small script #!/bin/ksh #checking Media server opt_Disk_Space_logs myclient=`cat media_server.txt` > opt_logs.txt printf " Server Name\tsize\tused\tavail\tcapacity\tMounted... (12 Replies)
Discussion started by: bashi77
12 Replies

9. AIX

AIX Health Check

Hi everyone, I am new to the Unix admin position, needed some help. My management wants to report how their over all AIX servers / environment is doing so far. I've been researching and found multiple commands to run on each LPAR, well I have few questions and also wanted to share the commands Im... (12 Replies)
Discussion started by: Adnans2k
12 Replies
sar(1)							    BSD General Commands Manual 						    sar(1)

NAME
sar -- system activity reporter SYNOPSIS
sar [-dgpu] [-n mode] [-o filename] t [n] sar [-dgpu] [-n mode] [-e time] [-f filename] [-i seconds] [-s time] DESCRIPTION
The sar command is used to sample and report various cumulative statistic counters maintained by the operating system. It can be invoked in two different ways. In the first usage instance, n samples are reported at t second intervals. If n is not specified, only one sample will be captured. When the -o option is specified, sar will write the binary sampling data to the output file specified by filename. In the second usage instance, there is no on-going sample interval to specify. This is because the sampling input comes from a previously recorded, binary activity file. The binary activity file can be specified using the -f filename option. When the -f option isn't used, sar attempts to open a default binary activity file, /var/log/sa/sadd, where dd represents the current day of the month. The starting and ending time of the report can be restricted using the -e and -s options. Here, the time field is specified in the form hh[:mm[:ss]]. Finally, the -i option can be used to select the sampling interval. Only records at least seconds apart will be reported. When the -i option is not used, all of the previously recorded interval samples are reported. Due to the nature of on-going sample collection, the data is reported in a verbose mode when more than one sampling option is specified. Column headers are printed at the beginning of the report; averages are printed when the sar command terminates. OPTIONS
The following options restrict the sample set that sar reports. -d Report disk activity. device The BSD name of the device. r+w/s The number of reads and writes per second. blks/s Number of blocks (in device's default blocksize) transferred to a device per second. -g Report page-out activity. pgout/s The number of pages paged out per second. -p Report page-in and page fault activity pgin/s The number of pages paged in per second. pflts/s The number of faults that caused a page to be copied in per second. vflts/s The number of times vm_fault routine has been called. -n mode Report network activity with modes DEV, EDEV, or PPP. Multiple network modes can be specified. DEV The DEV mode reports network device statistics. The following information is displayed for each interface. IFACE The network interface name. Ipkts/s The number of packets received per second. Ibytes/s The number of bytes received per second. Opkts/s The number of packets sent per second. Obytes/s The number of bytes sent per second. EDEV The EDEV mode reports network device error statistics. The following information is displayed for each interface. IFACE The interface name. Ierrs/s The input errors per second. Oerrs/s The output errors per second. Coll/s The collisions that occurred per second. Drops/s The number of dropped packets per second. PPP The PPP mode must be specified in order to display ppp connections in the network statistics. This will also turn on the PPP modify mode in sadc (8) when sampling data is not being read from a file. By default, both the collection and report- ing of ppp statistics is turned off. See sadc (8). -u Report CPU activity (default) %usr, %sys, and %idle These report the percentage of time running in user mode, system mode and idle. FILES
/var/log/sa/sadd Default daily activity file that holds the binary sampling data. dd are digits that represent the day of the month. SEE ALSO
fs_usage(1), netstat(1), sc_usage(1), top(1), vm_stat(1), iostat(8), sa1(8), sa2(8), sadc(8) Mac OS X Jul 25, 2003 Mac OS X
All times are GMT -4. The time now is 04:11 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy