-
Notifications
You must be signed in to change notification settings - Fork 23
/
status.html
67 lines (65 loc) · 3.12 KB
/
status.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
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<!-- Standard Meta -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<link rel="shortcut icon" href="/images/favicon.ico">
<link rel="icon" href="/images/favicon.ico">
<link rel="icon" href="/images/favicon-16x16.png" sizes="16x16">
<link rel="icon" href="/images/favicon-32x32.png" sizes="32x32">
<!-- Site Properties -->
<title>Green Metrics Tool</title>
<meta name="referrer" content="no-referrer-when-downgrade" />
<meta name="description" content="Measuring the energy of your software" />
<script src="/dist/js/jquery.min.js" defer></script>
<script src="/dist/js/datatables.min.js" defer></script>
<script src="/dist/js/accordion.min.js" defer></script>
<script src="/dist/js/transition.min.js" defer></script>
<script src="/dist/js/toast.min.js" defer></script>
<script src="/dist/js/modal.min.js" defer></script>
<script src="/dist/js/dimmer.min.js" defer></script>
<script src="/js/helpers/config.js" defer></script>
<script src="/js/helpers/main.js" defer></script>
<script src="/js/status.js" defer></script>
<link rel="stylesheet" type="text/css" class="ui" href="/dist/css/semantic_reduced.min.css">
<link rel="stylesheet" type="text/css" href="/css/green-coding.css">
<link rel="stylesheet" type="text/css" href="/dist/css/datatables.min.css">
</head>
<body class="preload">
<gmt-menu></gmt-menu>
<div class="main ui container" id="main">
<h1 class="ui header float left">
<a href="#" id="menu-toggle" class="opened"><i class="bars bordered inverted left icon openend"></i></a>
Green Metrics Tool - Status
</h1>
<div class="ui full-width-card segment card">
<div class="content">
<div class="header">Status overview</div>
<div class="description">
<i class="close icon"></i>
<p>This page shows the status of the machines and the jobs in their respective queues.</p>
<p>With it you can estimate the length of the jobs queue. Be aware of the the processing scheme configured (Random or FIFO).</p>
<p>In a future version this will also provide statistics such as jobs run per day, failed jobs, most measured software etc.</p>
</div>
</div>
</div>
<h3>Machines</h3>
<table id="machines-table" class="ui celled striped table"></table>
<h3>Jobs queue</h3>
<table id="jobs-table" class="ui celled striped table"></table>
</div>
<div class="ui overlay large modal" id="machine-configuration">
<div class="header">Details</div>
<div class="scrolling content" id="modal-content">
<div class="ui loading segment" id="machine-configuration-details">
<pre></pre>
</div>
</div>
<div class="actions">
<div class="ui approve button">Close</div>
</div>
</div>
</body>
</html>