diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-01-05 02:19:48 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-01-05 02:19:48 +0000 |
commit | a0f51167f3a4476954a95d96ccf2b5b280164bda (patch) | |
tree | e062226a4380b9144713e24681b5e6b568de41e6 /packages/pfstat.xml | |
parent | ad310dcf307d3f8f473cebd21fc7b8f2875480ad (diff) | |
download | pfsense-packages-a0f51167f3a4476954a95d96ccf2b5b280164bda.tar.gz pfsense-packages-a0f51167f3a4476954a95d96ccf2b5b280164bda.tar.bz2 pfsense-packages-a0f51167f3a4476954a95d96ccf2b5b280164bda.zip |
Add pfstat.php command used to show graphs.
Fix graph layouts when multiple graphs defined.
Diffstat (limited to 'packages/pfstat.xml')
-rw-r--r-- | packages/pfstat.xml | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/packages/pfstat.xml b/packages/pfstat.xml index 1349bb55..fa8faa42 100644 --- a/packages/pfstat.xml +++ b/packages/pfstat.xml @@ -11,9 +11,12 @@ <menu> <name>PFStat Graphs</name> <tooltiptext>pfstat is a small utility that collects packet filter statistics and produces graphs.</tooltiptext> - <url>/pfstat/</url> + <url>/pfstat.php</url> <section>Services</section> </menu> + <additional_files_needed> + <item>http://www.pfsense.com/packages/config/pfstat.tgz</item> + </additional_files_needed> <!-- configpath gets expanded out automatically and config items will be stored in that location --> <configpath>['installedpackages']['package']['$packagename']['configuration']</configpath> @@ -181,12 +184,12 @@ function sync_package() { global $config; $fout = fopen("/usr/local/etc/pfstat.conf","w"); - $leftgraphtext = ""; - $rightgraphtext = ""; - $isfirstleft = 0; - $isfirstright = 0; if($config['installedpackages']['pfstat']['config'] != "") { foreach($config['installedpackages']['pfstat']['config'] as $rowhelper) { + $leftgraphtext = ""; + $rightgraphtext = ""; + $isfirstleft = 0; + $isfirstright = 0; foreach($rowhelper['row'] as $row) { if($row['location'] == "left") { if($isfirstleft == 1) $leftgraphtext .= ",\n"; @@ -198,13 +201,11 @@ $isfirstright = 1; } } - } - foreach($config['installedpackages']['pfstat']['config'] as $pkgconfig) { - fwrite($fout, "image \"/usr/local/www/pfstat/" . $pkgconfig['imagename'] ."\" { \n"); - $from = $pkgconfig['from']; + fwrite($fout, "image \"/usr/local/www/pfstat/" . $rowhelper['imagename'] ."\" { \n"); + $from = $rowhelper['from']; if($from == "") $from = "30"; - fwrite($fout, "from " . $from . " " . $pkgconfig['fromclassification'] . " to now \n"); - fwrite($fout, "width " . $pkgconfig['graphsizewidth'] . " height " . $pkgconfig['graphsizeheight'] . " \n"); + fwrite($fout, "from " . $from . " " . $rowhelper['fromclassification'] . " to now \n"); + fwrite($fout, "width " . $row['graphsizewidth'] . " height " . $rowhelper['graphsizeheight'] . " \n"); if($leftgraphtext != "") { fwrite($fout, " left \n"); fwrite($fout, " " . $leftgraphtext . "\n"); @@ -215,8 +216,8 @@ } fwrite($fout, "}\n\n"); } - fclose($fout); } + fclose($fout); } sync_package(); </custom_php_command_before_form> @@ -232,6 +233,7 @@ </custom_php_install_command> <custom_php_deinstall_command> system("rm /usr/local/etc/pfstat*"); + system("rm -rf /usr/local/www/pfstat*"); </custom_php_deinstall_command> <!-- <custom_php_install_command> |