list_dashboards
List all dashboards in your LogicMonitor account, including AWS/Azure/infrastructure dashboards, with details like ID, name, group, and widget count. Use filters to find dashboards by name, group, or owner.
Instructions
List all dashboards in LogicMonitor (LM) monitoring.
Returns: Array of dashboards with: id, name, description, groupId, groupName, widget count, owner.
When to use:
Find AWS/Azure/infrastructure dashboards
Discover available pre-built dashboards
Get dashboard IDs for generating links
List dashboards in specific group
Common filter patterns:
By name: filter:"name~*AWS*" (find all AWS dashboards)
By group: filter:"groupId:5" or filter:"groupName~*Cloud*"
By owner: filter:"owner:john.doe"
Next step: Use "generate_dashboard_link" with the dashboard ID to get the full clickable URL for sharing.
Tip: Dashboards are organized in groups. Use "list_dashboard_groups" to browse the hierarchy.
Important: A negative "total" value in the response indicates incomplete results. Use pagination (size/offset parameters) or set autoPaginate: true to retrieve all items.
Related tools: "get_dashboard" (details), "generate_dashboard_link" (get URL), "list_dashboard_groups" (browse hierarchy).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| size | No | Number of results per page (default: 50, max: 1000). | |
| offset | No | Starting offset for pagination (default: 0). Use this to skip a specific number of results. | |
| autoPaginate | No | Automatically fetch all pages (default: false). When true, fetches all results across multiple pages. When false, returns only the requested page. Use false for large result sets to avoid long response times. | |
| filter | No | Filter expression using LogicMonitor query syntax. Examples: name:*prod*, displayName~*server*, id>100, hostStatus:normal. Available operators: : (equals), ~ (includes), !: (not equals), !~ (not includes), >: (greater than or equals), <: (less than or equals), > (greater than), < (less than). Multiple conditions: Use comma (,) for AND, use || for OR. Do NOT use &&. | |
| fields | No | Comma-separated list of fields to include in response. Examples: "id,displayName,hostStatus" or use "*" for all fields. Omit this parameter to receive a curated set of commonly used fields. |