Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Top 5 cpu and Mem consuming process and files and suggestion for health check Post 303037101 by bakunin on Tuesday 23rd of July 2019 09:37:08 AM
Old 07-23-2019
Only recently i learned that NMON is available for Linux too (i used to use it on AIX systems only). It has an interactive mode but also a daemon mode and its output can be analysed with the "NMON Analyser". Both NMON and NMON Analyser is downladable freely.

I hope this helps.

bakunin
This User Gave Thanks to bakunin For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

need help to write script to check the process health and automatically restart it

I am working on a project, which need to constantly watch the process, and check its status, if it was dead, it should be restart automatically. Please kindly refer me to URL which teach how to write this kind of script, or service. Thanks. (1 Reply)
Discussion started by: dragondad
1 Replies

2. UNIX for Dummies Questions & Answers

how to get persistant cpu utilization values per process per cpu in linux (! top,ps)

hi, i want to know cpu utilizatiion per process per cpu..for single processor also if multicore in linux ..to use these values in shell script to kill processes exceeding cpu utilization.ps (pcpu) command does not give exact values..top does not give persistant values..psstat,vmstat..does njot... (3 Replies)
Discussion started by: pankajd
3 Replies

3. AIX

Command to find TOP 5 Memory consuming process

HI All, Can anyone send me a command to find TOP 5 Memory consuming process. It would be lelpful if I get output something like below processname - pid - memory(in MB) - command I tried few commands from the internet but the result only give the real memory usage or pagging, I want total... (4 Replies)
Discussion started by: bce_groups
4 Replies

4. Shell Programming and Scripting

Shell script to display top 5 process (per cpu consumption)

Hello, I have to create shell script being myself real novice in scripting... I was looking on the Internet for some script examples, but I don't have the basic understanding of the shell. I was trying to do something with “ps” command without success. For exemple total number of... (2 Replies)
Discussion started by: mr_awd
2 Replies

5. Shell Programming and Scripting

What is max MEM% in top command?

HI, When i use the top command in Linux I get the below values. PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND What is the maximum MEM% that will occur. I got once 303% . Is it possible to get such a high value. Regards, Ahamed. (2 Replies)
Discussion started by: ahamed
2 Replies

6. Shell Programming and Scripting

Warning in Top 10 cpu consuming processes

I m using following command to find top 10 cpu consuming processes. However whenever i execute the command i get following warning. What can be done to avoid it? # ps -auxf | sort -nr -k 3 | head -10 Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.7/FAQ root ... (6 Replies)
Discussion started by: pinga123
6 Replies

7. Shell Programming and Scripting

Discrepancy in finding the top memory consuming processes

When I run 'top' command,I see the following Memory: 32G real, 12G free, 96G swap free Though it shows as 12G free,I am not able to account for processes that consume the rest 20G. In my understanding some process should be consuming atleast 15-16 G but I am not able to find them. Is... (1 Reply)
Discussion started by: prasperl
1 Replies

8. Emergency UNIX and Linux Support

Can top show more than 100% in %MEM?

Can the %MEM value for a process show more than 100% in top output?Is this ever possible? (5 Replies)
Discussion started by: proactiveaditya
5 Replies

9. Solaris

Physical and Free mem on TOP command

Hi, When I run the free command on solaris, I get the following: "Memory: 60G phys mem, 69G free mem" Q: how cna the free mem be higher then the physical mem?:confused: Amit (3 Replies)
Discussion started by: amitlib
3 Replies

10. UNIX for Beginners Questions & Answers

Compare 2 files with different keywords : use server health-check tool

I have two files to be compared to get the output of the differences. File1 has a lot more lists than File2. After searching a lot on this thread I'am unable to find the exact code that im willing to get. This will be used as 'pre-check'/post-check utility (health check Tool) to compare... (1 Reply)
Discussion started by: GeekyJimmy
1 Replies
DlfAnalyserProcess(3pm) 				  LogReport's Lire Documentation				   DlfAnalyserProcess(3pm)

NAME
Lire::DlfAnalyseProcess - Object that controls the analysis process. SYNOPSIS
use Lire::DlfStore; use Lire::DlfAnalyserProcess; my $store = Lire::DlfStore->open( "store" ); my $process = new Lire::DlfAnalyserProcess( $store, $analyser_name, $analyser_config, $dlf_source ); $process->run_analysis_job(); print "DLF records created: ", $process->dlf_count(), " "; print "Errors encountered: ", $process->errors_count(), " "; DESCRIPTION
This object encapsulates the Lire DLF analysis process. It takes as a Lire::DlfStore, the name of the analyser, its configuration and optionally, a dlf_source ID. When a dlf_source is used, the analysis will only be done using the DLF coming from that source. The object provides the API to the converter. Methods are also available to query information on the conversion process. new( $store, $analyser_name, $analyser_config, [ $dlf_source ] ); Create a Lire::DlfAnalysisProcess. run_analysis_job() Import the log data from ImportJob as DLF. This method will throw an exception if it is called more than once. job_id() Returns the job identifier associated to this process. dlf_store() Returns the Lire::DlfStore in which this conversion process is storing the DLF records. dlf_source() Returns the source from which the DLF should come in the src_schema to be analysed. dlf_analyser() Returns the name of the analyser which will be run. dlf_analyser_config() Returns the analysis configuration data that should be used by the converter. dlf_count() Returns the number of DLF records created. error_count() Returns the number of errors encountered in the conversion process. source_filter() Returns a Lire::FilterExpr which should be used to limit the DLF records to analyse. This method returns null if the whole DLF stream should be analysed. API FOR THE DLF ANALYSERS
This is the object that encapsulates the DLF implementation and hides the complexitity of the storage framework from the DLF analysers. It offers the following methods to the DLf converter. write_dlf( $dlf, [$related_to] ) This writes the $dlf DLF record conforming the $schema's schema in the Lire::DlfStore. $Dlf is an hash reference. Keys are the schema's field name. Undefined value means that this field isn't available in that record. When writing to a derived schema, the $related_to parameter can be an arrayr reference containing the dlf_ids of the related record. error( $error_msg ); Method that should be used by the Lire::Analyser to report that an error was encountered during the analysis process. $error_msg should be used to report the nature of the error. SEE ALSO
Lire::DlfStore(3pm) Lire::DlfAnalyser(3pm) AUTHOR
Francis J. Lacoste <flacoste@logreport.org> VERSION
$Id: DlfAnalyserProcess.pm,v 1.10 2006/07/23 13:16:28 vanbaal Exp $ COPYRIGHT
Copyright (C) 2004 Stichting LogReport Foundation LogReport@LogReport.org This file is part of Lire. Lire is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program (see COPYING); if not, check with http://www.gnu.org/copyleft/gpl.html. Lire 2.1.1 2006-07-23 DlfAnalyserProcess(3pm)
All times are GMT -4. The time now is 09:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy