-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
docs: provide information for SENTRY_AIR_GAP flag on Django config file #3935
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
fca60b1
846c0c4
6106d1b
9d9e1a4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -95,6 +95,14 @@ def get_internal_network(): | |
| # See https://develop.sentry.dev/self-hosted/experimental/errors-only/ | ||
| SENTRY_SELF_HOSTED_ERRORS_ONLY = env("COMPOSE_PROFILES") != "feature-complete" | ||
|
|
||
| # When running in an air-gapped environment, set this to True to entirely disable | ||
| # external network calls and features that require internet connectivity. | ||
| # | ||
| # Setting the value to False while running in an air-gapped environment will | ||
| # cause some containers to raise an exception. One known example is fetching | ||
aldy505 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| # AI model prices from various public APIs. | ||
| SENTRY_AIR_GAP = False | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I feel like this should come from an env variable? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Too much environment variables. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. But this airgap setting may need to be a global setting for the entire deploy (like retention days) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe no. Since the current settings is strictly just for acquiring AI model prices. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay I'll let you deal with this when it happens in the future 🤣 |
||
|
|
||
| ################ | ||
| # Node Storage # | ||
| ################ | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.