relationalai.observability_preview.logic_reasoner__demand
logic_reasoner__demandA 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.
Columns
Section titled “Columns”| Column | Type | Description |
|---|---|---|
TIMESTAMP | TIMESTAMP_NTZ | When the measurement was taken (UTC). |
REASONER_ID | STRING | Unique reasoner identifier. |
REASONER_NAME | STRING | Reasoner name. |
DEMAND | FLOAT | Transaction demand as a ratio (0.0+). |
REASONER_CAPACITY | STRING | Capacity tier of the reasoner. |
ATTRIBUTES | OBJECT | Additional reasoner attributes. |
Example
Section titled “Example”Get demand over the last 24 hours:
SELECT *FROM relationalai.observability_preview.logic_reasoner__demandWHERE timestamp >= DATEADD(hour, -24, CURRENT_TIMESTAMP());See Available Metrics for guidance on stable vs preview schemas.