Middleware for tracking ASGI reqeusts with Matomo
Project description
asgi-matomo
Tracking requests with Matomo from ASGI apps.
MatomoMiddleware
adds tracking of all requests to Matomo to ASGI applications (Starlette, FastAPI, Quart, etc.). The intended usage is for api tracking (backends).
Note If you serve HTML (directly or by templates), it is suggested to track those parts through Matomo's javascript tracking.
Installation
pip install asgi-matomo
What is tracked
Currently this middleware tracks:
url
ua
: user_agentgt_ms
: mesaured as the time before and after this middleware call next in the asgi stack.send_image=0
for performance issuescvar
with at leasthttp_status_code
andhttp_method
set.lang
ifaccept-lang
is setcip
client ip, requiresaccess_token
to be given.
You can also pass variable to track by adding an asgi_matomo
dict in the state
dict of the ASGI scope
:
scope = {
"state": {
"asgi_matomo": {
"e_a": "Playing",
"cvar": {
"your": "custom",
"data": "here",
}
}
}
}
The keys of the asgi_matomo
dict is expected to be valid parameter for the Matomo HTTP Tracking API. cvar
is serialized with the standard json
lib.
Examples
Starlette
from starlette.applications import Starlette
from starlette.responses import JSONResponse
from starlette.routing import Route
from starlette.middleware import Middleware
from asgi_matomo import MatomoMiddleware
async def homepage(request):
return JSONResponse({"data": "a" * 4000})
app = Starlette(
routes=[Route("/", homepage)],
middleware=[
Middleware(
MatomoMiddleware,
matomo_url="YOUR MATOMO TRACKING URL",
idsite=12345, # your service tracking id
)],
)
FastAPI
from fastapi import FastAPI
from asgi_matomo import MatomoMiddleware
app = FastAPI()
app.add_middleware(
BrotliMiddleware,
matomo_url="YOUR MATOMO TRACKING URL",
idsite=12345, # your service tracking id
)
@app.get("/")
def home() -> dict:
return {"data": "a" * 4000}
API Reference
Overview
app.add_middleware(
MatomoMiddleware,
matomo_url="YOUR MATOMO TRACKING URL",
idsite=12345, # your service tracking id
access_token="SECRETTOKEN",
assume_https=True,
exclude_paths=["/health"],
exclude_patterns=[".*/old.*"],
)
Parameters:
- (Required)
matomo_url
: The URL to make your tracking calls to. - (Required)
idsite
: The tracking id for your service. - (Optional)
access_token
: Access token for Matomo. If this is setcip
is also tracked. Required for tracking some data. - (Optional)
assume_https
: IfTrue
, set tracked url scheme tohttps
, useful when running behind a proxy. Defaults toTrue
. - (Optional)
exclude_paths
: A list of paths to exclude, only excludes path that is equal to a path in this list. These are tried beforeexclude_patterns
. - (Optional)
exclude_patterns
: A list of regex patterns that are compiled, and then exclude a path from tracking if any pattern match. These are tried afterexclude_paths
.
Notes:
- Currently only some parts Matomo Tracking HTTP API is supported.
Ideas for further work:
- filtering tracked of urls
- custom extraction of tracked data
This project keeps a changelog.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for asgi_matomo-0.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d2a34c6b5266b4d9d51e4c3de98ac07063cfce8244d620ad408fea5c3443453 |
|
MD5 | 50c0fd07b54ac19869daa1841ed13d51 |
|
BLAKE2b-256 | 5425607f6a26ac8099eac4c583e4af798925fbe2cb509475df2d40063dd9deef |