Tideways Error Command
The error command (alias errors) lets you inspect grouped, fatal application errors from the CLI. Error inspection is read-only.
It has two subcommands, list and show.
List Error Groups
$ tideways error list acme/myproject42
Environment and service filters default to the selected project’s configured environment and all services. The default status is open and the default page is 1.
|
(optional) Environment to list errors for. Defaults to the project’s configured environment. |
|
(optional) Service to list errors for. Defaults to all services. |
|
(optional) Error status: |
|
(optional) Transaction ID to filter errors by. |
|
(optional) Result page (1 or greater). (default 1) |
$ tideways error list acme/myproject42 --environment=production --service=web
$ tideways error list acme/myproject42 --transaction=123
$ tideways error list acme/myproject42 --status=resolved --page=2
Show an Error Group
$ tideways error show acme/myproject42 ERROR_ID
Shows aggregate error-group data and the latest occurrence across all environments and services, including its message, stack trace, transaction, and context annotations. A compact histogram shows the occurrence distribution over the error-retention period included with the project’s license.
If project_name is omitted, the CLI uses the project configured for the current repository (see tideways init) or the global default project. Error IDs are opaque and may contain slashes.