Skip to content

This feature is currently in Preview.

prescriptive_reasoner__active_jobs

relationalai.observability_preview
prescriptive_reasoner__active_jobs

A preview view that reports active job counts for prescriptive reasoners. Views in observability_preview are experimental and may change without notice. Requires the observability_viewer application role.

ColumnTypeDescription
TIMESTAMPTIMESTAMP_NTZTime when the measurement was taken, in UTC.
REASONER_IDSTRINGUnique ID for the reasoner.
REASONER_NAMESTRINGName of the reasoner.
ACTIVE_JOBSFLOATReported number of active jobs.
ATTRIBUTESOBJECTAdditional attributes for the reasoner.

Get reported active job counts over the last 24 hours:

SELECT *
FROM relationalai.observability_preview.prescriptive_reasoner__active_jobs
WHERE timestamp >= DATEADD(hour, -24, CURRENT_TIMESTAMP());

See Monitor reasoner usage for more information.