Sponsored Content
Operating Systems Linux Red Hat CPU Usage statistics Dump in a text file over a period of time Post 302999800 by gull04 on Wednesday 28th of June 2017 06:00:42 AM
Old 06-28-2017
Hi,

It should be possible to collect the information the you require with the "sar" command as follows;

Code:
sar -u 1 3600 >> filename

Or
Code:
sar -u 1 3600 -o filename

You will have to look to the CPU load, as running sar will impose a load.

Regards

Gull04
 

10 More Discussions You Might Find Interesting

1. Programming

C/C++ library for CPU statistics

Hi all, This is my first post, so at the beginning I would like to be nice and say: "Hello all!" :) I am looking for a C/C++ library for Linux CPU statistics. All I found is that it is possible to parse two files: /proc/cpuinfo and /proc/stat to gain some needed information, but I would like to... (1 Reply)
Discussion started by: ebucka
1 Replies

2. HP-UX

how can I find cpu usage memory usage swap usage and logical volume usage

how can I find cpu usage memory usage swap usage and I want to know CPU usage above X% and contiue Y times and memory usage above X % and contiue Y times my final destination is monitor process logical volume usage above X % and number of Logical voluage above can I not to... (3 Replies)
Discussion started by: alert0919
3 Replies

3. Solaris

Multi CPU Solaris system shows 100% CPU usage.

Hello Friends, On one of my Solaris 10 box, CPU usage shows 100% using "sar", "vmstat". However, it has 4 CPUs and prstat and glance are not showing enough processes to justify high CPU utilization. ========================================================================= $ prstat -a ... (4 Replies)
Discussion started by: mahive
4 Replies

4. AIX

How to monitor the IBM AIX server for I/O usage,memory usage,CPU usage,network..?

How to monitor the IBM AIX server for I/O usage, memory usage, CPU usage, network usage, storage usage? (3 Replies)
Discussion started by: laknar
3 Replies

5. Shell Programming and Scripting

Searching the lines within a range of time period in a text file

Dear All, Please advice me, I have a text file with one field date and time like below given. I need to find out the lines whchi content the time stamp between Wed May 26 11:03:11 2010 and Wed May 26 11:03:52 2010 both can be included, using awk command which could be an interactive so that I... (6 Replies)
Discussion started by: chinmayadalai
6 Replies

6. UNIX for Dummies Questions & Answers

CPU and Memory Statistics Collection Across Many Servers

Hello geeks once again, many thanks for help in times past, you guys are awesome! But am here again, but now this is way heavy for me. Find below for my challenge: *** I need to collect CPU & RAM stats across 26 servers. *** I don't have the luxury of deploying an NMS, if I had it would... (3 Replies)
Discussion started by: infinitydon
3 Replies

7. AIX

Wait time shows high CPU usage

Hi, I can't seem to make sense of this. My wait time is showing really high but vmstat's and topas are showing normal usage. ps aux USER PID %CPU %MEM SZ RSS TTY STAT STIME TIME COMMAND root 9961810 5680.7 0.0 448 384 - A Dec 16 6703072:12 wait ... (2 Replies)
Discussion started by: techy1
2 Replies

8. Shell Programming and Scripting

Gathering usage statistics

so i have a script that runs across many servers. i'd like to know how many times this script is being used on each server. the only straight forward, non-intrusive way i can think of doing this is to include a line in the script to make a webcall to a central server. and from that central... (9 Replies)
Discussion started by: SkySmart
9 Replies

9. Linux

Ps command on cpu usage and time

Hi All, Am very new to Linux and unix ...need below help . need to list of process consuming more than 40% cpu and which are older than 10 days of a particular user .... Thanks V (4 Replies)
Discussion started by: venky456
4 Replies

10. Shell Programming and Scripting

Help with speeding up my working script to take less time - how to use more CPU usage for a script

Hello experts, we have input files with 700K lines each (one generated for every hour). and we need to convert them as below and move them to another directory once. Sample INPUT:- # cat test1 1559205600000,8474,NormalizedPortInfo,PctDiscards,0.0,Interface,BG-CTA-AX1.test.com,Vl111... (7 Replies)
Discussion started by: prvnrk
7 Replies
XtAppGetErrorDatabaseText()											       XtAppGetErrorDatabaseText()

Name
  XtAppGetErrorDatabaseText - get the text of a named message from the error database.

Synopsis
  void XtAppGetErrorDatabaseText(app_context, name, type, class, default, buffer_return, nbytes, database)
	 XtAppContext app_context;
	 String name, type, class;
	 String default;
	 String buffer_return;
	 int nbytes;
	 XrmDatabase database;

Inputs
  app_context
	    Specifies the application context.

  name	    Specifies the name or general kind of the message.

  type	    Specifies the type or detailed name of the message.

  class     Specifies the resource class of the error message.

  default   Specifies the default message to use if an error database entry is not found.

  nbytes    Specifies the size of buffer_return in bytes.

  database  Specifies the database to be used, or NULL if the application's database is to be used.

Outputs
  buffer_return
	    Specifies the buffer into which the error message is to be returned.

Description
  XtAppGetErrorDatabaseText()  looks  up the message named by name, type, and class in database or in the database returned by XtAppGetError-
  Database() for app_context if database is NULL.  If such a message is found, it is stored into  buffer_return,  otherwise  the  message  in
  default is stored into buffer_return.

  The  resource  name of the message is formed by concatenating name and type with a single "." between them.  The resource class of the mes-
  sage is class if it already contains a ".", or otherwise is formed by concatenating class with  itself  with	a  single  "."	 between  the
  strings.

Usage
  You should not need to call XtAppGetErrorDatabaseText() unless you are writing a customized high-level error or warning handler.

  Because the Intrinsics do not support the customization and internationalization of error messages very well, some applications may want to
  read a customized error database (found with XtResolvePathname() or named by an application resource, for example) and  provide  customized
  error and warning handlers that call XtAppGetErrorDatabaseText() specifying this custom database explicitly.

  While the X Toolkit specification permits individual error databases for each application context, most implementations will only support a
  single database.  In the MIT implementation, the error database file is /usr/lib/X11/XtErrorDB.

See Also
  XtAppGetErrorDatabase(1),
  XtErrorMsgHandler(2).

Xt - Error Handling												       XtAppGetErrorDatabaseText()
All times are GMT -4. The time now is 05:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy