49f800ead46767b89d758f53742ba5755a23949b
[project/luci.git] / applications / luci-livestats / luasrc / view / livestats / loadavg.htm
1 <%+header%>
2
3 <!--[if IE]><script type="text/javascript" src="<%=resource%>/livestats/ExCanvas.js"></script><![endif]-->
4 <script type="text/javascript" src="<%=resource%>/livestats/MochiKit.js"></script>
5 <script type="text/javascript" src="<%=resource%>/livestats/JsonRpc.js"></script>
6 <script type="text/javascript" src="<%=resource%>/livestats/PlotKit.js"></script>
7 <script type="text/javascript" src="<%=resource%>/livestats/GraphRPC.js"></script>
8 <script type="text/javascript" src="<%=resource%>/livestats/Legend.js"></script>
9
10 <script type="text/javascript">
11         function initGraphs() {
12                 var rpc = new GraphRPC(
13                         document.getElementById('live_graphs'),
14                         '<%=luci.dispatcher.build_url('rpc', 'sys')%>', 'loadavg',
15                         2000,
16
17                         // Data sources
18                         [ 0, "1 min", 1, "5 min", 2, "15 min" ],
19
20                         // Graph layout options
21                         { title: '<%:livestats_loadavg%>', strokeWidth: 2.5, shouldFill: false, strokeColor: null,
22                           padding: { left: 70, right: 10, top: 10, bottom: 20 },
23                           instances: [ false ],  yAxis: [ 0, 2 ], drawBackground: false },
24                         null,
25                         'live_graphs'
26                 );
27         }
28
29         MochiKit.DOM.addLoadEvent(initGraphs);
30 </script>
31
32 <div id="live_graphs"></div>
33 <%+footer%>