Search in sources :

Example 11 with StatChart

use of com.navercorp.pinpoint.web.vo.stat.chart.StatChart in project pinpoint by naver.

the class ResponseTimeChartService method selectAgentChartList.

@Override
public List<StatChart> selectAgentChartList(String agentId, TimeWindow timeWindow) {
    StatChart agentStatChart = selectAgentChart(agentId, timeWindow);
    List<StatChart> result = new ArrayList<>(1);
    result.add(agentStatChart);
    return result;
}
Also used : ArrayList(java.util.ArrayList) StatChart(com.navercorp.pinpoint.web.vo.stat.chart.StatChart)

Example 12 with StatChart

use of com.navercorp.pinpoint.web.vo.stat.chart.StatChart in project pinpoint by naver.

the class JvmGcDetailedChartService method selectAgentChartList.

@Override
public List<StatChart> selectAgentChartList(String agentId, TimeWindow timeWindow) {
    StatChart agentStatChart = selectAgentChart(agentId, timeWindow);
    List<StatChart> result = new ArrayList<>(1);
    result.add(agentStatChart);
    return result;
}
Also used : ArrayList(java.util.ArrayList) StatChart(com.navercorp.pinpoint.web.vo.stat.chart.StatChart)

Example 13 with StatChart

use of com.navercorp.pinpoint.web.vo.stat.chart.StatChart in project pinpoint by naver.

the class DeadlockChartService method selectAgentChartList.

@Override
public List<StatChart> selectAgentChartList(String agentId, TimeWindow timeWindow) {
    StatChart agentStatChart = selectAgentChart(agentId, timeWindow);
    List<StatChart> result = new ArrayList<>(1);
    result.add(agentStatChart);
    return result;
}
Also used : ArrayList(java.util.ArrayList) StatChart(com.navercorp.pinpoint.web.vo.stat.chart.StatChart)

Example 14 with StatChart

use of com.navercorp.pinpoint.web.vo.stat.chart.StatChart in project pinpoint by naver.

the class FileDescriptorChartService method selectAgentChartList.

@Override
public List<StatChart> selectAgentChartList(String agentId, TimeWindow timeWindow) {
    StatChart agentStatChart = selectAgentChart(agentId, timeWindow);
    List<StatChart> result = new ArrayList<>(1);
    result.add(agentStatChart);
    return result;
}
Also used : ArrayList(java.util.ArrayList) StatChart(com.navercorp.pinpoint.web.vo.stat.chart.StatChart)

Aggregations

StatChart (com.navercorp.pinpoint.web.vo.stat.chart.StatChart)14 ArrayList (java.util.ArrayList)13 DataSourceKey (com.navercorp.pinpoint.common.server.bo.stat.join.JoinDataSourceListBo.DataSourceKey)1 AggreJoinDataSourceListBo (com.navercorp.pinpoint.web.vo.stat.AggreJoinDataSourceListBo)1 SampledAgentUriStat (com.navercorp.pinpoint.web.vo.stat.SampledAgentUriStat)1 SampledDataSourceList (com.navercorp.pinpoint.web.vo.stat.SampledDataSourceList)1 AgentUriStatChart (com.navercorp.pinpoint.web.vo.stat.chart.agent.AgentUriStatChart)1 DataSourceChart (com.navercorp.pinpoint.web.vo.stat.chart.agent.DataSourceChart)1 ApplicationDataSourceChart (com.navercorp.pinpoint.web.vo.stat.chart.application.ApplicationDataSourceChart)1