Package com.dianping.cat.consumer.event

Examples of com.dianping.cat.consumer.event.EventAnalyzer


public class EventPerformanceTest extends ComponentTestCase {

  @Test
  public void test() throws Exception {
    EventAnalyzer analyzer = (EventAnalyzer)lookup(MessageAnalyzer.class,EventAnalyzer.ID);

    MessageTree tree = buildMessage();

    long current = System.currentTimeMillis();

    int size = 10000000;
    for (int i = 0; i < size; i++) {
      analyzer.process(tree);
    }
    System.out.println(analyzer.getReport("cat"));
    System.out.println("Cost " + (System.currentTimeMillis() - current) / 1000);
    //cost 28
  }
View Full Code Here

TOP

Related Classes of com.dianping.cat.consumer.event.EventAnalyzer

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.