Class FunctionInstanceStatsDataBaseImpl
- java.lang.Object
-
- org.apache.pulsar.common.policies.data.FunctionInstanceStatsDataBaseImpl
-
- All Implemented Interfaces:
org.apache.pulsar.common.policies.data.FunctionInstanceStatsDataBase
- Direct Known Subclasses:
FunctionInstanceStatsDataImpl
public class FunctionInstanceStatsDataBaseImpl extends java.lang.Object implements org.apache.pulsar.common.policies.data.FunctionInstanceStatsDataBaseFunction instance statistics data base.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.DoubleavgProcessLatencyAverage process latency for function for instance.longprocessedSuccessfullyTotalTotal number of records successfully processed by user function for instance.longreceivedTotalTotal number of records function received from source for instance.longsystemExceptionsTotalTotal number of system exceptions thrown for instance.longuserExceptionsTotalTotal number of user exceptions thrown for instance.
-
Constructor Summary
Constructors Constructor Description FunctionInstanceStatsDataBaseImpl()
-
-
-
Field Detail
-
receivedTotal
public long receivedTotal
Total number of records function received from source for instance.
-
processedSuccessfullyTotal
public long processedSuccessfullyTotal
Total number of records successfully processed by user function for instance.
-
systemExceptionsTotal
public long systemExceptionsTotal
Total number of system exceptions thrown for instance.
-
userExceptionsTotal
public long userExceptionsTotal
Total number of user exceptions thrown for instance.
-
avgProcessLatency
public java.lang.Double avgProcessLatency
Average process latency for function for instance.
-
-