Package org.apache.druid.server.metrics
Interface TaskSlotCountStatsProvider
-
@Deprecated public interface TaskSlotCountStatsProvider
Deprecated.This is deprecated and will be merged intoTaskCountStatsProviderin a future release.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Map<String,Long>getBlacklistedTaskSlotCount()Deprecated.Return the total number of task slots in blacklisted middlemanagers and indexers during emission period.Map<String,Long>getIdleTaskSlotCount()Deprecated.Return the number of idle task slots during emission period.Map<String,Long>getLazyTaskSlotCount()Deprecated.Return the total number of task slots in lazy marked middlemanagers and indexers during emission period.Map<String,Long>getTotalTaskSlotCount()Deprecated.Return the number of total task slots during emission period.Map<String,Long>getUsedTaskSlotCount()Deprecated.Return the number of used task slots during emission period.
-
-
-
Method Detail
-
getTotalTaskSlotCount
@Nullable Map<String,Long> getTotalTaskSlotCount()
Deprecated.Return the number of total task slots during emission period.
-
getIdleTaskSlotCount
@Nullable Map<String,Long> getIdleTaskSlotCount()
Deprecated.Return the number of idle task slots during emission period.
-
getUsedTaskSlotCount
@Nullable Map<String,Long> getUsedTaskSlotCount()
Deprecated.Return the number of used task slots during emission period.
-
getLazyTaskSlotCount
@Nullable Map<String,Long> getLazyTaskSlotCount()
Deprecated.Return the total number of task slots in lazy marked middlemanagers and indexers during emission period.
-
-