📄 monthly_tot_stats
字号:
#!/usr/bin/perluse POSIX;# Log in the mtotacct table aggregated accounting information for# each user spaning in one month period.# If the current month has not ended it will log information up to# the current month day# Works only with mysql and postgresql#$conf=shift||'/usr/local/dialup_admin/conf/admin.conf';open CONF, "<$conf" or die "Could not open configuration file\n";while(<CONF>){ chomp; ($key,$val)=(split /:\s*/,$_); $sql_type = $val if ($key eq 'sql_type'); $sql_server = $val if ($key eq 'sql_server'); $sql_username = $val if ($key eq 'sql_username'); $sql_password = $val if ($key eq 'sql_password'); $sql_database = $val if ($key eq 'sql_database'); $sql_accounting_table = $val if ($key eq 'sql_accounting_table'); $sqlcmd = $val if ($key eq 'sql_command');}close CONF;die "sql_command directive is not set in admin.conf\n" if ($sqlcmd eq '');die "Could not find sql binary. Please make sure that the \$sqlcmd variable points to the right location\n" if (! -x $sqlcmd);$sql_password = (!$sql_password) ? '' : "-p$sql_password";($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime;if ($mday == 1){ $mon--;}$date_start = POSIX::strftime("%Y-%m-%d",0,0,0,1,$mon,$year,$wday,$yday,$isdst);$date_end = POSIX::strftime("%Y-%m-%d",0,0,0,$mday,$mon,$year,$wday,$yday,$isdst);$query1 = "DELETE FROM mtotacct WHERE AcctDate = '$date_start';";$query2 = "INSERT INTO mtotacct (UserName,AcctDate,ConnNum,ConnTotDuration, ConnMaxDuration,ConnMinDuration,InputOctets,OutputOctets,NASIPAddress) SELECT UserName,'$date_start',SUM(ConnNum),SUM(ConnTotDuration), MAX(ConnMaxDuration),MIN(ConnMinDuration),SUM(InputOctets), SUM(OutputOctets),NASIPAddress FROM totacct WHERE AcctDate >= '$date_start' AND AcctDate <= '$date_end' GROUP BY UserName,NASIPAddress;";print "$query1\n";print "$query2\n";open TMP, ">/tmp/tot_stats.query" or die "Could not open tmp file\n";print TMP $query1;print TMP $query2;close TMP;$command = "$sqlcmd -h $sql_server -u $sql_username $sql_password $sql_database </tmp/tot_stats.query" if ($sql_type eq 'mysql');$command = "$sqlcmd -U $sql_username -f /tmp/tot_stats.query $sql_database" if ($sql_type eq 'pg');`$command`;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -