C3 AI Documentation Home

Console Reference: c3QErrs

c3QErrs displays all error entries in a specified queue, or in all queues if none is specified. A queue holds a list of jobs (asynchronous processes) executed in your application environment. To learn more about queues, see Overview of Invalidation Queues and Asynchronous Process and Monitor and Manage Queues.

Parameters

NameRequiredTypeDescription
queueType | nullThe target queue. May be explicitly null when limit parameter is supplied.
limitnumberHow many errors to show. Defaults to 10.

Example

Display the last 10 errors in a queue:

JavaScript
c3QErrs(BatchQueue);

Show the last error from a queue:

JavaScript
c3QErrs(BatchQueue, 1);

Show the last 20 errors from all active queues:

JavaScript
c3QErrs(null, 20);

See also

Was this page helpful?