Search in sources :

Example 1 with AgentResponseTimeViewModelList

use of com.navercorp.pinpoint.web.view.AgentResponseTimeViewModelList in project pinpoint by naver.

the class FilteredMapServiceImplTest method twoTier.

/**
 * USER -> ROOT_APP -> APP_A -> CACHE
 */
@Test
public void twoTier() {
    // Given
    Range originalRange = Range.newRange(1000, 2000);
    Range scanRange = Range.newRange(1000, 2000);
    final TimeWindow timeWindow = new TimeWindow(originalRange, TimeWindowDownSampler.SAMPLER);
    // root app span
    long rootSpanId = RANDOM.nextLong();
    long rootSpanStartTime = 1000L;
    long rootSpanCollectorAcceptTime = 1210L;
    int rootSpanElapsed = 200;
    SpanBo rootSpan = new TestTraceUtils.SpanBuilder("ROOT_APP", "root-agent").spanId(rootSpanId).startTime(rootSpanStartTime).collectorAcceptTime(rootSpanCollectorAcceptTime).elapsed(rootSpanElapsed).build();
    // app A span
    long appASpanId = RANDOM.nextLong();
    long appASpanStartTime = 1020L;
    long appASpanCollectorAcceptTime = 1090L;
    int appASpanElapsed = 160;
    SpanBo appASpan = new TestTraceUtils.SpanBuilder("APP_A", "app-a").spanId(appASpanId).parentSpan(rootSpan).startTime(appASpanStartTime).collectorAcceptTime(appASpanCollectorAcceptTime).elapsed(appASpanElapsed).build();
    // root app -> app A rpc span event
    SpanEventBo rootRpcSpanEvent = new TestTraceUtils.RpcSpanEventBuilder("www.foo.com/bar", 10, 190).nextSpanId(appASpanId).build();
    rootSpan.addSpanEvent(rootRpcSpanEvent);
    // app A -> cache span event
    int cacheStartElapsed = 20;
    int cacheEndElapsed = 130;
    SpanEventBo appACacheSpanEvent = new TestTraceUtils.CacheSpanEventBuilder("CacheName", "1.1.1.1", cacheStartElapsed, cacheEndElapsed).build();
    appASpan.addSpanEvent(appACacheSpanEvent);
    when(traceDao.selectAllSpans(anyList(), isNull())).thenReturn(Collections.singletonList(Arrays.asList(rootSpan, appASpan)));
    // When
    final FilteredMapServiceOption option = new FilteredMapServiceOption.Builder(Collections.emptyList(), originalRange, scanRange, 1, 1, Filter.acceptAllFilter(), 0).build();
    ApplicationMap applicationMap = filteredMapService.selectApplicationMapWithScatterData(option);
    // Then
    Collection<Node> nodes = applicationMap.getNodes();
    Assert.assertEquals(4, nodes.size());
    for (Node node : nodes) {
        Application application = node.getApplication();
        if (application.getName().equals("ROOT_APP") && application.getServiceType().getCode() == TestTraceUtils.USER_TYPE_CODE) {
            // USER node
            NodeHistogram nodeHistogram = node.getNodeHistogram();
            // histogram
            Histogram applicationHistogram = nodeHistogram.getApplicationHistogram();
            assertHistogram(applicationHistogram, 1, 0, 0, 0, 0);
            Map<String, Histogram> agentHistogramMap = nodeHistogram.getAgentHistogramMap();
            Assert.assertTrue(agentHistogramMap.isEmpty());
            // time histogram
            HistogramSchema histogramSchema = node.getServiceType().getHistogramSchema();
            List<ResponseTimeViewModel.TimeCount> expectedTimeCounts = Collections.singletonList(new ResponseTimeViewModel.TimeCount(timeWindow.refineTimestamp(rootSpanCollectorAcceptTime), 1));
            List<TimeViewModel> applicationTimeHistogram = nodeHistogram.getApplicationTimeHistogram(node.getTimeHistogramFormat());
            assertTimeHistogram(applicationTimeHistogram, histogramSchema.getFastSlot(), expectedTimeCounts);
            AgentResponseTimeViewModelList agentTimeHistogram = nodeHistogram.getAgentTimeHistogram(TimeHistogramFormat.V1);
            Assert.assertTrue(agentTimeHistogram.getAgentResponseTimeViewModelList().isEmpty());
        } else if (application.getName().equals("ROOT_APP") && application.getServiceType().getCode() == TestTraceUtils.TEST_STAND_ALONE_TYPE_CODE) {
            // ROOT_APP node
            NodeHistogram nodeHistogram = node.getNodeHistogram();
            // histogram
            Histogram applicationHistogram = nodeHistogram.getApplicationHistogram();
            assertHistogram(applicationHistogram, 1, 0, 0, 0, 0);
            Map<String, Histogram> agentHistogramMap = nodeHistogram.getAgentHistogramMap();
            assertAgentHistogram(agentHistogramMap, "root-agent", 1, 0, 0, 0, 0);
            // time histogram
            HistogramSchema histogramSchema = node.getServiceType().getHistogramSchema();
            List<ResponseTimeViewModel.TimeCount> expectedTimeCounts = Collections.singletonList(new ResponseTimeViewModel.TimeCount(timeWindow.refineTimestamp(rootSpanCollectorAcceptTime), 1));
            List<TimeViewModel> applicationTimeHistogram = nodeHistogram.getApplicationTimeHistogram(node.getTimeHistogramFormat());
            assertTimeHistogram(applicationTimeHistogram, histogramSchema.getFastSlot(), expectedTimeCounts);
            AgentResponseTimeViewModelList agentTimeHistogram = nodeHistogram.getAgentTimeHistogram(TimeHistogramFormat.V1);
            assertAgentTimeHistogram(agentTimeHistogram.getAgentResponseTimeViewModelList(), "root-agent", histogramSchema.getFastSlot(), expectedTimeCounts);
        } else if (application.getName().equals("APP_A") && application.getServiceType().getCode() == TestTraceUtils.TEST_STAND_ALONE_TYPE_CODE) {
            // APP_A node
            NodeHistogram nodeHistogram = node.getNodeHistogram();
            // histogram
            Histogram applicationHistogram = nodeHistogram.getApplicationHistogram();
            assertHistogram(applicationHistogram, 1, 0, 0, 0, 0);
            Map<String, Histogram> agentHistogramMap = nodeHistogram.getAgentHistogramMap();
            assertAgentHistogram(agentHistogramMap, "app-a", 1, 0, 0, 0, 0);
            // time histogram
            HistogramSchema histogramSchema = node.getServiceType().getHistogramSchema();
            List<ResponseTimeViewModel.TimeCount> expectedTimeCounts = Collections.singletonList(new ResponseTimeViewModel.TimeCount(timeWindow.refineTimestamp(appASpanCollectorAcceptTime), 1));
            List<TimeViewModel> applicationTimeHistogram = nodeHistogram.getApplicationTimeHistogram(node.getTimeHistogramFormat());
            assertTimeHistogram(applicationTimeHistogram, histogramSchema.getFastSlot(), expectedTimeCounts);
            AgentResponseTimeViewModelList agentTimeHistogram = nodeHistogram.getAgentTimeHistogram(TimeHistogramFormat.V1);
            assertAgentTimeHistogram(agentTimeHistogram.getAgentResponseTimeViewModelList(), "app-a", histogramSchema.getFastSlot(), expectedTimeCounts);
        } else if (application.getName().equals("CacheName") && application.getServiceType().getCode() == TestTraceUtils.CACHE_TYPE_CODE) {
            // CACHE node
            NodeHistogram nodeHistogram = node.getNodeHistogram();
            // histogram
            Histogram applicationHistogram = nodeHistogram.getApplicationHistogram();
            assertHistogram(applicationHistogram, 0, 1, 0, 0, 0);
            Map<String, Histogram> agentHistogramMap = nodeHistogram.getAgentHistogramMap();
            assertAgentHistogram(agentHistogramMap, "1.1.1.1", 0, 1, 0, 0, 0);
            // time histogram
            HistogramSchema histogramSchema = node.getServiceType().getHistogramSchema();
            List<ResponseTimeViewModel.TimeCount> expectedTimeCounts = Collections.singletonList(new ResponseTimeViewModel.TimeCount(timeWindow.refineTimestamp(appASpanStartTime + cacheStartElapsed), 1));
            List<TimeViewModel> applicationTimeHistogram = nodeHistogram.getApplicationTimeHistogram(node.getTimeHistogramFormat());
            assertTimeHistogram(applicationTimeHistogram, histogramSchema.getNormalSlot(), expectedTimeCounts);
            AgentResponseTimeViewModelList agentTimeHistogram = nodeHistogram.getAgentTimeHistogram(TimeHistogramFormat.V1);
            assertAgentTimeHistogram(agentTimeHistogram.getAgentResponseTimeViewModelList(), "1.1.1.1", histogramSchema.getNormalSlot(), expectedTimeCounts);
        } else {
            fail("Unexpected node : " + node);
        }
    }
    Collection<Link> links = applicationMap.getLinks();
    Assert.assertEquals(3, links.size());
    for (Link link : links) {
        Application fromApplication = link.getFrom().getApplication();
        Application toApplication = link.getTo().getApplication();
        if ((fromApplication.getName().equals("ROOT_APP") && fromApplication.getServiceType().getCode() == TestTraceUtils.USER_TYPE_CODE) && (toApplication.getName().equals("ROOT_APP") && toApplication.getServiceType().getCode() == TestTraceUtils.TEST_STAND_ALONE_TYPE_CODE)) {
            // histogram
            Histogram histogram = link.getHistogram();
            assertHistogram(histogram, 1, 0, 0, 0, 0);
            // time histogram
            List<TimeViewModel> linkApplicationTimeSeriesHistogram = link.getLinkApplicationTimeSeriesHistogram();
            HistogramSchema targetHistogramSchema = toApplication.getServiceType().getHistogramSchema();
            List<ResponseTimeViewModel.TimeCount> expectedTimeCounts = Collections.singletonList(new ResponseTimeViewModel.TimeCount(timeWindow.refineTimestamp(rootSpanCollectorAcceptTime), 1));
            assertTimeHistogram(linkApplicationTimeSeriesHistogram, targetHistogramSchema.getFastSlot(), expectedTimeCounts);
        } else if ((fromApplication.getName().equals("ROOT_APP") && fromApplication.getServiceType().getCode() == TestTraceUtils.TEST_STAND_ALONE_TYPE_CODE) && (toApplication.getName().equals("APP_A") && toApplication.getServiceType().getCode() == TestTraceUtils.TEST_STAND_ALONE_TYPE_CODE)) {
            // histogram
            Histogram histogram = link.getHistogram();
            assertHistogram(histogram, 1, 0, 0, 0, 0);
            // time histogram
            List<TimeViewModel> linkApplicationTimeSeriesHistogram = link.getLinkApplicationTimeSeriesHistogram();
            HistogramSchema targetHistogramSchema = toApplication.getServiceType().getHistogramSchema();
            List<ResponseTimeViewModel.TimeCount> expectedTimeCounts = Collections.singletonList(new ResponseTimeViewModel.TimeCount(timeWindow.refineTimestamp(appASpanCollectorAcceptTime), 1));
            assertTimeHistogram(linkApplicationTimeSeriesHistogram, targetHistogramSchema.getFastSlot(), expectedTimeCounts);
        } else if ((fromApplication.getName().equals("APP_A") && fromApplication.getServiceType().getCode() == TestTraceUtils.TEST_STAND_ALONE_TYPE_CODE) && (toApplication.getName().equals("CacheName") && toApplication.getServiceType().getCode() == TestTraceUtils.CACHE_TYPE_CODE)) {
            // histogram
            Histogram histogram = link.getHistogram();
            assertHistogram(histogram, 0, 1, 0, 0, 0);
            // time histogram
            List<TimeViewModel> linkApplicationTimeSeriesHistogram = link.getLinkApplicationTimeSeriesHistogram();
            HistogramSchema targetHistogramSchema = toApplication.getServiceType().getHistogramSchema();
            List<ResponseTimeViewModel.TimeCount> expectedTimeCounts = Collections.singletonList(new ResponseTimeViewModel.TimeCount(timeWindow.refineTimestamp(appASpanStartTime + cacheStartElapsed), 1));
            assertTimeHistogram(linkApplicationTimeSeriesHistogram, targetHistogramSchema.getNormalSlot(), expectedTimeCounts);
        } else {
            Assert.fail("Unexpected link : " + link);
        }
    }
}
Also used : ApplicationMap(com.navercorp.pinpoint.web.applicationmap.ApplicationMap) NodeHistogram(com.navercorp.pinpoint.web.applicationmap.histogram.NodeHistogram) Histogram(com.navercorp.pinpoint.web.applicationmap.histogram.Histogram) Node(com.navercorp.pinpoint.web.applicationmap.nodes.Node) ArgumentMatchers.anyString(org.mockito.ArgumentMatchers.anyString) HistogramSchema(com.navercorp.pinpoint.common.trace.HistogramSchema) AgentResponseTimeViewModelList(com.navercorp.pinpoint.web.view.AgentResponseTimeViewModelList) ArgumentMatchers.anyList(org.mockito.ArgumentMatchers.anyList) List(java.util.List) SpanEventBo(com.navercorp.pinpoint.common.server.bo.SpanEventBo) AgentResponseTimeViewModelList(com.navercorp.pinpoint.web.view.AgentResponseTimeViewModelList) AgentResponseTimeViewModel(com.navercorp.pinpoint.web.view.AgentResponseTimeViewModel) ResponseTimeViewModel(com.navercorp.pinpoint.web.view.ResponseTimeViewModel) NodeHistogram(com.navercorp.pinpoint.web.applicationmap.histogram.NodeHistogram) Range(com.navercorp.pinpoint.web.vo.Range) TimeWindow(com.navercorp.pinpoint.web.util.TimeWindow) SpanBo(com.navercorp.pinpoint.common.server.bo.SpanBo) TestTraceUtils(com.navercorp.pinpoint.web.TestTraceUtils) AgentResponseTimeViewModel(com.navercorp.pinpoint.web.view.AgentResponseTimeViewModel) TimeViewModel(com.navercorp.pinpoint.web.view.TimeViewModel) ResponseTimeViewModel(com.navercorp.pinpoint.web.view.ResponseTimeViewModel) Application(com.navercorp.pinpoint.web.vo.Application) Map(java.util.Map) ApplicationMap(com.navercorp.pinpoint.web.applicationmap.ApplicationMap) Link(com.navercorp.pinpoint.web.applicationmap.link.Link) Test(org.junit.Test)

Example 2 with AgentResponseTimeViewModelList

use of com.navercorp.pinpoint.web.view.AgentResponseTimeViewModelList in project pinpoint by naver.

the class Link method getSourceAgentTimeSeriesHistogram.

public AgentResponseTimeViewModelList getSourceAgentTimeSeriesHistogram() {
    // we need Target (to)'s time since time in link is RPC-based
    AgentTimeHistogramBuilder builder = new AgentTimeHistogramBuilder(toNode.getApplication(), range);
    AgentTimeHistogram applicationTimeSeriesHistogram = builder.buildSource(sourceLinkCallDataMap);
    AgentResponseTimeViewModelList agentResponseTimeViewModelList = new AgentResponseTimeViewModelList(applicationTimeSeriesHistogram.createViewModel(timeHistogramFormat));
    return agentResponseTimeViewModelList;
}
Also used : AgentTimeHistogramBuilder(com.navercorp.pinpoint.web.applicationmap.histogram.AgentTimeHistogramBuilder) AgentTimeHistogram(com.navercorp.pinpoint.web.applicationmap.histogram.AgentTimeHistogram) AgentResponseTimeViewModelList(com.navercorp.pinpoint.web.view.AgentResponseTimeViewModelList)

Example 3 with AgentResponseTimeViewModelList

use of com.navercorp.pinpoint.web.view.AgentResponseTimeViewModelList in project pinpoint by naver.

the class Link method getSourceAgentTimeSeriesHistogram.

public AgentResponseTimeViewModelList getSourceAgentTimeSeriesHistogram() {
    // we need Target (to)'s time since time in link is RPC-based
    AgentTimeHistogramBuilder builder = new AgentTimeHistogramBuilder(toNode.getApplication(), range);
    AgentTimeHistogram applicationTimeSeriesHistogram = builder.buildSource(sourceLinkCallDataMap);
    AgentResponseTimeViewModelList agentResponseTimeViewModelList = new AgentResponseTimeViewModelList(applicationTimeSeriesHistogram.createViewModel());
    return agentResponseTimeViewModelList;
}
Also used : AgentResponseTimeViewModelList(com.navercorp.pinpoint.web.view.AgentResponseTimeViewModelList)

Aggregations

AgentResponseTimeViewModelList (com.navercorp.pinpoint.web.view.AgentResponseTimeViewModelList)3 SpanBo (com.navercorp.pinpoint.common.server.bo.SpanBo)1 SpanEventBo (com.navercorp.pinpoint.common.server.bo.SpanEventBo)1 HistogramSchema (com.navercorp.pinpoint.common.trace.HistogramSchema)1 TestTraceUtils (com.navercorp.pinpoint.web.TestTraceUtils)1 ApplicationMap (com.navercorp.pinpoint.web.applicationmap.ApplicationMap)1 AgentTimeHistogram (com.navercorp.pinpoint.web.applicationmap.histogram.AgentTimeHistogram)1 AgentTimeHistogramBuilder (com.navercorp.pinpoint.web.applicationmap.histogram.AgentTimeHistogramBuilder)1 Histogram (com.navercorp.pinpoint.web.applicationmap.histogram.Histogram)1 NodeHistogram (com.navercorp.pinpoint.web.applicationmap.histogram.NodeHistogram)1 Link (com.navercorp.pinpoint.web.applicationmap.link.Link)1 Node (com.navercorp.pinpoint.web.applicationmap.nodes.Node)1 TimeWindow (com.navercorp.pinpoint.web.util.TimeWindow)1 AgentResponseTimeViewModel (com.navercorp.pinpoint.web.view.AgentResponseTimeViewModel)1 ResponseTimeViewModel (com.navercorp.pinpoint.web.view.ResponseTimeViewModel)1 TimeViewModel (com.navercorp.pinpoint.web.view.TimeViewModel)1 Application (com.navercorp.pinpoint.web.vo.Application)1 Range (com.navercorp.pinpoint.web.vo.Range)1 List (java.util.List)1 Map (java.util.Map)1