Examples of MBeanOpers


Examples of io.fabric8.insight.metrics.model.MBeanOpers

    @Test
    public void testDefault() throws Exception {
        Query query = new Query("test", new HashSet<Request>(Arrays.asList(
                new MBeanAttrs("memory", "java.lang:type=Memory",
                        Arrays.asList("HeapMemoryUsage", "NonHeapMemoryUsage")),
                new MBeanOpers("deadlocks", "java.lang:type=Threading", "dumpAllThreads",
                        Arrays.<Object>asList(true, true), Arrays.<String>asList(boolean.class.getName(), boolean.class.getName()))
        )), null, null, null, 0, 0);

        System.gc();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.