GitXplorerGitXplorer
I

sentrydiscord.dev

public
209 stars
22 forks
4 issues

Commits

List of commits on branch main.
Unverified
e2c5c7ec096263e6a15cbe0a6b5b26b3b3f3af33

Add Data Loss Notification

IIanMitchell committed 10 months ago
Unverified
fa1e06b6ae56e50243055d89ec16cccecfb45955

Fix type error

IIanMitchell committed 10 months ago
Verified
a61b120eec0f6e84a38417f3806be9b23cc2f0bf

Update README.md

IIanMitchell committed 10 months ago
Verified
7205b75ae7bb8926724756fe8cb1ebd18e2ab33a

feat: various changes (#38)

wwdhdev committed 2 years ago
Unverified
8578ccc01bf0818e6e46914e94edcaee59f7cb45

Add Thread Support

IIanMitchell committed 2 years ago
Verified
867b889e15c6b101d619610d07b4663c6a73fe6a

fix(index): button mobile view (#35)

wwdhdev committed 2 years ago

README

The README file for this repository.

Sentry → Discord

Event Count Webhook Count


Note: There was an incident on February 28 which unfortunately resulted in the loss of the production database. The previous data is not recoverable. I sincerely apologize. You will need to revisit the website and setup your webhooks again.


Sentry → Discord is a service for forwarding Sentry event notifications to Discord. It acts as a middleman and transforms the webhook payload into a Discord-compatible format.

You can run your own version of Sentry → Discord or use the free, hosted version at https://sentrydiscord.dev.

Local Development

To get started in a local environment, you'll need a PostgreSQL instance running locally. Clone the repository and run

npm install
npx prisma migrate dev --preview-feature
npx prisma generate

Next, create a .env file with

DATABASE_URL=postgresql://...

Replacing the postgresql string with the URL to your local database. Finally, run

npm run dev

You should be able to view the website at http://localhost:3000.

Capturing Webhook Events

If you want to see what the Webhook payload looks like from Sentry, clone and run this website locally, and use a service like ngrok to get a public URL you can use to point Sentry to it. In development mode the console will print out the full Sentry payload.