Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.16 KB

File metadata and controls

44 lines (32 loc) · 1.16 KB
title Commands Overview
description Overview of all Sentry CLI commands

The Sentry CLI provides commands for interacting with various Sentry resources.

Available Commands

Command Description
auth Authentication management
cli CLI-related commands (feedback, upgrade)
org Organization operations
project Project operations
team Team operations
issue Issue tracking
event Event inspection
log Log viewing and streaming
profile CPU profiling analysis
api Direct API access

Global Options

All commands support the following global options:

  • --help - Show help for the command
  • --version - Show CLI version

JSON Output

Most list and view commands support --json flag for JSON output, making it easy to integrate with other tools:

sentry org list --json | jq '.[] | .slug'

Opening in Browser

View commands support -w or --web flag to open the resource in your browser:

sentry issue view PROJ-123 -w