X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=docs%2Finterfaces%2FTaskStatistics.html;h=08fe81192982c0588e4a1454ab865e087063116c;hb=c8576e5fe740384f6f61316b7f09a788a14ab0ef;hp=5920400645330ee7b5d758c1f09f77c045cd9881;hpb=71056a0ac555e096c1428d6341ef45c7980a6332;p=poolifier.git diff --git a/docs/interfaces/TaskStatistics.html b/docs/interfaces/TaskStatistics.html index 59204006..04ae4de6 100644 --- a/docs/interfaces/TaskStatistics.html +++ b/docs/interfaces/TaskStatistics.html @@ -1,182 +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 - v4.0.1

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.

+
\ No newline at end of file