mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-12 23:49:00 +08:00
13 lines
289 B
JavaScript
13 lines
289 B
JavaScript
|
$(document).ready(function() {
|
||
|
// Start 1-second timer to call RESTful endpoint
|
||
|
setInterval(function() {
|
||
|
$.ajax({
|
||
|
url: '/get_cpu_usage',
|
||
|
dataType: 'json',
|
||
|
success: function(json) {
|
||
|
$('#cpu_usage').text(json.result + '% ');
|
||
|
}
|
||
|
});
|
||
|
}, 1000);
|
||
|
});
|