diff options
author | 2018-03-13 15:08:54 +0000 | |
---|---|---|
committer | 2018-03-13 15:08:54 +0000 | |
commit | 5fe8d6061b73e17ccf4feed85c71fcac0960c119 (patch) | |
tree | 569b781a135f39fdbc76d32338d150fa649eadaf /pysite/constants.py | |
parent | Remove unused import (diff) |
Datadog TCP logging
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) |