mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-04 18:29:01 +08:00
eaef5bd133
This reverts commit 1a17e17c462bdd4e1d26d8742f8b7087273e04c2. PUBLISHED_FROM=80028de308c9a021955d1425d2bfee8feb85f193
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);
|
|
});
|