123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <html>
- <head>
- <meta http-equiv="refresh" content="300" />
- <script type="text/javascript" src="dygraph-combined.js"></script>
- <title>MoSheL System Status - Data Plot</title>
- </head>
- <body>
- <center>
- <a href="/moshel/"><h1>MoSheL System Status - Data Plot</h1></a>
- <p>
- <div id="graphdiv" style="width:800px; height:400px;"></div>
- <script type="text/javascript">
-
- URLparts = window.location.search.split('?');
- csvfile = URLparts[1];
- g = new Dygraph(
- // containing div
- document.getElementById("graphdiv"),
- // CSV or path to a CSV file.
- csvfile,
- {
- title: URLparts[1],
- fillGraph: true,
- fillAlpha: 0.6,
- highlightCircleSize: 7
- }
- );
- </script>
- <p> <p>
- <font size="-2">
- Monitoring with <a href="http://www.wyae.de/software/moshel/">MoSheL</a> <br>
- Graphing with <a href="http://dygraphs.com/">dygraphs</a>
- </font>
- </center>
- </body>
- </html>
|