{"id":26201630,"url":"https://github.com/fabric0de/sentrybridge","last_synced_at":"2026-05-08T05:47:28.513Z","repository":{"id":281355824,"uuid":"944521868","full_name":"fabric0de/sentrybridge","owner":"fabric0de","description":"Send Sentry notifications to Slack via webhooks","archived":false,"fork":false,"pushed_at":"2025-03-08T13:56:49.000Z","size":1034,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-08T14:29:30.362Z","etag":null,"topics":["sentry","sentry-integration","slack","webhooks"],"latest_commit_sha":null,"homepage":"https://www.sentrybridge.xyz","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fabric0de.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-07T13:49:42.000Z","updated_at":"2025-03-08T13:56:52.000Z","dependencies_parsed_at":"2025-03-08T14:41:01.355Z","dependency_job_id":null,"html_url":"https://github.com/fabric0de/sentrybridge","commit_stats":null,"previous_names":["fabric0de/sentrybridge"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabric0de%2Fsentrybridge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabric0de%2Fsentrybridge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabric0de%2Fsentrybridge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabric0de%2Fsentrybridge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fabric0de","download_url":"https://codeload.github.com/fabric0de/sentrybridge/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243148025,"owners_count":20243903,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["sentry","sentry-integration","slack","webhooks"],"created_at":"2025-03-12T03:23:00.536Z","updated_at":"2025-12-26T05:02:36.723Z","avatar_url":"https://github.com/fabric0de.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Slack Webhook in Sentry\n\nA webhook bridge service that forwards Sentry error notifications to Slack.\n\n## Features\n\n- Convert Sentry events to Slack messages\n- Support for 3 message formats:\n  - Basic: Essential error information and stack trace\n  - Detailed: Comprehensive info including browser, OS, tags, and user activity\n  - Grouped: Error pattern and frequency analysis (coming soon)\n- Source code context display\n- Error location highlighting\n- Real-time notifications\n\n## Installation\n\n```bash\ngit clone https://github.com/fabric0de/Slack-Webhook-in-Sentry\ncd Slack-Webhook-in-Sentry\nnpm install\n```\n\n## Environment Variables\n\nCreate a `.env` file and set the following variables:\n\n```bash\nNEXT_PUBLIC_SUPABASE_URL=your_supabase_url\nNEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key\n```\n\n## Database Setup\n\nCreate the following tables in Supabase:\n\n### webhooks table\n\n```sql\ncreate table webhooks (\n  id uuid default uuid_generate_v4() primary key,\n  created_at timestamp with time zone default timezone('utc'::text, now()) not null,\n  slack_webhook_url text not null,\n  message_format text default 'basic'::text,\n  name text\n);\n```\n\n### webhook_events table\n\n```sql\ncreate table webhook_events (\n  id uuid default uuid_generate_v4() primary key,\n  created_at timestamp with time zone default timezone('utc'::text, now()) not null,\n  webhook_id uuid references webhooks(id),\n  event_type text\n);\n```\n\n## Usage\n\n1. Create a Slack Incoming Webhook URL\n2. Register a new webhook through the web interface\n3. Add the generated webhook URL to your Sentry webhook settings\n\n## API Endpoints\n\n- `POST /api/webhooks/[id]`: Receives Sentry events and forwards them to Slack\n\n## Message Formats\n\n### Basic Format\n\n- Error type and message\n- Location and environment\n- Source code context\n- Simple stack trace\n\n### Detailed Format\n\n- All Basic Format information\n- Browser/OS information\n- User information\n- Recent activity history\n- Tag information\n- Additional context data\n\n## Development\n\n```bash\nnpm run dev\n```\n\n## Build\n\n```bash\nnpm run build\n```\n\n## Contributing\n\n1. Fork the Project\n2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the Branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## License\n\nMIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabric0de%2Fsentrybridge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffabric0de%2Fsentrybridge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabric0de%2Fsentrybridge/lists"}