Class NoopRowIngestionMeters
- java.lang.Object
-
- org.apache.druid.segment.incremental.NoopRowIngestionMeters
-
- All Implemented Interfaces:
InputStats,RowIngestionMeters
public class NoopRowIngestionMeters extends Object implements RowIngestionMeters
This class is used only inRealtimeIndexTaskwhich is deprecated now. Consider usingRowIngestionMetersFactoryinstead.
-
-
Field Summary
-
Fields inherited from interface org.apache.druid.segment.incremental.RowIngestionMeters
BUILD_SEGMENTS, DETERMINE_PARTITIONS, PROCESSED, PROCESSED_BYTES, PROCESSED_WITH_ERROR, THROWN_AWAY, UNPARSEABLE
-
-
Constructor Summary
Constructors Constructor Description NoopRowIngestionMeters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>getMovingAverages()longgetProcessed()longgetProcessedWithError()longgetThrownAway()RowIngestionMetersTotalsgetTotals()longgetUnparseable()voidincrementProcessed()voidincrementProcessedWithError()voidincrementThrownAway()voidincrementUnparseable()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.druid.segment.incremental.RowIngestionMeters
getProcessedBytes, incrementProcessedBytes
-
-
-
-
Method Detail
-
getProcessed
public long getProcessed()
- Specified by:
getProcessedin interfaceRowIngestionMeters
-
incrementProcessed
public void incrementProcessed()
- Specified by:
incrementProcessedin interfaceRowIngestionMeters
-
getProcessedWithError
public long getProcessedWithError()
- Specified by:
getProcessedWithErrorin interfaceRowIngestionMeters
-
incrementProcessedWithError
public void incrementProcessedWithError()
- Specified by:
incrementProcessedWithErrorin interfaceRowIngestionMeters
-
getUnparseable
public long getUnparseable()
- Specified by:
getUnparseablein interfaceRowIngestionMeters
-
incrementUnparseable
public void incrementUnparseable()
- Specified by:
incrementUnparseablein interfaceRowIngestionMeters
-
getThrownAway
public long getThrownAway()
- Specified by:
getThrownAwayin interfaceRowIngestionMeters
-
incrementThrownAway
public void incrementThrownAway()
- Specified by:
incrementThrownAwayin interfaceRowIngestionMeters
-
getTotals
public RowIngestionMetersTotals getTotals()
- Specified by:
getTotalsin interfaceRowIngestionMeters
-
getMovingAverages
public Map<String,Object> getMovingAverages()
- Specified by:
getMovingAveragesin interfaceRowIngestionMeters
-
-