2015-12-10 21:30:37 +01:00
|
|
|
<h1 class="page-header">Overview</h1>
|
|
|
|
|
|
|
|
|
|
<div class="row placeholders">
|
|
|
|
|
<H1>Last 24 hours (kWh/5min)</H1>
|
2016-06-02 17:50:25 +02:00
|
|
|
<div id="minute-power-chart" style="height:450px;"></div>
|
2015-12-10 21:30:37 +01:00
|
|
|
</div>
|
|
|
|
|
<div class="row placeholders">
|
2015-12-11 23:19:17 +01:00
|
|
|
<H1>Last Week (kWh/h)</H1>
|
2016-06-02 17:50:25 +02:00
|
|
|
<div id="hour-power-chart" style="height:450px;"></div>
|
2015-12-10 21:30:37 +01:00
|
|
|
</div>
|
|
|
|
|
<div class="row placeholders">
|
2015-12-11 23:19:17 +01:00
|
|
|
<H1>All History (kWh/day)</H1>
|
2016-06-02 17:50:25 +02:00
|
|
|
<div id="day-power-chart" style="height:450px;"></div>
|
2015-12-10 21:30:37 +01:00
|
|
|
</div>
|
2016-02-09 12:43:28 +01:00
|
|
|
<div class="row placeholders">
|
|
|
|
|
<H1>All History (kWh/week)</H1>
|
2016-06-02 17:50:25 +02:00
|
|
|
<div id="week-power-chart" style="height:450px;"></div>
|
2016-02-09 12:43:28 +01:00
|
|
|
</div>
|
2015-12-10 21:30:37 +01:00
|
|
|
|
|
|
|
|
<script>
|
2016-06-02 17:50:25 +02:00
|
|
|
|
2015-12-10 21:30:37 +01:00
|
|
|
$(function(){
|
2016-11-28 17:11:17 +01:00
|
|
|
createChart("#minute-power-chart", "/data/sensor?aggr=minute", 5*60*1000);
|
|
|
|
|
createChart("#hour-power-chart", "/data/sensor?aggr=hour", 60*60*1000);
|
|
|
|
|
createChart("#day-power-chart", "/data/sensor?aggr=day", 24*60*60*1000);
|
|
|
|
|
createChart("#week-power-chart", "/data/sensor?aggr=week", 7*24*60*60*1000);
|
2015-12-11 17:31:13 +01:00
|
|
|
});
|
2015-12-10 21:30:37 +01:00
|
|
|
</script>
|
|
|
|
|
|