Skip to content

This feature is currently in Preview.

predictive_reasoner__gpu_utilization

relationalai.observability_preview
predictive_reasoner__gpu_utilization

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

Get GPU utilization over the last 24 hours:

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

See Monitor reasoner usage for more information.