mirror of
https://github.com/coder/coder.git
synced 2026-06-03 13:08:25 +00:00
52901e1219
Implements HTMLDebug for the PGCoordinator with the new v2 API and related DB tables.
78 lines
1.9 KiB
HTML
78 lines
1.9 KiB
HTML
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
th, td {
|
|
padding-top: 6px;
|
|
padding-bottom: 6px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
text-align: left;
|
|
}
|
|
tr {
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h2 id=coordinators><a href=#coordinators>#</a> coordinators: total 2</h2>
|
|
<table>
|
|
<tr style="margin-top:4px">
|
|
<th>ID</th>
|
|
<th>Heartbeat Age</th>
|
|
</tr>
|
|
<tr style="margin-top:4px">
|
|
<td>01000000-1111-1111-1111-111111111111</td>
|
|
<td>2s ago</td>
|
|
</tr>
|
|
<tr style="margin-top:4px">
|
|
<td>02000000-1111-1111-1111-111111111111</td>
|
|
<td>1s ago</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h2 id=peers> <a href=#peers>#</a> peers: total 2 </h2>
|
|
<table>
|
|
<tr style="margin-top:4px">
|
|
<th>ID</th>
|
|
<th>CoordinatorID</th>
|
|
<th>Status</th>
|
|
<th>Last Write Age</th>
|
|
<th>Node</th>
|
|
</tr>
|
|
<tr style="margin-top:4px">
|
|
<td>01000000-2222-2222-2222-222222222222</td>
|
|
<td>01000000-1111-1111-1111-111111111111</td>
|
|
<td>ok</td>
|
|
<td>5s ago</td>
|
|
<td style="white-space: pre;"><code>id:1 preferred_derp:999 endpoints:"192.168.0.49:4449"</code></td>
|
|
</tr>
|
|
<tr style="margin-top:4px">
|
|
<td>02000000-2222-2222-2222-222222222222</td>
|
|
<td>02000000-1111-1111-1111-111111111111</td>
|
|
<td>lost</td>
|
|
<td>7s ago</td>
|
|
<td style="white-space: pre;"><code>id:2 preferred_derp:999 endpoints:"192.168.0.33:4449"</code></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h2 id=tunnels><a href=#tunnels>#</a> tunnels: total 1</h2>
|
|
<table>
|
|
<tr style="margin-top:4px">
|
|
<th>SrcID</th>
|
|
<th>DstID</th>
|
|
<th>CoordinatorID</th>
|
|
<th>Last Write Age</th>
|
|
</tr>
|
|
<tr style="margin-top:4px">
|
|
<td>01000000-2222-2222-2222-222222222222</td>
|
|
<td>02000000-2222-2222-2222-222222222222</td>
|
|
<td>01000000-1111-1111-1111-111111111111</td>
|
|
<td>3s ago</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|