17 lines
572 B
HTML
17 lines
572 B
HTML
<%+header%>
|
|
<div class="cbi-map">
|
|
<h2 name="content"><%=translate("NetData")%></h2>
|
|
<script type="text/javascript">//<![CDATA[
|
|
function upnetdata(button) {
|
|
|
|
(new XHR()).post('<%=controller%>/admin/status/netdata/call', { token: '<%=token%>' }, check);
|
|
}
|
|
//]]></script>
|
|
|
|
<iframe id="netdata" style="width: 100%; min-height: 1200px; border: none; border-radius: 3px;"></iframe>
|
|
</div>
|
|
<script type="text/javascript">
|
|
document.getElementById("netdata").src = "http://" + window.location.hostname + ":19999";
|
|
</script>
|
|
<%+footer%>
|