alert_list
List defined VMware Log Insight alerts with optional name filtering and pagination to review alert IDs, names, and enabled status before fetching details or history.
Instructions
[READ] List defined Log Insight alerts.
Returns the family list envelope {items, returned, limit, total, truncated, hint}; each item is {id, name, enabled, info}. Start here, then pass an id to alert_get or alert_history. total is the real count matching name_filter, so truncated answers whether more exist; raise limit or narrow name_filter when true. Read-only — this skill never creates/edits/deletes alerts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum items in the page (default 50). It slices the matches after filtering; 'total' still reports every match, so a small limit never hides how many alerts exist. | |
| target | No | Log Insight target name as spelled in ~/.vmware-log-insight/config.yaml. Omit to use that file's default_target — with no default configured, omitting it is an error that lists the configured names. | |
| name_filter | No | Case-insensitive substring matched against the alert's name only (not its id or description). Omit to list every defined alert. The appliance returns the whole collection either way and the filter runs locally, so filtering costs nothing extra. |