mirror of
https://github.com/manuelkasper/AS-Stats.git
synced 2025-02-20 11:44:12 +08:00
85 lines
3.4 KiB
PHP
85 lines
3.4 KiB
PHP
<?php
|
|
/*
|
|
* $Id$
|
|
*
|
|
* written by Manuel Kasper <mk@neon1.net> for Monzoon Networks AG
|
|
*/
|
|
|
|
error_reporting(0);
|
|
|
|
require_once('func.inc');
|
|
|
|
$as = $_GET['as'];
|
|
if ($as)
|
|
$asinfo = getASInfo($as);
|
|
|
|
$rrdfile = getRRDFileForAS($as);
|
|
|
|
?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta http-equiv="Refresh" content="300" />
|
|
<title>History for AS<?php echo $as; ?>: <?php echo $asinfo['descr']; ?></title>
|
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="nav"><a href="top.php">Top AS</a> | View an AS | <a href="asset.php">View an AS-SET</a> | <a href="linkusage.php">Link usage</a></div>
|
|
|
|
<?php if ($as): ?>
|
|
<div class="pgtitle">History for AS<?php echo $as; ?>: <?php echo $asinfo['descr']; ?></div>
|
|
|
|
<?php if (!file_exists($rrdfile)): ?>
|
|
<p>No data found for AS <?php echo $as; ?></p>
|
|
<?php else: ?>
|
|
<div class="title">Daily</div>
|
|
<?php if ($showv6): ?>
|
|
<img class="detailgraph" src="gengraph.php?v=4&as=<?php echo $as; ?>" alt="daily graph" />
|
|
<img class="detailgraph2" src="gengraph.php?v=6&as=<?php echo $as; ?>" alt="daily graph" />
|
|
<?php else: ?>
|
|
<img class="detailgraph" src="gengraph.php?as=<?php echo $as; ?>" alt="daily graph" />
|
|
<?php endif; ?>
|
|
|
|
<div class="title">Weekly</div>
|
|
<?php if ($showv6): ?>
|
|
<img class="detailgraph" src="gengraph.php?v=4&as=<?php echo $as; ?>&start=<?php echo (time() - 7*86400);?>&end=<?php echo time(); ?>" alt="weekly graph" />
|
|
<img class="detailgraph2" src="gengraph.php?v=6&as=<?php echo $as; ?>&start=<?php echo (time() - 7*86400);?>&end=<?php echo time(); ?>" alt="weekly graph" />
|
|
<?php else: ?>
|
|
<img class="detailgraph" src="gengraph.php?as=<?php echo $as; ?>&start=<?php echo (time() - 7*86400);?>&end=<?php echo time(); ?>" alt="weekly graph" />
|
|
<?php endif; ?>
|
|
|
|
<div class="title">Monthly</div>
|
|
<?php if ($showv6): ?>
|
|
<img class="detailgraph" src="gengraph.php?v=4&as=<?php echo $as; ?>&start=<?php echo (time() - 30*86400);?>&end=<?php echo time(); ?>" alt="monthly graph" />
|
|
<img class="detailgraph2" src="gengraph.php?v=6&as=<?php echo $as; ?>&start=<?php echo (time() - 30*86400);?>&end=<?php echo time(); ?>" alt="monthly graph" />
|
|
<?php else: ?>
|
|
<img class="detailgraph" src="gengraph.php?as=<?php echo $as; ?>&start=<?php echo (time() - 30*86400);?>&end=<?php echo time(); ?>" alt="monthly graph" />
|
|
<?php endif; ?>
|
|
|
|
<div class="title">Yearly</div>
|
|
<?php if ($showv6): ?>
|
|
<img class="detailgraph" src="gengraph.php?v=4&as=<?php echo $as; ?>&start=<?php echo (time() - 365*86400);?>&end=<?php echo time(); ?>" alt="yearly graph" />
|
|
<img class="detailgraph2" src="gengraph.php?v=6&as=<?php echo $as; ?>&start=<?php echo (time() - 365*86400);?>&end=<?php echo time(); ?>" alt="yearly graph" />
|
|
<?php else: ?>
|
|
<img class="detailgraph" src="gengraph.php?as=<?php echo $as; ?>&start=<?php echo (time() - 365*86400);?>&end=<?php echo time(); ?>" alt="yearly graph" />
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
<?php else: ?>
|
|
|
|
<div class="pgtitle">View history for an AS</div>
|
|
|
|
<form action="" method="get">
|
|
AS: <input type="text" name="as" size="6" />
|
|
<input type="submit" value="Go" />
|
|
</form>
|
|
<?php endif; ?>
|
|
|
|
<?php include('footer.inc'); ?>
|
|
|
|
</body>
|
|
</html>
|