mirror of https://github.com/Aidaho12/haproxy-wi
29 lines
603 B
HTML
29 lines
603 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block content %}
|
||
|
<style>
|
||
|
iframe {
|
||
|
border: none;
|
||
|
}
|
||
|
</style>
|
||
|
<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 );
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
|
||
|
loadMetrics()
|
||
|
|
||
|
</script>
|
||
|
{% endblock %}
|