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;
}
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;
}
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;
}
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;
}
Aggregations