Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Measuring MySQL resources consumption on Linux

by kyle (Abbot)
on Dec 13, 2007 at 22:27 UTC ( [id://656931]=note: print w/replies, xml ) Need Help??


in reply to Measuring MySQL resources consumption on Linux

# # calculate the average, avoiding any division by zero traps # my $avg_cpu_load = $total_cpu_load ? $total_cpu_load / $active_pid_num + : 0 ;

I'd think if you want to avoid division by zero, you'd need to check the denominator for zero-ness rather than the numerator. That is:

my $avg_cpu_load = $active_pid_num ? $total_cpu_load / $active_pid_num + : 0;

Or am I misunderstanding something here?

Replies are listed 'Best First'.
Re^2: Measuring MySQL resources consumption on Linux
by Anonymous Monk on Aug 22, 2008 at 15:45 UTC
    if there is a tee in my.cnf, demo mysql tee = mysql.log mysql -u read -pread -N -e 'show variables like "pid_file"' get: Logging to file 'mysql.log' pid_file /path/to/var/mysql.pid mysqlresources buddy read the first line set pid_file="to" reply to: xiaozhiwen@gmail.com

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://656931]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (6)
As of 2024-04-23 09:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found