Datadog
application_kit.datadog.configure_datadog
configure_datadog(worker_name=None)
Setups datadog integration.
- service name will be computed from current application name optionally appending worker_name to it.
- checks that worker_name is declared in the workers section of the manifest if not None
| PARAMETER | DESCRIPTION |
|---|---|
worker_name
|
The worker_name to use.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
str | None
|
The datadog service name that was computed |
Source code in application_kit/datadog/__init__.py
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | |