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 |