Class SupervisorStatus
- java.lang.Object
-
- org.apache.druid.indexing.overlord.supervisor.SupervisorStatus
-
public class SupervisorStatus extends Object
This class contains the attributes of a supervisor which are returned by the API's in org.apache.druid.indexing.overlord.supervisor.SupervisorResource and used by org.apache.druid.sql.calcite.schema.SystemSchema.SupervisorsTable
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSupervisorStatus.Builder
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetDetailedState()StringgetId()StringgetSource()SupervisorSpecgetSpec()StringgetSpecString()StringgetState()StringgetType()inthashCode()booleanisHealthy()booleanisSuspended()
-
-
-
Method Detail
-
getId
public String getId()
-
getState
public String getState()
-
getDetailedState
public String getDetailedState()
-
isHealthy
public boolean isHealthy()
-
getSpec
public SupervisorSpec getSpec()
-
getSpecString
public String getSpecString()
-
getType
public String getType()
-
getSource
public String getSource()
-
isSuspended
public boolean isSuspended()
-
-