blob: 9fc987ecd2e5f8ebf1e6e3c131aeefd12800f7df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<html>
<head>
<!-- CUSTOMIZE: Configure these settings -->
<script language="javascript">
// Specify settings here
var ENDPOINT = "/rrduiback/";
// The background and foregrond colors of the graph
var GRAPH_COLOR_BACK = ":252424";
var GRAPH_COLOR_FONT = ":E7E1CC";
// The graph size
var GRAPH_WIDTH = 450;
var GRAPH_HEIGHT = 120
// Amount of space on the right and left of a graph
var GRAPH_MARGIN_LEFT = 67;
var GRAPH_MARGIN_RIGHT = 27;
</script>
<title>Statistics Monitoring</title>
<link href="style.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<table id="main-table" cellspacing="0" cellpadding="0">
<tr id="main-row">
<td id="left-column">
<div id="logo">
<!-- CUSTOMIZE: Add your logo or title here -->
Network Stats
</div>
<div id="headers">
<a id="header-template" class="header">Text</a>
</div>
</td>
<td colspan="2" id="main-cell">
<iframe id="main-frame" src="frame.html"
border="0" frameborder="0"></iframe>
</td></tr>
</table>
<script language="javascript" src="rrdui.js"></script>
</body>
</html>
|