Package com.alibaba.druid.support.profile

Examples of com.alibaba.druid.support.profile.ProfileEntryKey


        }

        Assert.assertEquals(2, Profiler.getStatsMap().size());

        {
            ProfileEntryReqStat stat = Profiler.getStatsMap().get(new ProfileEntryKey("/", "com.xxx.a(int)",
                                                                                      Profiler.PROFILE_TYPE_SPRING));
            Assert.assertEquals(100, stat.getExecuteCount());
            Assert.assertEquals(100, stat.getExecuteTimeNanos());
        }

        {
            ProfileEntryReqStat stat = Profiler.getStatsMap().get(new ProfileEntryKey("com.xxx.a(int)",
                                                                                      "com.xxx.b(int)",
                                                                                      Profiler.PROFILE_TYPE_SPRING));
            Assert.assertEquals(1000 * 100, stat.getExecuteCount());
            Assert.assertEquals(1000 * 100, stat.getExecuteTimeNanos());
        }
View Full Code Here

TOP

Related Classes of com.alibaba.druid.support.profile.ProfileEntryKey

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.