Interface RunnerConfiguration

interface RunnerConfiguration {
    idleTimeToLive?: number;
    jobTimeout?: number;
    logLevel?: string;
    maxConcurrentJobs?: number;
}

Properties

idleTimeToLive?: number

The number of seconds the Attini Runner will stay alive without any jobs executing. New jobs will reset the countdown.

jobTimeout?: number

The number of seconds a job can execute before the Attini Runner aborts the execution.

logLevel?: string

The log level of the Attini Runner.

maxConcurrentJobs?: number

The max amount of concurrent jobs the Attini Runner will execute.

Generated using TypeDoc