X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=docs%2Finterfaces%2FTaskStatistics.html;h=85107b2bb2e2bdfd5cbea185c26ccfb67dfe812e;hb=60dc0a9cc569efeb0566180dd63e6eea8ac2bf3b;hp=6ff48b34d1c31e22df352893ada278c6666d3e03;hpb=f45a3823ad04902b4c446c7c7de55ca183041953;p=poolifier.git diff --git a/docs/interfaces/TaskStatistics.html b/docs/interfaces/TaskStatistics.html index 6ff48b34..85107b2b 100644 --- a/docs/interfaces/TaskStatistics.html +++ b/docs/interfaces/TaskStatistics.html @@ -1,180 +1,16 @@ -TaskStatistics | poolifier
-
- -
-
-
-
- -

Interface TaskStatisticsInternal

-
-

Pool worker tasks usage statistics requirements.

-
-
-
-

Hierarchy

-
    -
  • TaskStatistics
-
-
-
- -
-
-

Properties

-
- -
avgRunTime: boolean
-

Require tasks average runtime.

-
-
-
- -
avgWaitTime: boolean
-

Require tasks average wait time.

-
-
-
- -
elu: boolean
-

Event loop utilization.

-
-
-
- -
medRunTime: boolean
-

Require tasks median runtime.

-
-
-
- -
medWaitTime: boolean
-

Require tasks median wait time.

-
-
-
- -
runTime: boolean
-

Require tasks runtime.

-
-
-
- -
waitTime: boolean
-

Require tasks wait time.

-
-
-
- -
-
-

Generated using TypeDoc

-
\ No newline at end of file +TaskStatistics | poolifier - v3.1.27

Interface TaskStatisticsInternal

Task statistics.

+
interface TaskStatistics {
    executed: number;
    executing: number;
    failed: number;
    maxQueued?: number;
    queued: number;
    sequentiallyStolen: number;
    stolen: number;
}

Properties

executed: number

Number of executed tasks.

+
executing: number

Number of executing tasks.

+
failed: number

Number of failed tasks.

+
maxQueued?: number

Maximum number of queued tasks.

+
queued: number

Number of queued tasks.

+
sequentiallyStolen: number

Number of sequentially stolen tasks.

+
stolen: number

Number of stolen tasks.

+

Generated using TypeDoc

\ No newline at end of file