Get Transaction Snapshots
appd_get_snapshotsRetrieve detailed diagnostic snapshots for slow, error, or stalled transactions in an application. Analyze call graphs, SQL queries, and HTTP calls to identify performance issues.
Instructions
Retrieve transaction snapshots (slow, error, stall) for an application.
Snapshots are deep diagnostic captures of individual requests. They show call graphs, SQL queries, HTTP calls, and more for requests that were slow, errored, or stalled.
Args:
application (string|number): App name or ID
durationInMins (number, optional): Lookback in minutes (default: 30)
guids (string, optional): Specific snapshot GUIDs
dataCollectorName/Type/Value (string, optional): Data collector filters
maxResults (number, optional): Max snapshots to return (default: 20, max: 100)
Returns: Array of snapshot objects with timing, error details, and diagnostic info.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| guids | No | Comma-separated request GUIDs to retrieve specific snapshots. | |
| maxResults | No | Maximum number of snapshots to return. Defaults to 20. | |
| application | Yes | Application name or numeric ID. | |
| durationInMins | No | Time range in minutes to look back. Defaults to 30. | |
| dataCollectorName | No | Filter by data collector name. | |
| dataCollectorType | No | Filter by data collector type. | |
| dataCollectorValue | No | Filter by data collector value. |