: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