-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·45 lines (43 loc) · 1.61 KB
/
index.html
File metadata and controls
executable file
·45 lines (43 loc) · 1.61 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
<link href="./dashboard.css" rel="stylesheet" />
<script src="./gauge.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.15.0/d3.min.js"></script>
<script src="./dashboard.js"></script>
<title>Dashboard</title>
</head>
<body>
<div class="navbar-fixed header">
<nav>
<h1>Performance Dashboard</h1>
</nav>
</div>
<div class="container boards">
<div class="row" id="boards"></div>
<hr/>
<div class="row">
<div class="col-sm">
<div class="alerts-heading">Current Alerts</div>
<div id="alertsCurrent" class="alerts-current"></div>
</div>
<div class="col-sm">
<div class="alerts-heading">Recent Alerts</div>
<div id="alertsRecent" class="alerts-recent"></div>
</div>
</div>
</div>
</body>
</html>