Skip to content

This feature is currently in Preview.

relationalai.observability_preview.logic_reasoner__demand

logic_reasoner__demand

A preview view that reports transaction demand for logic reasoners. Values above 1.0 generally indicate queuing. 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.
DEMANDFLOATTransaction demand as a ratio (0.0+).
REASONER_CAPACITYSTRINGCapacity tier of the reasoner.
ATTRIBUTESOBJECTAdditional reasoner attributes.

Get demand over the last 24 hours:

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

See Available Metrics for guidance on stable vs preview schemas.