/** Available metrics of a job worker. */ export interface IJobWorkerMetrics { /** Gets the type of jobs the runner executes. */ jobType: string; /** Gets the count of jobs the runner executed. */ executedJobs: number; /** Gets the duration time in milleseconds of the last job execution. */ lastJobDurationMs: number; /** Gets or sets the date when the last job finished running. */ lastJobFinishedAt?: Date; /** Gets or sets the time in seconds that are between 2 job executions. */ jobIntervallSeconds?: number; }