Django middleware to dispatch metering metadata for HTTP API calls to Revenium.
pip install hypercurrent_metering
pip install hypercurrent_django
In your settings.py
file in your Django project directory,
please add the following to the middleware array:
'hypercurrentdjango.middleware.HyperCurrentMiddleware'
(required), string, your Revenium API Integration Key
(optional), string, the HTTP header to determine the API consumer. The default is "clientId".
(optional), string, An optional response header to extract metering metadata from.
(optional), string, the Revenium API URL. You should only need to change this if using a non-US based Revenium instance (ie, EMEA or customer compute.)
See hello_project base file folder to see an example of how the middle ware can be implemented.