Skip to content

This feature is currently in Preview.

predictive_reasoner__cpu_utilization

relationalai.observability_preview
predictive_reasoner__cpu_utilization

A preview view that reports CPU utilization for predictive 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.
CPU_UTILIZATIONFLOATCPU utilization as a ratio (0.0–1.0).
ATTRIBUTESOBJECTAdditional attributes for the reasoner.

Get CPU utilization over the last 24 hours:

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

See Monitor reasoner usage for more information.