Search in sources :

Example 11 with TActiveThreadDump

use of com.navercorp.pinpoint.thrift.dto.command.TActiveThreadDump in project pinpoint by naver.

the class AgentActiveThreadDumpListSerializerTest method createThreadDumpList.

private AgentActiveThreadDumpList createThreadDumpList(ThreadInfo[] allThreadInfo) {
    List<TActiveThreadDump> activeThreadDumpList = new ArrayList<>();
    for (ThreadInfo threadInfo : allThreadInfo) {
        TActiveThreadDump tActiveThreadDump = new TActiveThreadDump();
        tActiveThreadDump.setStartTime(System.currentTimeMillis() - 1000);
        final ThreadDumpMetricSnapshot threadDumpMetricSnapshot = ThreadDumpUtils.createThreadDump(threadInfo);
        final TThreadDump threadDump = this.threadDumpThriftMessageConverter.toMessage(threadDumpMetricSnapshot);
        tActiveThreadDump.setThreadDump(threadDump);
        activeThreadDumpList.add(tActiveThreadDump);
    }
    AgentActiveThreadDumpFactory factory = new AgentActiveThreadDumpFactory();
    return factory.create1(activeThreadDumpList);
}
Also used : ThreadInfo(java.lang.management.ThreadInfo) AgentActiveThreadDumpFactory(com.navercorp.pinpoint.web.vo.AgentActiveThreadDumpFactory) TThreadDump(com.navercorp.pinpoint.thrift.dto.command.TThreadDump) ThreadDumpMetricSnapshot(com.navercorp.pinpoint.profiler.monitor.metric.deadlock.ThreadDumpMetricSnapshot) ArrayList(java.util.ArrayList) TActiveThreadDump(com.navercorp.pinpoint.thrift.dto.command.TActiveThreadDump)

Example 12 with TActiveThreadDump

use of com.navercorp.pinpoint.thrift.dto.command.TActiveThreadDump in project pinpoint by naver.

the class CommandGrpcToThriftMessageConverter method buildTActiveThreadDump.

private TActiveThreadDump buildTActiveThreadDump(PActiveThreadDump pActiveThreadDump) {
    TActiveThreadDump tActiveThreadDump = new TActiveThreadDump();
    tActiveThreadDump.setStartTime(pActiveThreadDump.getStartTime());
    tActiveThreadDump.setSampled(pActiveThreadDump.getSampled());
    if (pActiveThreadDump.getSampled()) {
        tActiveThreadDump.setLocalTraceId(pActiveThreadDump.getLocalTraceId());
        tActiveThreadDump.setTransactionId(pActiveThreadDump.getTransactionId());
        tActiveThreadDump.setEntryPoint(pActiveThreadDump.getEntryPoint());
    }
    tActiveThreadDump.setThreadDump(buildTThreadDump(pActiveThreadDump.getThreadDump()));
    return tActiveThreadDump;
}
Also used : TActiveThreadDump(com.navercorp.pinpoint.thrift.dto.command.TActiveThreadDump)

Example 13 with TActiveThreadDump

use of com.navercorp.pinpoint.thrift.dto.command.TActiveThreadDump in project pinpoint by naver.

the class AgentCommandController method getActiveThreadDump.

@GetMapping(value = "/activeThreadDump")
public CodeResult getActiveThreadDump(@RequestParam(value = "applicationName") String applicationName, @RequestParam(value = "agentId") String agentId, @RequestParam(value = "limit", required = false, defaultValue = "-1") int limit, @RequestParam(value = "threadName", required = false) String[] threadNameList, @RequestParam(value = "localTraceId", required = false) Long[] localTraceIdList) throws TException {
    if (!webProperties.isEnableActiveThreadDump()) {
        return new CodeResult(CODE_FAIL, "Disable activeThreadDump option. 'config.enable.activeThreadDump=false'");
    }
    AgentInfo agentInfo = agentService.getAgentInfo(applicationName, agentId);
    if (agentInfo == null) {
        return new CodeResult(CODE_FAIL, String.format("Can't find suitable Agent(%s/%s)", applicationName, agentId));
    }
    TCmdActiveThreadDump threadDump = new TCmdActiveThreadDump();
    if (limit > 0) {
        threadDump.setLimit(limit);
    }
    if (threadNameList != null) {
        threadDump.setThreadNameList(Arrays.asList(threadNameList));
    }
    if (localTraceIdList != null) {
        threadDump.setLocalTraceIdList(Arrays.asList(localTraceIdList));
    }
    try {
        PinpointRouteResponse pinpointRouteResponse = agentService.invoke(agentInfo, threadDump);
        if (isSuccessResponse(pinpointRouteResponse)) {
            TBase<?, ?> result = pinpointRouteResponse.getResponse();
            if (result instanceof TCmdActiveThreadDumpRes) {
                TCmdActiveThreadDumpRes activeThreadDumpResponse = (TCmdActiveThreadDumpRes) result;
                List<TActiveThreadDump> activeThreadDumps = activeThreadDumpResponse.getThreadDumps();
                AgentActiveThreadDumpFactory factory = new AgentActiveThreadDumpFactory();
                AgentActiveThreadDumpList activeThreadDumpList = factory.create1(activeThreadDumps);
                Map<String, Object> responseData = createResponseData(activeThreadDumpList, activeThreadDumpResponse.getType(), activeThreadDumpResponse.getSubType(), activeThreadDumpResponse.getVersion());
                return new CodeResult(CODE_SUCCESS, responseData);
            }
        }
        return handleFailedResponse(pinpointRouteResponse);
    } catch (TException e) {
        return new CodeResult(CODE_FAIL, e.getMessage());
    }
}
Also used : AgentActiveThreadDumpList(com.navercorp.pinpoint.web.vo.AgentActiveThreadDumpList) TException(org.apache.thrift.TException) CodeResult(com.navercorp.pinpoint.web.vo.CodeResult) TCmdActiveThreadDumpRes(com.navercorp.pinpoint.thrift.dto.command.TCmdActiveThreadDumpRes) AgentActiveThreadDumpFactory(com.navercorp.pinpoint.web.vo.AgentActiveThreadDumpFactory) AgentInfo(com.navercorp.pinpoint.web.vo.AgentInfo) TCmdActiveThreadDump(com.navercorp.pinpoint.thrift.dto.command.TCmdActiveThreadDump) PinpointRouteResponse(com.navercorp.pinpoint.web.cluster.PinpointRouteResponse) TActiveThreadDump(com.navercorp.pinpoint.thrift.dto.command.TActiveThreadDump) GetMapping(org.springframework.web.bind.annotation.GetMapping)

Aggregations

TActiveThreadDump (com.navercorp.pinpoint.thrift.dto.command.TActiveThreadDump)13 TCmdActiveThreadDump (com.navercorp.pinpoint.thrift.dto.command.TCmdActiveThreadDump)6 TCmdActiveThreadDumpRes (com.navercorp.pinpoint.thrift.dto.command.TCmdActiveThreadDumpRes)5 TThreadDump (com.navercorp.pinpoint.thrift.dto.command.TThreadDump)4 ArrayList (java.util.ArrayList)4 ThreadDumpMetricSnapshot (com.navercorp.pinpoint.profiler.monitor.metric.deadlock.ThreadDumpMetricSnapshot)3 AgentActiveThreadDumpFactory (com.navercorp.pinpoint.web.vo.AgentActiveThreadDumpFactory)3 ActiveTraceSnapshot (com.navercorp.pinpoint.profiler.context.active.ActiveTraceSnapshot)2 PinpointRouteResponse (com.navercorp.pinpoint.web.cluster.PinpointRouteResponse)2 AgentActiveThreadDumpList (com.navercorp.pinpoint.web.vo.AgentActiveThreadDumpList)2 AgentInfo (com.navercorp.pinpoint.web.vo.AgentInfo)2 ThreadInfo (java.lang.management.ThreadInfo)2 TException (org.apache.thrift.TException)2 ActiveTraceInfo (com.navercorp.pinpoint.profiler.context.active.ActiveTraceInfo)1 UnsampledActiveTraceSnapshot (com.navercorp.pinpoint.profiler.context.active.UnsampledActiveTraceSnapshot)1 CodeResult (com.navercorp.pinpoint.web.vo.CodeResult)1 Test (org.junit.Test)1 GetMapping (org.springframework.web.bind.annotation.GetMapping)1 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)1