OwlMetry
CLI

Issues

View and manage error issues from the OwlMetry CLI.

The owlmetry issues command group lets you list, investigate, and manage issues — errors automatically detected and deduplicated from your app's events.

List Issues

owlmetry issues list --project-id <id> --format json

Lists issues for a project, ordered by most recently seen.

Filters

FlagDescription
--status <status>Filter by status: new, in_progress, resolved, silenced, regressed
--app-id <id>Filter to a specific app
--devShow dev issues only
--limit <n>Max entries to return
--cursor <cursor>Pagination cursor from previous response

View Issue Details

owlmetry issues view <issueId> --project-id <id> --format json

Shows full issue details including occurrences (affected sessions), comments, and fingerprints.

Resolve an Issue

owlmetry issues resolve <issueId> --project-id <id> --format json

Marks an issue as resolved. Optionally tag the fix version:

owlmetry issues resolve <issueId> --project-id <id> --version 2.1.0

If the error reappears in a newer version, the issue will automatically be marked as regressed by the scan job.

Silence an Issue

owlmetry issues silence <issueId> --project-id <id>

Silences notifications for the issue. Occurrences are still tracked — useful for known issues that don't need alerts.

Reopen an Issue

owlmetry issues reopen <issueId> --project-id <id>

Reopens a resolved or silenced issue, setting its status back to new.

Claim an Issue

owlmetry issues claim <issueId> --project-id <id>

Sets the issue to in_progress. Use this when you or an agent starts investigating or working on a fix.

Merge Issues

owlmetry issues merge <targetIssueId> --project-id <id> --source <sourceIssueId>

Merges the source issue into the target. All occurrences, fingerprints, and comments move to the target. The source is deleted. Future events matching either fingerprint will route to the surviving issue.

Add a Comment

owlmetry issues comment <issueId> --project-id <id> --body "Root cause: null pointer in UserService.fetch()"

Adds an investigation note to the issue. Comments are visible to all team members and preserved across merges.

List Comments

owlmetry issues comments <issueId> --project-id <id> --format json

Lists all comments on an issue in chronological order.

Ready to get started?

Connect your agent via MCP or CLI and start tracking.