# Inspect graphs and memory usage

> Use GRAPH.LIST, GRAPH.INFO, and GRAPH.MEMORY USAGE to monitor graphs and resources

- Skill: `falkordb/inspect-graphs-and-memory-usage` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add falkordb/inspect-graphs-and-memory-usage`
- Raw SKILL.md: https://api.skillmd.com/api/skills/falkordb/inspect-graphs-and-memory-usage/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: falkordb (https://skillmd.com/u/falkordb)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/falkordb/inspect-graphs-and-memory-usage

---


# Inspect graphs and memory usage

Use introspection commands to monitor graph information and resource usage.

## Usage

Use `GRAPH.LIST`, `GRAPH.INFO`, and `GRAPH.MEMORY USAGE` commands for operational visibility.

## Example

```bash
redis-cli GRAPH.LIST
redis-cli GRAPH.INFO social
redis-cli GRAPH.MEMORY USAGE social
```

## Notes

- `GRAPH.LIST` shows all graphs in the database
- `GRAPH.INFO` provides statistics about a specific graph (node count, edge count, etc.)
- `GRAPH.MEMORY USAGE` reports memory consumption for a graph
- These commands are essential for monitoring and capacity planning
- Use them to understand resource utilization and graph characteristics

