inspect_ets_table
Fetch rows from a specific ETS table in a live BEAM app, limiting results to prevent large outputs. Use list_ets_tables to discover valid table names.
Instructions
Read the contents of an ETS table. Returns rows from the table, limited to avoid massive output.
Use list_ets_tables first to find table names, then inspect specific tables.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max rows to return (default: 20) | |
| table | Yes | ETS table name (e.g. "my_cache"). Use list_ets_tables to find names. |