Class ExecutionSummary
- java.lang.Object
-
- io.vertigo.orchestra.services.report.ExecutionSummary
-
- All Implemented Interfaces:
Serializable
public final class ExecutionSummary extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExecutionSummary(Long proId, String processName, String processLabel, Instant lastExecutionTime, Instant nextExecutionTime, Integer errorsCount, Integer misfiredCount, Integer successfulCount, Integer runningCount, Integer averageExecutionTime, String health)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getAverageExecutionTime()
Integer
getErrorsCount()
String
getHealth()
Instant
getLastExecutionTime()
Integer
getMisfiredCount()
Instant
getNextExecutionTime()
String
getProcessLabel()
String
getProcessName()
Long
getProId()
Integer
getRunningCount()
Integer
getSuccessfulCount()
-
-
-
Constructor Detail
-
ExecutionSummary
public ExecutionSummary(Long proId, String processName, String processLabel, Instant lastExecutionTime, Instant nextExecutionTime, Integer errorsCount, Integer misfiredCount, Integer successfulCount, Integer runningCount, Integer averageExecutionTime, String health)
Constructor.- Parameters:
proId
- id of processprocessName
- name of processprocessLabel
- label of processlastExecutionTime
- time of last executionnextExecutionTime
- time of next planificationerrorsCount
- number of errorsmisfiredCount
- number of misfired planificationssuccessfulCount
- number of successrunningCount
- number of runningaverageExecutionTime
- average execution time in secondshealth
- health status of the process
-
-
Method Detail
-
getProId
public Long getProId()
-
getProcessName
public String getProcessName()
-
getProcessLabel
public String getProcessLabel()
-
getLastExecutionTime
public Instant getLastExecutionTime()
-
getNextExecutionTime
public Instant getNextExecutionTime()
-
getErrorsCount
public Integer getErrorsCount()
-
getMisfiredCount
public Integer getMisfiredCount()
-
getSuccessfulCount
public Integer getSuccessfulCount()
-
getRunningCount
public Integer getRunningCount()
-
getAverageExecutionTime
public Integer getAverageExecutionTime()
-
getHealth
public String getHealth()
-
-