syncthing/static/index.html

207 lines
6.5 KiB
HTML
Raw Normal View History

2014-06-12 01:40:54 +02:00
<!DOCTYPE html>
<!--
Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
Use of this source code is governed by an MIT-style license that can be
found in the LICENSE file.
-->
2014-06-28 09:46:03 +02:00
<html lang="en">
2014-06-12 01:40:54 +02:00
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
2015-01-22 13:15:29 +01:00
<link rel="shortcut icon" href="static/assets/img/favicon.png">
2014-06-12 01:40:54 +02:00
<title>Syncthing Usage Reports</title>
2014-06-28 09:46:03 +02:00
<link href="static/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<script src="static/bootstrap/js/bootstrap.min.js"></script>
2014-06-12 01:40:54 +02:00
<style type="text/css">
body {
margin: 40px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
</style>
2015-05-21 10:11:00 +02:00
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript"
src="https://www.google.com/jsapi?autoload={
'modules':[{
'name':'visualization',
'version':'1',
'packages':['corechart']
}]
}"></script>
<script type="text/javascript">
google.setOnLoadCallback(drawChart);
function drawChart() {
var jsonData = $.ajax({url: "summary.json", dataType:"json", async: false}).responseText;
var rows = JSON.parse(jsonData);
var data = new google.visualization.DataTable();
data.addColumn('date', 'Day');
for (var i = 1; i < rows[0].length; i++){
data.addColumn('number', rows[0][i]);
}
for (var i = 1; i < rows.length; i++){
rows[i][0] = new Date(rows[i][0]);
data.addRow(rows[i]);
};
var options = {
legend: { position: 'bottom', alignment: 'center' },
isStacked: true,
colors: ['rgb(102,194,165)','rgb(252,141,98)','rgb(141,160,203)','rgb(231,138,195)','rgb(166,216,84)','rgb(255,217,47)'],
2015-06-01 13:11:53 +02:00
chartArea: {left: 80, top: 20, width: '1020', height: '300'},
2015-05-21 10:11:00 +02:00
};
var chart = new google.visualization.AreaChart(document.getElementById('curve_chart'));
chart.draw(data, options);
}
</script>
2014-06-12 01:40:54 +02:00
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
2014-06-12 02:13:30 +02:00
<h1>Syncthing Usage Data</h1>
2015-05-21 10:11:00 +02:00
<h4>Active Users per Day and Version</h4>
<p>
This is the total number of unique users with reporting enabled, per day. Area color represents the major version.
</p>
2015-06-01 13:11:53 +02:00
<div class="img-thumbnail" id="curve_chart" style="width: 1130px; height: 400px; padding: 10px;"></div>
2015-05-21 10:11:00 +02:00
<h4>Usage Metrics</h4>
2014-06-12 02:13:30 +02:00
<p>
2015-02-15 12:00:15 +01:00
This is the aggregated usage report data for the last 24 hours. Data based on <b>{{.nodes}}</b> devices that have reported in.
2014-06-12 02:13:30 +02:00
</p>
<table class="table table-striped">
<thead>
<tr>
2014-06-16 16:47:54 +02:00
<th></th><th class="text-right">5%</th><th class="text-right">50%</th><th class="text-right">95%</th><th class="text-right">100%</th>
2014-06-12 02:13:30 +02:00
</tr>
</thead>
<tbody>
2014-06-28 11:24:25 +02:00
{{range .categories}}
2014-06-28 09:46:03 +02:00
<tr>
2014-06-28 11:24:25 +02:00
<td>{{.Descr}}</td>
<td class="text-right">{{index .Values 0 | number .Binary | commatize " "}}{{.Unit}}</td>
<td class="text-right">{{index .Values 1 | number .Binary | commatize " "}}{{.Unit}}</td>
<td class="text-right">{{index .Values 2 | number .Binary | commatize " "}}{{.Unit}}</td>
<td class="text-right">{{index .Values 3 | number .Binary | commatize " "}}{{.Unit}}</td>
2014-06-12 02:13:30 +02:00
</tr>
2014-06-28 09:46:03 +02:00
{{end}}
2014-06-12 02:13:30 +02:00
</tbody>
</table>
</div>
</div>
<div class="row">
2015-05-20 22:27:14 +02:00
2014-06-20 23:24:27 +02:00
<div class="col-md-4">
2014-06-12 02:13:30 +02:00
<table class="table table-striped">
<thead>
<tr>
2015-02-15 12:00:15 +01:00
<th>Version</th><th class="text-right">Devices</th><th class="text-right">Share</th>
2014-06-12 02:13:30 +02:00
</tr>
</thead>
<tbody>
2014-06-28 09:46:03 +02:00
{{range .versions}}
<tr>
<td>{{.Key}}</td>
<td class="text-right">{{.Count}}</td>
<td class="text-right">{{.Percentage | printf "%.01f"}}%</td>
2014-06-12 02:13:30 +02:00
</tr>
2014-06-28 09:46:03 +02:00
{{end}}
2014-06-12 02:13:30 +02:00
</tbody>
</table>
</div>
2015-05-20 22:27:14 +02:00
2014-06-20 23:24:27 +02:00
<div class="col-md-4">
2014-06-12 02:13:30 +02:00
<table class="table table-striped">
<thead>
<tr>
2015-02-15 12:00:15 +01:00
<th>Platform</th><th class="text-right">Devices</th><th class="text-right">Share</th>
2014-06-12 02:13:30 +02:00
</tr>
</thead>
<tbody>
2014-06-28 09:46:03 +02:00
{{range .platforms}}
<tr>
<td>{{.Key}}</td>
<td class="text-right">{{.Count}}</td>
<td class="text-right">{{.Percentage | printf "%.01f"}}%</td>
2014-06-12 02:13:30 +02:00
</tr>
2014-06-28 09:46:03 +02:00
{{end}}
2014-06-12 02:13:30 +02:00
</tbody>
</table>
2014-06-12 01:40:54 +02:00
</div>
2015-05-20 22:27:14 +02:00
2014-06-20 23:24:27 +02:00
<div class="col-md-4">
<table class="table table-striped">
<thead>
<tr>
2015-02-15 12:00:15 +01:00
<th>OS</th><th class="text-right">Devices</th><th class="text-right">Share</th>
2014-06-20 23:24:27 +02:00
</tr>
</thead>
<tbody>
2014-06-28 09:46:03 +02:00
{{range .os}}
<tr>
<td>{{.Key}}</td>
<td class="text-right">{{.Count}}</td>
<td class="text-right">{{.Percentage | printf "%.01f"}}%</td>
2014-06-20 23:24:27 +02:00
</tr>
2014-06-28 09:46:03 +02:00
{{end}}
2014-06-20 23:24:27 +02:00
</tbody>
</table>
</div>
2015-05-20 22:27:14 +02:00
</div>
<div class="row">
<div class="col-md-6">
<table class="table table-striped">
<thead>
<tr>
<th>Compiler</th><th class="text-right">Devices</th><th class="text-right">Share</th>
</tr>
</thead>
<tbody>
{{range .compilers}}
<tr>
<td>{{.Key}}</td>
<td class="text-right">{{.Count}}</td>
<td class="text-right">{{.Percentage | printf "%.01f"}}%</td>
</tr>
{{end}}
</tbody>
</table>
</div>
<div class="col-md-6">
<table class="table table-striped">
<thead>
<tr>
<th>Builder</th><th class="text-right">Devices</th><th class="text-right">Share</th>
</tr>
</thead>
<tbody>
{{range .builders}}
<tr>
<td>{{.Key}}</td>
<td class="text-right">{{.Count}}</td>
<td class="text-right">{{.Percentage | printf "%.01f"}}%</td>
</tr>
{{end}}
</tbody>
</table>
</div>
2014-06-12 01:40:54 +02:00
</div>
</div>
</body>
</html>