-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
137 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Copyright (C) 2020 Arrai Innovations Inc. - All Rights Reserved | ||
import os | ||
import sys | ||
|
||
from sentry_sdk.integrations.redis import RedisIntegration | ||
|
||
sys.path.append(os.getcwd()) | ||
import shy_sentry # noqa: E402 | ||
|
||
|
||
if __name__ == "__main__": # pragma: no branch | ||
shy_sentry.init(integrations=[RedisIntegration()]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright (C) 2020 Arrai Innovations Inc. - All Rights Reserved | ||
import os | ||
import sys | ||
|
||
from sentry_sdk.integrations.argv import ArgvIntegration | ||
from sentry_sdk.integrations.atexit import AtexitIntegration | ||
from sentry_sdk.integrations.dedupe import DedupeIntegration | ||
from sentry_sdk.integrations.excepthook import ExcepthookIntegration | ||
from sentry_sdk.integrations.modules import ModulesIntegration | ||
from sentry_sdk.integrations.redis import RedisIntegration | ||
from sentry_sdk.integrations.stdlib import StdlibIntegration | ||
from sentry_sdk.integrations.threading import ThreadingIntegration | ||
|
||
sys.path.append(os.getcwd()) | ||
import shy_sentry # noqa: E402 | ||
|
||
|
||
if __name__ == "__main__": # pragma: no branch | ||
shy_sentry.init( | ||
integrations=[ | ||
StdlibIntegration(), | ||
ExcepthookIntegration(), | ||
DedupeIntegration(), | ||
AtexitIntegration(callback=shy_sentry.shy_sentry.default_callback), | ||
ModulesIntegration(), | ||
ArgvIntegration(), | ||
ThreadingIntegration(), | ||
RedisIntegration(), | ||
], | ||
default_integrations=False, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters