-
Notifications
You must be signed in to change notification settings - Fork 8
/
test-dev.html
executable file
·55 lines (44 loc) · 1.24 KB
/
test-dev.html
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
<!DOCTYPE html>
<html>
<head>
<title>DNSMON 2</title>
<script>DNSMON_EXTERNAL_WIDGET_URL = '';</script>
<script src="dnsmon-widget-main.js"></script>
</head>
<body>
<div class="dnsmon"></div>
<script>
var dnsmon = initDNSmon('.dnsmon',
{
dev: true,
width: 1235,
// height: 800,
// maxHeight: 900,
lang: "en",
// grouping: true,
autoUpdate: false,
showFilter: 'rtt',
fullScreen: false,
colorRanges:{rtt:[0,15]},
localCacheActive: false
// change: function(){},
// load: function(){}
},
{
type: "server-probes",
// type: "zone-servers",
server: "2001:500:2e::2",
// "msm": 1431541,
maxProbes: 50,
isTcp: true,
// startTime: 1396137600,
// endTime: 1396137600 + 3600 * 2,
// defaultTimeWindow: "5h",
// startTime: null,
// endTime: null,
ipVersion: null,
zone: "fr."
});
</script>
</body>
</html>