The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl -w
#
# $Id: //eai/perl5/Rstat-Client/2.2/src/distro/example1.pl#2 $

# Copyright (c) 2008, Morgan Stanley & Co. Incorporated
# Please see the copyright notice in Client.pm for more information.

use ExtUtils::testlib;
use Rstat::Client;

my $clnt  = Rstat::Client->new();
my $stats = $clnt->fetch();
printf("CPU Load: %.2f %.2f %.2f\n", @{$stats->{avenrun}});