-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
51 lines (50 loc) · 2.4 KB
/
popup.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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="popup.css" type="text/css">
</head>
<body>
<div id="header">
<div class="header-row">
<span>Lines:</span>
<input id="num-lines-input" type="number" value="100" />
<span>Reverse:</span>
<input id="reverse-checkbox" type="checkbox" />
<select id="process">
<option value="ctm-depmarshall">ctm-depmarshall</option>
<option value="ctm-messenger">ctm-messenger</option>
<option value="ctm-poller">ctm-poller</option>
<option value="ctm-autoscheduler">ctm-autoscheduler</option>
<option value="ctm-jobhandler">ctm-jobhandler</option>
<option value="ctm-metrics">ctm-metrics</option>
<option value="ctm-msghub">ctm-msghub</option>
<option selected="'selected'" value="ctm-ui">ctm-ui</option>
<option value="ctm-deployscheduler">ctm-deployscheduler</option>
<option value="ctm-repopoller">ctm-repopoller</option>
<option value="task_instance">task_instance</option>
<option value="sequence_instance">sequence_instance</option>
<option value="pipeline_instance">pipeline_instance</option>
</select>
<span>Filter since last restart?</span>
<input id="restart-filter" type="checkbox" />
<span>Show logging level filters?</span>
<input id="log-level-filter-show" type="checkbox" />
<button id="refresh-btn">refresh</button>
</div>
<div id="log-level-filter-list" class="header-row hidden">
<span class="log-level-filter">Debug:</span>
<input id="debug-filter" class="log-level-filter" value="DEBUG" type="checkbox" checked/>
<span class="log-level-filter">Info:</span>
<input id="info-filter" class="log-level-filter" value="INFO" type="checkbox" checked/>
<span class="log-level-filter">Warning:</span>
<input id="warning-filter" class="log-level-filter" value="WARNING" type="checkbox" checked/>
<span class="log-level-filter">Error:</span>
<input id="error-filter" class="log-level-filter" value="ERROR" type="checkbox" checked/>
<span class="log-level-filter">Critical:</span>
<input id="critical-filter" class="log-level-filter" value="CRITICAL" type="checkbox" checked/>
</div>
</div>
<div id="log-body"/>
</body>
<script src="popup.js"></script>
</html>