Aiohttp-datadog

Latest version: v0.5.0

Safety actively analyzes 621173 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

0.5.0

Allow passing a custom `dogstatsd_class` or `dogstatsd_instance`.

0.4.0

Use new-style middleware definition to get rid of aiohttp warnings.

0.3.0

:warning: Removed the Datadog tags `http_version`, `http_path`, and `request_type`.

Calculating the list of tags has been extracted to a method called `get_tags`.
If you need these (or any other tags,) you can readd them by subclassing
and overriding this method, like so:

python
class CustomDatadogMiddleware(DatadogMiddleware):

def get_tags(self, request):
tags = super().get_tags(request)
tags.append(f'http_version:{request.version}')
return tags

0.2.01

Added changelog entry for 0.2.0.

0.2.0

The kwargs passed as the second parameter are now sent to `Dogstatsd`
instead of `datadog.initialize` to expose more useful options,
such as `constant_tags`.

:warning: This means you need to update your keys
from `statsd_host` and `statsd_port` to `host` and `port`.

0.1.0

Initial release.

Links

Releases

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.