Interface DeploymentStatistics
-
- All Superinterfaces:
Deployment
- All Known Implementing Classes:
DeploymentStatisticsEntity
public interface DeploymentStatistics extends Deployment
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getFailedJobs()
The number of all failed jobs of process instances of definitions contained in this deployment.List<IncidentStatistics>
getIncidentStatistics()
Returns a list of incident statistics.int
getInstances()
The number of all process instances of the process definitions contained in this deployment.-
Methods inherited from interface org.camunda.bpm.engine.repository.Deployment
getDeploymentTime, getId, getName, getSource, getTenantId
-
-
-
-
Method Detail
-
getInstances
int getInstances()
The number of all process instances of the process definitions contained in this deployment.
-
getFailedJobs
int getFailedJobs()
The number of all failed jobs of process instances of definitions contained in this deployment.
-
getIncidentStatistics
List<IncidentStatistics> getIncidentStatistics()
Returns a list of incident statistics.
-
-