This is the official Homebrew tap for Honeybadger tools.
brew tap honeybadger-io/tap
brew install honeybadgerOr install directly:
brew install honeybadger-io/tap/honeybadger| Formula | Description |
|---|---|
honeybadger |
CLI tool to interact with the Honeybadger API |
To update to the latest version:
brew update
brew upgrade honeybadgerAfter installation, the hb command will be available:
# Report a deployment
hb deploy --environment production --repository github.com/org/repo --revision abc123
# Start the metrics agent
hb agent
# Get help
hb --helpConfigure the CLI using environment variables:
export HONEYBADGER_API_KEY=your-project-api-key-here # For reporting deployments, running the agent, etc.
export HONEYBADGER_AUTH_TOKEN=your-personal-token-here # For accessing the Data API to manage projects, etc.
export HONEYBADGER_ENDPOINT=https://api.honeybadger.io # Optional. Use https://eu-api.honeybadger.io for the EU regionOr use a configuration file at config/honeybadger.yml:
api_key: your-project-api-key-here
endpoint: https://api.honeybadger.ioFor issues with the CLI itself, please file them at honeybadger-io/cli.
For issues with the Homebrew formula, please file them here.
MIT