You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
haproxy-wi/app/templates/metrics.html

44 lines
904 B

{% extends "base.html" %}
{% block content %}
<style>
iframe {
border: none;
6 years ago
padding: 10px;
}
6 years ago
table, th, tr, td {
border: 1px solid #ddd;
align: center;
text-align: center;
}
th, tr, td {
width: 6%;
padding: 10px;
}
</style>
6 years ago
6 years ago
<div id="table_metrics"></div>
<div id="metrics_iframe"></div>
<script>
function callIframe(url, callback) {
$('#metrics_iframe').html('<iframe id="metrics" style="width:100%;height:100%;" />');
$('iframe#metrics').attr('src', url);
$('iframe#metrics').load(function() {
callback(this);
});
}
function loadMetrics() {
callIframe('templates/metrics_out.html', function(){
$.get( "options.py?metrics=1&token="+$('#token').val(), function( data ) {
$( ".result" ).html( data );
});
6 years ago
$.get( "options.py?table_metrics=1&token="+$('#token').val(), function( data ) {
$( "#table_metrics" ).html( data );
});
});
}
loadMetrics()
</script>
{% endblock %}