Skip to content

Commit

Permalink
link sentry-support versions
Browse files Browse the repository at this point in the history
  • Loading branch information
n0str authored and n0str committed Dec 5, 2024
1 parent d46e8ef commit 10baa89
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion collector
5 changes: 3 additions & 2 deletions tests/manual/sentry/sentry-send.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import sentry_sdk
import os

HAWK_INTEGRATION_TOKEN = os.getenv("SENTRY_PROJECT_ID", "eyJpbnRlZ3JhdGlvbklkIjoiYzlmZTY1MzYtYjVkYi00NDNmLWI1MmEtMWQwNDY1OThkNDNiIiwic2VjcmV0IjoiNzAwZTAwYTQtM2E4Mi00NTQ3LTkzOGUtMTMzMGJhNzgwY2UwIn0=")
HAWK_INTEGRATION_TOKEN = os.getenv("SENTRY_PROJECT_ID", "eyJpbnRlZ3JhdGlvbklkIjoiOWQ0MzUwMzgtMWQ3OS00NTlhLWJhMWUtZWQwMDVjYzI0NTM0Iiwic2VjcmV0IjoiZGU3ODZkMDAtNzE2Ni00ZTYzLWI5YzAtYTFjNjcyOWZlOGU5In0=")

sentry_sdk.init(
dsn=f"http://{HAWK_INTEGRATION_TOKEN}@localhost:3000/0",
debug=True
)
division_by_zero = 1 / 0
division_by_zero = 1 / 0
# raise Exception("This is a test exception")

0 comments on commit 10baa89

Please sign in to comment.