predictive_reasoner__active_jobs
relationalai.observability_preview
predictive_reasoner__active_jobsA preview view that reports active job counts for predictive reasoners.
Views in observability_preview are experimental and may change without notice.
Requires the observability_viewer application role.
Columns
Section titled “Columns”| Column | Type | Description |
|---|---|---|
TIMESTAMP | TIMESTAMP_NTZ | Time when the measurement was taken, in UTC. |
REASONER_ID | STRING | Unique ID for the reasoner. |
REASONER_NAME | STRING | Name of the reasoner. |
ACTIVE_JOBS | FLOAT | Reported number of active jobs. |
ATTRIBUTES | OBJECT | Additional attributes for the reasoner. |
Example
Section titled “Example”Get reported active job counts over the last 24 hours:
SELECT *FROM relationalai.observability_preview.predictive_reasoner__active_jobsWHERE timestamp >= DATEADD(hour, -24, CURRENT_TIMESTAMP());See Monitor reasoner usage for more information.