Package org.apache.avro.ipc.trace.SpanAggregator

Examples of org.apache.avro.ipc.trace.SpanAggregator.TraceFormationResults


    allSpans.addAll(cPlugin.storage.getAllSpans());
    allSpans.addAll(dPlugin.storage.getAllSpans());
   
    SpanAggregationResults results = SpanAggregator.getFullSpans(allSpans);
   
    TraceFormationResults traces = SpanAggregator.getTraces(results.completeSpans);
   
    assertEquals(1, traces.traces.size());
    assertEquals(0, traces.rejectedSpans.size());
   
    // Test debug printing of traces
View Full Code Here


    allSpans.addAll(cPlugin.storage.getAllSpans());
    allSpans.addAll(dPlugin.storage.getAllSpans());
   
    SpanAggregationResults results = SpanAggregator.getFullSpans(allSpans);
   
    TraceFormationResults traces = SpanAggregator.getTraces(results.completeSpans);
   
    assertEquals(1, traces.traces.size());
    assertEquals(0, traces.rejectedSpans.size());
   
    // Test debug printing of traces
View Full Code Here

TOP

Related Classes of org.apache.avro.ipc.trace.SpanAggregator.TraceFormationResults

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.