public static interface IQueueCounters.ITaskCounters
TaskCounters. Subsets of these counters are
 also exposed by other interfaces.| Modifier and Type | Field and Description | 
|---|---|
| static String | CheckpointTimeCumulative elapsed time in milliseconds consumed by write tasks while
 checkpointing their indices. | 
| static String | InterArrivalTimeCumulative milliseconds of the inter-arrival time between tasks. | 
| static String | QueueWaitingTimeCumulative milliseconds across tasks of the time that a task was
 waiting on a queue pending execution. | 
| static String | QueuingTimeCumulative milliseconds across tasks between the submission of a task
 and its completion including any time spent waiting for resource
 locks, commit processing and any time spent servicing that task. | 
| static String | ServiceTimeCumulative milliseconds across tasks that a task is being serviced by
 a worker thread (elapsed clock time from when the task was assigned
 to the thread until the task completes its work). | 
| static String | TaskCompleteCountCount of all tasks completed by the service (failed + success). | 
| static String | TaskFailCountCount of all tasks which failed during execution. | 
| static String | TaskSubmitCountCount of all tasks submitted to the service. | 
| static String | TaskSuccessCountCount of all tasks which were successfully executed. | 
static final String TaskCompleteCount
static final String TaskSubmitCount
static final String TaskFailCount
static final String TaskSuccessCount
static final String InterArrivalTime
static final String QueueWaitingTime
static final String ServiceTime
Note: For tasks which acquire resource lock(s), this does NOT include the time waiting to acquire the resource lock(s).
static final String CheckpointTime
 Note: This time is already reported by the ServiceTime but
 is broken out here for additional detail. Checkpoint time can be most
 of the service time for a task since indices buffer writes and but
 are required to flush those writes to the backing during during a
 checkpoint.
static final String QueuingTime
Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.