Sponsored Content
Full Discussion: Parsing of TOP output
Top Forums Shell Programming and Scripting Parsing of TOP output Post 302686407 by Corona688 on Tuesday 14th of August 2012 11:52:03 AM
Old 08-14-2012
top is an interactive program and its output may be full of escape sequences. Its output really isn't meant to be parsed or even saved.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

top output

Hi all, below is the output of my 'top' Tasks: 91 total, 2 running, 89 sleeping, 0 stopped, 0 zombie Cpu(s): 3.9% us, 20.5% sy, 0.0% ni, 75.6% id, 0.0% wa, 0.0% hi, 0.0% si Can someone tell me what does us, sy,ni,id,wa,hi,si stands stand for? (4 Replies)
Discussion started by: new2ss
4 Replies

2. UNIX for Dummies Questions & Answers

Merging the PS and TOP output

Hey guys, I'm trying to merge the output from the ps and top commands; since I need the full command used (only showed in the ps), and the cpu usage with some decimal numbers (i.e.: 0.05%, only showed in top). After exporting to different files, I was thinking of doing an egrep with the... (0 Replies)
Discussion started by: EnioMarques
0 Replies

3. Shell Programming and Scripting

capturing output from top and format output

Hi all, I'd like to capture the output from the 'top' command to monitor my CPU and Mem utilisation.Currently my command isecho date `top -b -n1 | grep -e Cpu -e Mem` I get the output in 3 separate lines.Tue Feb 24 15:00:03 Cpu(s): 3.4% us, 8.5% sy .. .. Mem: 1011480k total, 226928k used, ....... (4 Replies)
Discussion started by: new2ss
4 Replies

4. Shell Programming and Scripting

top output for six processes with the same name, output changed from column to row

Hi, I have a system under test, and I use a script that does a ps. The output, is in the following format, it's basically the timestamp, followed by the rss and vsize. 09:03:57 68404 183656 68312 181944 69860 217360 67536 182564 69072 183172 69032 199276 09:04:27 68752 183292 70000 189020... (5 Replies)
Discussion started by: Bloke
5 Replies

5. Solaris

Output top to file

Hi, I've installed SMCtop on to a Solaris 9 sparc server and I am trying to capture the output of top to a file without success. The version of top I have installed is top-3.6.1-sol9-sparc-local.gz. All my attempts are below. # /usr/local/bin/top -d 5 -f /tmp/top.out... (3 Replies)
Discussion started by: sparcman
3 Replies

6. Shell Programming and Scripting

Understanding the output of TOP

ok, so I have a script im running on a linux box that uses "egrep" a lot. now, when i run this script, i check the TOP to see how much system resource it is using. the "top" command gives the following output: last pid: 25384; load avg: 1.06, 1.04, 0.76; up 351+06:30:24 ... (0 Replies)
Discussion started by: SkySmart
0 Replies

7. Solaris

top output and swap -s output are differing

Solaris experts, Am struggling, and wondering for the past more than one week that, how to calculate the total available and used memory/swap space. Finally installed and used top & got some understanding, but while cross-checking, there are mismatches. Main Memory top o/p - 2GB... (7 Replies)
Discussion started by: thegeek
7 Replies

8. Shell Programming and Scripting

Parsing out the first (top) data lines of each category

Hi All, I need some help in parsing out the first (top) data lines of each category (categories are based on the first column a, b, c, d, e.( see example file below) from a big file a dfg 3 6 8 9 a fgh 5 7 0 9 a gkl 5 2 4 7 a glo 7 0 1 5 b ghj 9 0 4 2 b mkl 7 8 0 5 b jkl 9 0 4 5 c jkl 2... (1 Reply)
Discussion started by: Lucky Ali
1 Replies

9. Shell Programming and Scripting

Parsing the output from top

Guys can you help me fix this parse error. Here's my script. #!/bin/bash # Set up limit below NOTIFY="6.0% us 6.1% us 6.2% us 6.3% us 6.5% us 6.6% us 6.7% us 6.8% us 6.9% us 7.0% us" # CPU Usage every minute TOP="$(top -b -n2 -d 00.20 |grep Cpu|tail -1 | awk -F ":" '{ print $2 }' | cut... (3 Replies)
Discussion started by: redtred
3 Replies

10. Shell Programming and Scripting

how to format ssh top output

Hello; Am trying to generate runaway proc report using ssh thusly: =================== ssh -t -t $BOX 'TERMINAL="vt100" top -d1 -h -n 10' >> $FILE . . cat $FILE | mail -s "Latest Top `date`" $MAIL_TO ==================== But the output to e-mail comes out rather garbled .. Any ideas... (1 Reply)
Discussion started by: delphys
1 Replies
PMK.CONF(5)						      BSD File Formats Manual						       PMK.CONF(5)

NAME
pmk.conf -- premake configuration file DESCRIPTION
pmk.conf contains a series of assignements that are used by pmk(1) and created by pmksetup(8). DATA TYPES
These are common types used by pmk, see pmkfile(5) for a complete description. OPERATORS
= This operator makes the value dynamic, which means that it will be (re)assigned everytime you run pmksetup(8). For example: BIN_CC = "/usr/bin/cc" : This operator makes the value static, which means that if you want to regenerate the pmk.conf, the value will be kept and not dynami- cally assigned by pmksetup(8). For example: BIN_INSTALL:"/usr/local/bin/install" FAMILY CLASSES
Assignements can be classed in different families. AC_* Compatibility with autoconf. BIN_* This class is used for binary paths. HW_* Hardware related data like for example byte order or cpu features. PATH_* Specific paths family. OS_* System specific data. misc Some other data (such as PREFIX) cannot fit into previous families. AC CLASS
This class is providing some variables for GNU Autoconf compatibility: AC_ECHO_C Support for "c". AC_ECHO_N Support for " ". AC_ECHO_T Support for " ". BIN CLASS
This class is providing locations of various useful binaries such as ar, as, cc, cpp, ... HW CLASS
This class is giving some information about the host hardware. HW_BYTEORDER Provide the byte order of the host: 'BIG_ENDIAN' or 'LITTLE_ENDIAN'. HW_CPU_ARCH Identify the cpu architecture. We support actually the following architectures (with cpu identification for some of them): alpha HW_ALPHA_CPU_CLASS Cpu class (EV4, EV5 or EV6). HW_ALPHA_CPU_FEATURES Cpu features list (BWX, FIX, CIX, MVI, PAT and PMI) ia_64 HW_IA64_CPU_ARCHREV Cpu architecture revision number. HW_IA64_CPU_CLASS Cpu class ('Itanium' or 'Itanium2') HW_IA64_CPU_FAMILY Cpu family number. HW_IA64_CPU_FEATURES Cpu features list (LB, SD and AO). HW_IA64_CPU_MODEL Cpu model number. HW_IA64_CPU_REVISION Cpu revision number. HW_IA64_CPU_VENDOR Cpu vendor string. m68k No specific variables. parisc_64 No specific variables. ppc No specific variables. sparc_32 No specific variables. sparc_64 No specific variables. x86_32 HW_X86_CPU_CLASS Cpu family class (386, 486, 586, ...). HW_X86_CPU_EXTFAM Extended family number. HW_X86_CPU_EXTMOD Extended model number. HW_X86_CPU_FAMILY Cpu family number. HW_X86_CPU_FEATURES Cpu features list (FPU, VME, DE, PSE, TSC, ...). HW_X86_CPU_MODEL Cpu model number. HW_X86_CPU_STD_VENDOR Standardised cpu vendor ('INTEL', 'AMD', ...). HW_X86_CPU_VENDOR Cpu vendor string. x86_64 Same as x86_32 architecture. vax No specific variables. OS CLASS
This class is providing informations about the host's operating system: OS_ARCH Operating system architecture (warning: this is OS specific). OS_NAME Operating system name (warning: linux distributions return the kernel name). OS_VERSION Operating system version (warning: linux distributions return the kernel version). PATH CLASS
This class is providing path for binaries, headers and libraries. MISC CLASS
This class is regrouping what can not be classed elsewhere. PREFIX Prefix environnement variable. SYSCONFDIR System configuration directory. PC_PATH_LIB Library path for pmkpc or pkg_config. FILES
/etc/pmk/pmk.conf default pmk(1) configuration file EXAMPLES
A typical pmk.conf might appear as follows: # autoconf compatibility AC_ECHO_C = "c" AC_ECHO_N = "" AC_ECHO_T = "" # specific binaries BIN_AR = "/usr/bin/ar" BIN_AS = "/usr/bin/as" BIN_AWK = "/usr/bin/awk" BIN_CAT = "/bin/cat" BIN_CC = "/usr/bin/cc" BIN_CPP = "/usr/bin/cpp" BIN_CXX = "/usr/bin/c++" BIN_ECHO = "/bin/echo" BIN_EGREP = "/usr/bin/egrep" BIN_GREP = "/usr/bin/grep" BIN_ID = "/usr/bin/id" BIN_INSTALL = "/usr/bin/install" BIN_LEX = "/usr/bin/lex" BIN_LN = "/bin/ln" BIN_PKGCONFIG = "/usr/local/bin/pkg-config" BIN_RANLIB = "/usr/bin/ranlib" BIN_SH = "/bin/sh" BIN_STRIP = "/usr/bin/strip" BIN_SUDO = "/usr/bin/sudo" BIN_TAR = "/bin/tar" BIN_YACC = "/usr/bin/yacc" # architecture specific HW_BYTEORDER = "LITTLE_ENDIAN" HW_CPU_ARCH = "x86_32" HW_X86_CPU_CLASS = "i686" HW_X86_CPU_EXTFAM = "0" HW_X86_CPU_EXTMOD = "0" HW_X86_CPU_FAMILY = "15" HW_X86_CPU_FEATURES = "FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFL DTES ACPI MMX FXR SSE SSE2 HTT TM1 PBE FPU MON DSCPL EST TM2 CX16 ETPRD " HW_X86_CPU_MODEL = "2" HW_X86_CPU_STD_VENDOR = "INTEL" HW_X86_CPU_VENDOR = "GenuineIntel" # OS related OS_ARCH = "i386" OS_NAME = "OpenBSD" OS_VERSION = "3.6" # PATH related PATH_BIN = "/bin,/sbin,/usr/bin,/usr/sbin,/usr/X11R6/bin,/usr/local/sbin,/usr/local/bin" PATH_INC = "/usr/include" PATH_LIB = "/usr/lib" # misc PC_PATH_LIB = "$PREFIX/lib/pkgconfig" PREFIX = "/usr/local" SYSCONFDIR = "/etc" SEE ALSO
make(1), pmk(1), pmkscan(1), pmkfile(5), pmksetup(8) BSD
April 03, 2003 BSD
All times are GMT -4. The time now is 06:57 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy