Sponsored Content
Top Forums Shell Programming and Scripting Alert When a Process Exceeds a CPU Utilization Limit... Post 302121764 by sysgate on Monday 18th of June 2007 08:45:24 AM
Old 06-18-2007
 

10 More Discussions You Might Find Interesting

1. AIX

cpu utilization of a process

Hi, How can i find out the average cpu utilization of a particular long-running process in AIX? is there some command for this Thanks (2 Replies)
Discussion started by: iam
2 Replies

2. Shell Programming and Scripting

Memory and CPU utilization process

Hi, I need to check which process in linux is taking high memory and which process is taking high cpu usage. Regards, Bash (4 Replies)
Discussion started by: learnbash
4 Replies

3. 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

4. UNIX for Dummies Questions & Answers

Getting CPU utilization and memory for a process

I am trying to get cpu util and memory occupied for a process. I use these (I am showing output also): using top ---------- $ top p 25272 d 5 top - 01:52:17 up 2 days, 21:28, 2 users, load average: 0.02, 0.05, 0.06 Tasks: 1 total, 0 running, 1 sleeping, 0 stopped, 0 zombie... (5 Replies)
Discussion started by: radiatejava
5 Replies

5. AIX

High CPU utilization by a pro*C process

Hi , we upgarded our AIX from 5.3 to 6.1 and upgraded our xlc compiler from ver 6.0 to 9.0 . After this upgrade one of our pro*C program is utilizing around 20% of the CPU. Before upgarde its using only 0.2 %. when i try to debug using the truss command i got the below error. $... (6 Replies)
Discussion started by: mugunthanvh
6 Replies

6. UNIX for Dummies Questions & Answers

Get CPU,Memory utilization by process id

Hi , We need to get the CPU% and Memory utilization of process by process id. Is there any way to do get them ? I tried few commands like top -p <PID> , but am getting error "Quitting top: pset <PID> doesn't exist" also i tried with ps -eo option but am getting error "ps: illegal option --... (1 Reply)
Discussion started by: suresh_g
1 Replies

7. HP-UX

Get CPU,Memory utilization by process id

Hi , We need to get the CPU% and Memory utilization of process by process id. Is there any way to do get them ? I tried few commands like top -p <PID> , but am getting error "Quitting top: pset <PID> doesn't exist" also i tried with ps -eo option but am getting error "ps: illegal option --... (5 Replies)
Discussion started by: suresh_g
5 Replies

8. HP-UX

Script to send alert when process exceeds 90% cpu

I have an issue with one of the processes which is showing %cpu over 120% when i issue the top command. I am looking for a script that send me an email alert when it crosses the 90% thresholds. Appreciate your help (1 Reply)
Discussion started by: chkaiban
1 Replies

9. Emergency UNIX and Linux Support

CPU and memory utilization of a process, by process name

Can someone please help me with a script that will help in identifying the CPU & memory usage by a process name, rather than a process id.This is to primarily analyze the consumption of resources, for performance tweaking. G (4 Replies)
Discussion started by: ggayathri
4 Replies

10. Cybersecurity

Limit CPU and RAM utilization for new user in RedHat

We have a system with 4 Xeon Processors each with 10 cores, total 512 GB RAM and 10 TB Hard Drive. we want to create multiple user accounts with different resource limitations as : User 1: RAM : 50GB, PROCESSOR: 10 Cores , User folder in home directory of 10GB space. User 2: RAM :... (5 Replies)
Discussion started by: vaibhavvsk
5 Replies
Mojo::Transaction(3pm)					User Contributed Perl Documentation				    Mojo::Transaction(3pm)

NAME
Mojo::Transaction - Transaction base class SYNOPSIS
use Mojo::Base 'Mojo::Transaction'; DESCRIPTION
Mojo::Transaction is an abstract base class for transactions. EVENTS
Mojo::Transaction can emit the following events. "connection" $tx->on(connection => sub { my ($tx, $connection) = @_; ... }); Emitted when a connection has been assigned to transaction. "finish" $tx->on(finish => sub { my $tx = shift; ... }); Emitted when transaction is finished. "resume" $tx->on(resume => sub { my $tx = shift; ... }); Emitted when transaction is resumed. ATTRIBUTES
Mojo::Transaction implements the following attributes. "kept_alive" my $kept_alive = $tx->kept_alive; $tx = $tx->kept_alive(1); Connection has been kept alive. "local_address" my $local_address = $tx->local_address; $tx = $tx->local_address($address); Local interface address. "local_port" my $local_port = $tx->local_port; $tx = $tx->local_port($port); Local interface port. "previous" my $previous = $tx->previous; $tx = $tx->previous(Mojo::Transaction->new); Previous transaction that triggered this followup transaction. # Path of previous request say $tx->previous->req->url->path; "remote_address" my $remote_address = $tx->remote_address; $tx = $tx->remote_address($address); Remote interface address. "remote_port" my $remote_port = $tx->remote_port; $tx = $tx->remote_port($port); Remote interface port. "req" my $req = $tx->req; $tx = $tx->req(Mojo::Message::Request->new); HTTP 1.1 request, defaults to a Mojo::Message::Request object. "res" my $res = $tx->res; $tx = $tx->res(Mojo::Message::Response->new); HTTP 1.1 response, defaults to a Mojo::Message::Response object. METHODS
Mojo::Transaction inherits all methods from Mojo::EventEmitter and implements the following new ones. "client_close" $tx->client_close; Transaction closed. "client_read" $tx->client_read($chunk); Read and process client data. Meant to be overloaded in a subclass. "client_write" my $chunk = $tx->client_write; Write client data. Meant to be overloaded in a subclass. "connection" my $connection = $tx->connection; $tx = $tx->connection($connection); Connection identifier or socket. "error" my $message = $tx->error; my ($message, $code) = $tx->error; Parser errors and codes. "is_finished" my $success = $tx->is_finished; Check if transaction is finished. "is_websocket" my $false = $tx->is_websocket; False. "is_writing" my $success = $tx->is_writing; Check if transaction is writing. "resume" $tx = $tx->resume; Resume transaction. "server_close" $tx->server_close; Transaction closed. "server_read" $tx->server_read($chunk); Read and process server data. Meant to be overloaded in a subclass. "server_write" my $chunk = $tx->server_write; Write server data. Meant to be overloaded in a subclass. "success" my $res = $tx->success; Returns the Mojo::Message::Response object ("res") if transaction was successful or "undef" otherwise. Connection and parser errors have only a message in "error", 400 and 500 responses also a code. # Sensible exception handling if (my $res = $tx->success) { say $res->body; } else { my ($message, $code) = $tx->error; if ($code) { say "$code $message response."; } else { say "Connection error: $message"; } } Error messages can be accessed with the "error" method of the transaction object. SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojo::Transaction(3pm)
All times are GMT -4. The time now is 05:08 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy