Function details

  • Return wholistic details about the task system, including failures, queues, and workers. Will throw an error if redis cannot be reached.

    Returns Promise<{
        leader: string;
        queues: {
            [key: string]: any;
        };
        stats: {
            [key: string]: any;
        };
        workers: {
            [key: string]: any;
        };
    }>