Package eu.stratosphere.nephele.profiling.types

Examples of eu.stratosphere.nephele.profiling.types.SingleInstanceProfilingEvent


        final JobProfilingData jobProfilingData = this.registeredJobs.get(jobID);
        if (!jobProfilingData.instanceAllocatedByJob(profilingData)) {
          continue;
        }

        final SingleInstanceProfilingEvent singleInstanceProfilingEvent = new SingleInstanceProfilingEvent(
          profilingData.getProfilingInterval(), profilingData.getIOWaitCPU(), profilingData.getIdleCPU(),
          profilingData.getUserCPU(), profilingData.getSystemCPU(), profilingData.getHardIrqCPU(),
          profilingData.getSoftIrqCPU(), profilingData.getTotalMemory(), profilingData.getFreeMemory(),
          profilingData.getBufferedMemory(), profilingData.getCachedMemory(), profilingData
            .getCachedSwapMemory(), profilingData.getReceivedBytes(), profilingData.getTransmittedBytes(),
View Full Code Here

TOP

Related Classes of eu.stratosphere.nephele.profiling.types.SingleInstanceProfilingEvent

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.