com.alibaba.arthas.tunnel.server.app.web.StatController Maven / Gradle / Ivy
package com.alibaba.arthas.tunnel.server.app.web;
import java.util.HashMap;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
/**
* arthas agent数据回报的演示接口
* @author hengyunabc 2019-09-24
*
*/
@Controller
public class StatController {
private final static Logger logger = LoggerFactory.getLogger(StatController.class);
@RequestMapping(value = "/api/stat")
@ResponseBody
public Map execute(@RequestParam(value = "ip", required = true) String ip,
@RequestParam(value = "version", required = true) String version,
@RequestParam(value = "agentId", required = false) String agentId,
@RequestParam(value = "command", required = true) String command,
@RequestParam(value = "arguments", required = false, defaultValue = "") String arguments) {
logger.info("arthas stat, ip: {}, version: {}, agentId: {}, command: {}, arguments: {}", ip, version, agentId, command, arguments);
Map result = new HashMap<>();
result.put("success", true);
return result;
}
}