-
Notifications
You must be signed in to change notification settings - Fork 0
/
plotly4nagios.html
47 lines (41 loc) · 1.66 KB
/
plotly4nagios.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
<html>
<head>
<meta http-equiv="pragma" content="no-cache" />
<meta content="Vignesh Ragupathy" name="author" />
<title>Plotly4Nagios</title>
<meta name="description" content="refer https://github.com/vignesh88/plotly4nagios" />
<script src='js/plotly-latest.min.js'></script>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/moment.min.js"></script>
<script type="text/javascript" src="js/daterangepicker.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/daterangepicker.css" />
<link rel="stylesheet" type="text/css" href="css/plotly4nagios.css" />
<link rel="apple-touch-icon" sizes="180x180" href="img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon/favicon-16x16.png">
</head>
<body>
<h1 style="text-align: center">Nagios Performance Monitoring Report </h1>
<div id="reportrange"
style="background: #fff; margin: auto; cursor: pointer; padding: 5px 10px; border: 1px solid #ccc; width: 50%">
<i class="fa fa-calendar"></i>
<span></span> <i class="fa fa-caret-down"></i>
</div>
<br></br>
<div id="loading"></div>
<div id='DIV_allinone'>
<!-- Plotly chart will be drawn inside this DIV -->
</div>
<br></br>
<div id='DIV_per_metrics'>
<!-- Plotly chart will be drawn inside this DIV -->
</div>
</body>
<script src="js/d3-time.v2.min.js"></script>
<script src="js/d3-time-format.v3.min.js"></script>
<script>
var format = d3.timeFormat("%B %d, %Y");
var parseTime = d3.timeParse("%s");
</script>
<script src="js/plotly4nagios.js"></script>
</html>