Interface JobWorkerStatisticsItem
- All Known Implementing Classes:
JobWorkerStatisticsItemImpl
public interface JobWorkerStatisticsItem
Statistics for a specific worker within a job type.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the metric for jobs in COMPLETED state.Returns the metric for jobs in CREATED state.Returns the metric for jobs in FAILED state.Returns the worker identifier.
-
Method Details
-
getWorker
String getWorker()Returns the worker identifier.- Returns:
- the worker name
-
getCreated
JobStatusMetric getCreated()Returns the metric for jobs in CREATED state.- Returns:
- the created jobs metric
-
getCompleted
JobStatusMetric getCompleted()Returns the metric for jobs in COMPLETED state.- Returns:
- the completed jobs metric
-
getFailed
JobStatusMetric getFailed()Returns the metric for jobs in FAILED state.- Returns:
- the failed jobs metric
-