blob: 8a261f96cd9d6eead0785ba0baf2cf0465e551b2 (
plain)
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
|
/***********************************************************************
* Some constants
**********************************************************************/
var GRAS_CHARTS_STD_WIDTH = 250;
/***********************************************************************
* Stats registry data structure
**********************************************************************/
var GrasStatsRegistry = function()
{
this.overall_rate = 2.0;
this.overall_active = true;
this.block_ids = new Array();
this.top_id = 'top';
this.online = true;
this.offline_count = 0;
}
/***********************************************************************
* Query stats
**********************************************************************/
var gras_query_stats = function(registry)
{
$.ajax({
type: "GET",
async: true,
url: "/stats.json",
dataType: "json",
success: function(response)
{
registry.online = true;
gras_chart_factory_online(registry);
if (registry.overall_active)
{
gras_chart_factory_update(registry, response);
registry.timeout_handle = window.setTimeout(function()
{
gras_query_stats(registry);
}, Math.round(1000/registry.overall_rate));
}
},
error: function()
{
registry.online = false;
gras_chart_factory_online(registry);
registry.timeout_handle = window.setTimeout(function()
{
gras_query_stats(registry);
}, 1000);
},
});
}
/***********************************************************************
* Init
**********************************************************************/
var gras_stats_main = function()
{
//create a new registry - storage for gui state
var registry = new GrasStatsRegistry();
//query various server args
$.getJSON('/args.json', function(data)
{
registry.top_id = data.name;
$('#top_name').append(' - ' + registry.top_id);
document.title += ' - ' + registry.top_id;
});
//query the stats for initial setup
$.getJSON('/stats.json', function(data)
{
gras_chart_factory_setup(registry, data);
});
//start the query loop in the background
gras_query_stats(registry);
}
|