Authored by linlong

memcached页面增加更新时间

... ... @@ -5,6 +5,7 @@ import com.ui.model.BaseResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;
... ... @@ -37,4 +38,16 @@ public class MemcachedMonitorCtrl {
return baseResponse;
}
/**
* 查询所有的twemproxy 与 独立 redis的信息
*
* @return
*/
@RequestMapping(value = "/updateTime")
// @ResponseBody
public String queryUpdateTime() {
String updateTime = httpRestClient.defaultGet("/memcachedMonitor/updateTime", String.class);
updateTime=updateTime.substring(10,updateTime.length()-4);
return updateTime;
}
}
... ...
... ... @@ -73,7 +73,7 @@
<div class="container-fluid">
<div class="widget-box">
<div class="widget-title">
<h5>Memcached状态预览 <font color="red">(最近2分钟)</font></h5>
<h5>Memcached状态 (<span id="updateTime"></span> 更新)</h5>
</div>
</div>
... ... @@ -96,6 +96,15 @@
<script type="text/javascript">
$(function () {
$.ajax({
url: contextPath + "memcachedMonitor/updateTime",
type: 'POST',
//请求成功后触发
success: function (data) {
$("#updateTime").text(data);
}
});
$("#tMemTable").table({
url: contextPath + "memcachedMonitor/allMemcached",
striped: true,
... ...