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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Attributes chart</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript">
google.charts.load('current', {'packages':['table']});
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(refreshChart());
function refreshChart() {
setInterval(getData, 5000);
}
function getData(){
$.getJSON("/attribAllValues", function(data, status){
drawTable(data)
});
$.getJSON("/attribNumValues", function(data, status){
drawChart(data)
});
}
function drawChart(jsonData) {
var data = google.visualization.arrayToDataTable(jsonData);
var options = {
title: 'Attribute values',
hAxis: {title: 'Timestamp', titleTextStyle: {color: '#333'}},
vAxis: {scaleType: 'log'},
interpolateNulls: true,
crosshair: {trigger: 'both', orientation: 'vertical'}
};
var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
function drawTable(jsonData) {
var data = new google.visualization.DataTable();
for (let col of jsonData[0]) {
data.addColumn('string', col);
}
jsonData.shift();
data.addRows(jsonData);
var table = new google.visualization.Table(document.getElementById('table_div'));
table.draw(data, {width: '100%', height: '100%'});
}
</script>
</head>
<body>
<div th:replace="fragments/navbar :: navbar"></div>
<h4 th:text="${currentZone}"></h4>
<div id="zoneAttribForm">
<form action="#" th:action="@{/values}" th:object="${zoneName}" method="post">
<div class="form-group">
<label for="ZoneName1">Enter zone name to get attribute values</label>
<input type="text" class="form-control" id="ZoneName1" rows="3" th:field="*{string}"/>
<small id="passwordHelpBlock" class="form-text text-muted" th:text="${availableZones}">
</small>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
<div id="table_div"></div>
<div id="chart_div" style="width: 100%; height: 500px;"></div>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>
|