Package org.pentaho.di.core.logging
Class LoggingMetric
- java.lang.Object
-
- org.pentaho.di.core.logging.LoggingMetric
-
public class LoggingMetric extends Object
Just a small wrapper class to allow us to pass a few extra details along with a metrics snapshot (like the batch id)- Author:
- matt
-
-
Constructor Summary
Constructors Constructor Description LoggingMetric(long batchId, org.pentaho.di.core.metrics.MetricsSnapshotInterface snapshot)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getBatchId()
org.pentaho.di.core.metrics.MetricsSnapshotInterface
getSnapshot()
void
setBatchId(long batchId)
void
setSnapshot(org.pentaho.di.core.metrics.MetricsSnapshotInterface snapshot)
-
-
-
Method Detail
-
getBatchId
public long getBatchId()
- Returns:
- the batchId
-
setBatchId
public void setBatchId(long batchId)
- Parameters:
batchId
- the batchId to set
-
getSnapshot
public org.pentaho.di.core.metrics.MetricsSnapshotInterface getSnapshot()
- Returns:
- the snapshot
-
setSnapshot
public void setSnapshot(org.pentaho.di.core.metrics.MetricsSnapshotInterface snapshot)
- Parameters:
snapshot
- the snapshot to set
-
-