forked from catapult-project/catapult
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dns_view.html
56 lines (53 loc) · 1.57 KB
/
dns_view.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
<dom-module id="dns-view">
<template>
<div id=dns-view-tab-content class=content-box>
<ul style='margin-top: 0'>
<li><a href='#events&q=type:HOST_RESOLVER_IMPL_JOB%20is:active'>View pending lookups</a></li>
</ul>
<div>
<h4>Async DNS Configuration</h4>
<ul>
<li>Internal DNS client enabled:
<span id=dns-view-internal-dns-enabled></span>
<span id=dns-view-internal-dns-invalid-config class=warning-text style="display: none;">
(No valid configuration found)</span>
</li>
</ul>
<table class="styled-table">
<tbody id=dns-view-internal-dns-config-tbody></tbody>
</table>
</div>
<h4>
Host resolver cache
</h4>
<ul>
<li>Capacity: <span id=dns-view-cache-capacity></span></li>
</ul>
<h4>Current State</h4>
<ul>
<li>Active entries: <span id=dns-view-cache-active></span></li>
<li>Expired entries: <span id=dns-view-cache-expired></span></li>
<li>Network changes: <span id=dns-view-network-changes></span></li>
</ul>
<table class="styled-table">
<thead>
<tr>
<th>Hostname</th>
<th>Family</th>
<th>Addresses</th>
<th>TTL</th>
<th>Expires</th>
<th>Network changes</th>
</tr>
</thead>
<tbody id=dns-view-cache-tbody>
</tbody>
</table>
</div>
</template>
<script>
Polymer({
is: 'dns-view',
});
</script>
</dom-module>