Package org.apache.karaf.diagnostic.core.providers

Examples of org.apache.karaf.diagnostic.core.providers.EnvironmentDumpProvider


        return new ZipDumpDestination(file);
    }

    public static void dump(BundleContext bundleContext, DumpDestination destination) {
        List<DumpProvider> providers = new ArrayList<DumpProvider>();
        providers.add(new EnvironmentDumpProvider(bundleContext));
        providers.add(new MemoryDumpProvider());
        providers.add(new ThreadDumpProvider());
        providers.add(new HeapDumpProvider());
        providers.add(new BundleDumpProvider(bundleContext));
        for (DumpProvider provider : providers) {
View Full Code Here


        return new ZipDumpDestination(file);
    }

    public static void dump(BundleContext bundleContext, DumpDestination destination) {
        List<DumpProvider> providers = new ArrayList<DumpProvider>();
        providers.add(new EnvironmentDumpProvider(bundleContext));
        providers.add(new MemoryDumpProvider());
        providers.add(new ThreadDumpProvider());
        providers.add(new HeapDumpProvider());
        providers.add(new BundleDumpProvider(bundleContext));
        for (DumpProvider provider : providers) {
View Full Code Here

TOP

Related Classes of org.apache.karaf.diagnostic.core.providers.EnvironmentDumpProvider

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.