For a Microsoft Win2K system admin class, I've written a trivial script to help the students practice performance monitoring. The script loops forever alternating a few seconds of massive CPU use with a few seconds of idleness.
However, I’m afraid I’m making it too easy for the students
Is there a way for me to precisely suck CPU? I'd like to suck say 20% of CPU for a few seconds, then suck 85% for a few more seconds, then suck 95% for a few more seconds, etc...
I didn’t find any CPU monitoring modules on CPAN.
#!/usr/bin -w
# script to drive cpu use to max for a specific period
use strict;
our $now_sec;
our $end_sec;
our $busy_period=4;
our $sleep_period=4;
our $n1;
our $n2;
our $n3;
our $n4;
print "Press control - C or use task manager to kill me";
while (1) {
($end_sec)=$now_sec+$busy_period;
$n1=$n2=$n3=$n4=3.14;
while($now_sec<$end_sec){
$n1=$n2=$n3=$n4=$n1*$n2*$n3*$n4;
($now_sec)=localtime(time);
}
sleep($sleep_period);
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.