diff options
Diffstat (limited to 'pysite/constants.py')
-rw-r--r-- | pysite/constants.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pysite/constants.py b/pysite/constants.py index d6ed489f..c84ca245 100644 --- a/pysite/constants.py +++ b/pysite/constants.py @@ -48,3 +48,7 @@ ERROR_DESCRIPTIONS = { # PaperTrail logging PAPERTRAIL_ADDRESS = os.environ.get("PAPERTRAIL_ADDRESS") or None PAPERTRAIL_PORT = int(os.environ.get("PAPERTRAIL_PORT") or 0) + +# DataDog logging +DATADOG_ADDRESS = os.environ.get("DATADOG_ADDRESS") or None +DATADOG_PORT = int(os.environ.get("DATADOG_PORT") or 0) |