PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /opt/sharedrads/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : //opt/sharedrads/dcpumon.pl

#!/usr/bin/perl
eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
    if $running_under_some_shell;
			# this emulates #! processing on NIH machines.
			# (remove #! line above if indigestible)

eval '$'.$1.'$2;' while $ARGV[0] =~ /^([A-Za-z_0-9]+=)(.*)/ && shift;
			# process any FOO=bar switches

$, = ' ';		# set output field separator
$\ = "\n";		# set output record separator

my $DCPUMONVIEW="/usr/local/cpanel/bin/dcpumonview";
#if ( ! -f $DCPUMONVIEW ) {
#	print "Can't find $DCPUMONVIEW!";
#	exit 1;
#}
my @DCPUMONDATA=`$DCPUMONVIEW`;
#while (<@DCPUMONDATA>) {
foreach (@DCPUMONDATA) {
	chomp;	# strip record separator
	s/<[\/]t.>|<t.>|<t. bgcolor=#......>|<t. colspan=.>/ /g;
	#if (s/(root|mailnull|mailman|mysql|nobody)/$1 [system]/;
	#s/([a-z]) /$1  /;
	if (! /Top( |\t)+Process/ && ! /^$/ && ! /^( |\t)+$/ )
	{

		s/(root|mailnull|mailman|mysql|nobody|jabber|daemon)/$1 [system]/;
		#if (! /[a-z]+[0-9]+/) { s/([a-z]+ )/$1 [system]/; }
		s/(32[0-9][0-9][0-9])/$1 [unknown]/;
		#print $_;
		#my ($count)=$_=~y/\s/ /;
		#print $count+1;
		my ($user, $site, $cpu,$mem,$mysql) = split(' ',$_,-1);
		#if ($site =~ / +/){ $site="[unknown]"; }
		#$site="foo";
		printf("%25s %35s %10s %10s %10s \n", $user, $site, $cpu,$mem,$mysql );
	}

}