index.html 890 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <html>
  2. <head>
  3. <meta http-equiv="refresh" content="300" />
  4. <script type="text/javascript" src="dygraph-combined.js"></script>
  5. <title>MoSheL System Status - Data Plot</title>
  6. </head>
  7. <body>
  8. <center>
  9. <a href="/moshel/"><h1>MoSheL System Status - Data Plot</h1></a>
  10. <p>
  11. <div id="graphdiv" style="width:800px; height:400px;"></div>
  12. <script type="text/javascript">
  13. URLparts = window.location.search.split('?');
  14. csvfile = URLparts[1];
  15. g = new Dygraph(
  16. // containing div
  17. document.getElementById("graphdiv"),
  18. // CSV or path to a CSV file.
  19. csvfile,
  20. {
  21. title: URLparts[1],
  22. fillGraph: true,
  23. fillAlpha: 0.6,
  24. highlightCircleSize: 7
  25. }
  26. );
  27. </script>
  28. <p>&nbsp;<p>
  29. <font size="-2">
  30. Monitoring with <a href="http://www.wyae.de/software/moshel/">MoSheL</a> <br>
  31. Graphing with <a href="http://dygraphs.com/">dygraphs</a>
  32. </font>
  33. </center>
  34. </body>
  35. </html>