alertmanager/ui/app/partials/status.html
Fabian Reinartz d7843ad6a6 Export parsed configuration as JSON and drop js-yaml dependency. (#563)
* Export parsed configuration as JSON in /api/v1/status.
* Avoid exporting the XXX fields.
* Drop js-yaml library and use already parsed configuration.
* Go fmt + go-bindata
2016-11-22 15:05:14 +01:00

37 lines
875 B
HTML

<div ng-controller="StatusCtrl">
<h1>Status</h1>
<table>
<tbody>
<tr>
<td>Up since</td>
<td>{{ uptime | date:'yyyy-MM-dd HH:mm:ss' }}</td>
</tr>
</tbody>
</table>
<h2>Build info</h2>
<table>
<tbody>
<tr ng-repeat="(key, val) in versionInfo">
<td>{{ key }}</td>
<td>{{ val }}</td>
</tr>
</tbody>
</table>
<h2>Config</h2>
<pre>{{ config }}</pre>
<h2>Routing Tree</h2>
<div class="sans-serif js-routing-tree-wrapper">
<div class="js-svg inline-block">
<div>
<input class="label-input" type="text" placeholder='{service="foo-service", severity="critical"}' \>
<button type="button" class="js-find-match">Match Label Set</button>
</div>
</div>
</div>
<script src="lib/d3.v3.min.js"></script>
<script src="lib/routing-tree.js"></script>
</div>