Syntax
Section is one of:
RunningQueries— lists currently executing queriesWaitingQueries— lists queries waiting to be executedObjectPool— reports object pool statistics
Examples
Frequently Asked Questions
What does GRAPH.INFO show when called without arguments?
What does GRAPH.INFO show when called without arguments?
When called without arguments,
GRAPH.INFO returns all sections: RunningQueries, WaitingQueries, and ObjectPool statistics.What is the difference between RunningQueries and WaitingQueries?
What is the difference between RunningQueries and WaitingQueries?
RunningQueries shows queries currently being executed by worker threads. WaitingQueries shows queries that have been received but are queued waiting for a thread to become available.
What is the ObjectPool section?
What is the ObjectPool section?
The ObjectPool section reports statistics about FalkorDB’s internal object pool, including the number of unique objects and average references per object. This is useful for monitoring memory efficiency.
Can I use GRAPH.INFO to monitor query performance in production?
Can I use GRAPH.INFO to monitor query performance in production?
Yes.
GRAPH.INFO is designed for real-time monitoring. You can poll it periodically to detect long-running queries, queue buildup, and resource utilization issues.