mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 23:54:05 -08:00
b224251981
This commit simplifies the way that compactions across a database's keyspace occur due to reading the LevelDB internals. Secondarily it introduces the database size estimation mechanisms. Include database health and help interfaces. Add database statistics; remove status goroutines. This commit kills the use of Go routines to expose status throughout the web components of Prometheus. It also dumps raw LevelDB status on a separate /databases endpoint.
23 lines
731 B
HTML
23 lines
731 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>Prometheus Time Series Collection and Processing Server</title>
|
|
<script src="/static/vendor/js/jquery.min.js"></script>
|
|
<link type="text/css" rel="stylesheet" href="/static/css/prometheus.css">
|
|
{{template "head" .}}
|
|
</head>
|
|
|
|
<body>
|
|
<div id="navigation">
|
|
<a href="/graph">Graph & Console</a>
|
|
<a href="/">Status</a>
|
|
<a href="/databases">Databases</a>
|
|
|
|
<!-- Help should preferentially be the right-most element. -->
|
|
<a href="https://github.com/prometheus/prometheus/wiki" target="_blank">Help</a>
|
|
</div>
|
|
{{template "content" .}}
|
|
</body>
|
|
</html>
|