Skip to content

This feature is currently in Preview.

relationalai.observability_preview.logic_reasoner__memory_utilization

logic_reasoner__memory_utilization

A preview view that reports memory utilization for logic reasoners. Views in observability_preview are experimental and may change without notice. Requires the observability_viewer application role.

ColumnTypeDescription
TIMESTAMPTIMESTAMP_NTZWhen the measurement was taken (UTC).
REASONER_IDSTRINGUnique reasoner identifier.
REASONER_NAMESTRINGReasoner name.
MEMORY_UTILIZATIONFLOATMemory utilization as a ratio (0.0–1.0).
ATTRIBUTESOBJECTAdditional reasoner attributes.

Get memory utilization over the last 24 hours:

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

See Available Metrics for guidance on stable vs preview schemas.