For the complete documentation index, see llms.txt. This page is also available as Markdown.

SchedulerStats

Get the stats of all schedulers or a specific scheduler by name.

Each stats structure contains the following fields:

  • created

  • lastExecutionTime

  • lastResult

  • lastRun

  • name

  • neverRun

  • nextRun

  • totalFailures

  • totalRuns

  • totalSuccess

  • Method Signature

  • SchedulerStats(name=[string])
  • Arguments

  • Examples

  • Get scheduler statistics

  • schedulerNew( "statsSched", 4 );
    stats = schedulerStats( "statsSched" );
    writeOutput( isStruct( stats ) );
    
  • Result: true

  • SchedulerGet

  • SchedulerGetAll

  • SchedulerList

  • SchedulerNew

  • SchedulerRestart

  • SchedulerShutdown

  • SchedulerStart

Argument
Type
Required
Description
Default

name

string

false

The name of the scheduler to get stats on or if not passed for all schedulers

Last updated

Was this helpful?