Package eu.stratosphere.nephele.profiling.types

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


      bufferedMemorySum += profilingData.getBufferedMemory();
      cachedMemorySum += profilingData.getCachedMemory();
      cachedSwapMemorySum += profilingData.getCachedSwapMemory();
    }

    final InstanceSummaryProfilingEvent instanceSummary = new InstanceSummaryProfilingEvent(profilingIntervalSum
      / numberOfInstances, ioWaitCPUSum / numberOfInstances, idleCPUSum / numberOfInstances, userCPUSum
      / numberOfInstances, systemCPUSum / numberOfInstances, hardIrqCPUSum / numberOfInstances, softIrqCPUSum
      / numberOfInstances, totalMemorySum / (long) numberOfInstances, freeMemorySum / (long) numberOfInstances,
      bufferedMemorySum / (long) numberOfInstances, cachedMemorySum / (long) numberOfInstances,
      cachedSwapMemorySum / (long) numberOfInstances, receivedBytesSum / (long) numberOfInstances,
View Full Code Here


          List<ProfilingListener> jobListeners = this.registeredListeners.get(jobID);
          if (jobListeners == null) {
            continue;
          }

          final InstanceSummaryProfilingEvent instanceSummary = jobProfilingData
            .getInstanceSummaryProfilingData(timestamp);

          final Iterator<ProfilingListener> listenerIterator = jobListeners.iterator();
          while (listenerIterator.hasNext()) {
            final ProfilingListener profilingListener = listenerIterator.next();
View Full Code Here

TOP

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

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.