$(document).ready(function() {
loaddata();
setInterval(loaddata, 3000);
});
function loaddata() {
$.getJSON("Common/ServerInfoHandler.ashx?format=json&jsoncallback=?", {}, function(json) {
$("#labServerName").text("服务器名称:" + json.ServerName);
$("#labServerIP").text("服务器地址:" + json.ServerIP);
$("#NumberOfProcessors").text("CPU数量:" + json.CPUNum);
$("#ProcessorType").text("CPU类型:" + json.CPUType);
$("#ProcessorLevel").text("CPU级别:" + json.CPULevel);
$("#MemoryLoad").text("内存使用率:" + json.MemoryLoad);
$("#TotalPhys").text("物理内存共有:" + json.MemoryTotalPhys);
$("#AvailPhys").text("可使用的物理内存有:" +
$("#Date").text("服务器时间:" + json.DateTime);
$("#cpu").text("CPU平均使用率:" + json.CPULoad);
});
}
新闻热点
疑难解答