mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-16 18:39:18 +08:00
776103068f
PUBLISHED_FROM=54f54211919bb2276e02b4d10306ffa5540a9313
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);
|
|
});
|