|
|
package com.ui.ctrl;
|
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
|
|
import com.ui.contants.HttpUriContants;
|
|
|
import com.ui.http.HttpRestClient;
|
|
|
import com.ui.model.BaseResponse;
|
|
|
import com.ui.model.req.ZkInfoReq;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
* Created by yoho on 2016/6/14.
|
|
|
* 查询机器信息
|
|
|
*/
|
|
|
@Controller
|
|
|
@RequestMapping("zkMonitor")
|
|
|
public class ZkMonitorCtrl {
|
|
|
|
|
|
|
|
|
Logger log = LoggerFactory.getLogger(HostInfoCtrl.class);
|
|
|
|
|
|
@Autowired
|
|
|
HttpRestClient httpRestClient;
|
|
|
|
|
|
|
|
|
@RequestMapping("/getZkMonitorRecords")
|
|
|
@ResponseBody
|
|
|
public BaseResponse getZkMonitorRecords(ZkInfoReq req) throws Exception {
|
|
|
BaseResponse response=httpRestClient.defaultPost(HttpUriContants.GET_ZK_INFO, req, BaseResponse.class);
|
|
|
return response;
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
...
|
...
|
|