2013-01-15 10:30:55 +00:00
|
|
|
<!DOCTYPE html>
|
2013-01-17 22:46:43 +00:00
|
|
|
<html lang="en">
|
2013-01-15 10:30:55 +00:00
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
|
<title>Prometheus Expression Browser</title>
|
|
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
|
|
|
|
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min.js"></script>
|
2013-01-17 22:46:43 +00:00
|
|
|
<link type="text/css" rel="stylesheet" href="css/prometheus.css">
|
2013-01-15 10:30:55 +00:00
|
|
|
|
|
|
|
<link type="text/css" rel="stylesheet" href="http://code.shutterstock.com/rickshaw/rickshaw.min.css">
|
|
|
|
<script src="http://code.shutterstock.com/rickshaw/vendor/d3.min.js"></script>
|
|
|
|
<script src="http://code.shutterstock.com/rickshaw/vendor/d3.layout.min.js"></script>
|
|
|
|
<script src="http://code.shutterstock.com/rickshaw/rickshaw.min.js"></script>
|
|
|
|
<script src="js/rickshaw.js"></script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2013-01-17 22:46:43 +00:00
|
|
|
<div class="grouping-box">
|
|
|
|
<form action="/api/query_range" method="GET" id="query_form">
|
|
|
|
<label for="expr">Expression:</label>
|
|
|
|
<input type="text" name="expr" id="expr" size="80"><br>
|
|
|
|
|
|
|
|
<label for="range">Range:</label>
|
|
|
|
<input type="button" value="-" id="dec_range">
|
|
|
|
<input type="text" name="range_input" id="range_input" size="5" value="1h">
|
|
|
|
<input type="hidden" name="range" id="range">
|
|
|
|
<input type="button" value="+" id="inc_range">
|
|
|
|
|
|
|
|
<label for="end">End:</label>
|
|
|
|
<input type="text" name="end" id="end">
|
|
|
|
|
|
|
|
<label for="step_input">Resolution (s):</label>
|
|
|
|
<input type="text" name="step_input" id="step_input" value="" size="4">
|
|
|
|
<input type="hidden" name="step" id="step">
|
|
|
|
|
|
|
|
<input type="checkbox" name="stacked" id="stacked" value="1">
|
|
|
|
<label for="stacked">Stacked</label>
|
|
|
|
|
|
|
|
<input type="submit" value="Graph" id="graph_submit">
|
|
|
|
|
|
|
|
<img src="img/ajax-loader.gif" id="spinner" alt="ajax-spinner">
|
|
|
|
|
|
|
|
<div id="eval_stats"></div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="grouping-box">
|
|
|
|
<div id="chart_container">
|
|
|
|
<div id="chart"></div>
|
|
|
|
<div id="legend"></div>
|
|
|
|
</div>
|
2013-01-15 10:30:55 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|