Track requests to your Flask website with Matomo
Project description
Flask-Matomo-D
Flask-Matomo-D is a library which lets you track the requests of your Flask website using Matomo (Piwik).
Installation
pip install flask-matomo-d
Usage
from flask import Flask, render_template
from flask_matomo import *
app = Flask(__name__)
matomo = Matomo(app,
matomo_url="https://matomo.mydomain.com",
id_site=5,
token_auth="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
secure=True,
allowed_paths=None,
custom_action_name_by_path=None)
@app.route("/")
def index():
return render_template("index.html")
if __name__ == "__main__":
app.run()
In the code above:
- The Matomo object is created by passing in the Flask application and arguments to configure Matomo.
- The matomo_url parameter is the url to your Matomo installation.
- The id_site parameter is the id of your site. This is used if you track several websites with on Matomo installation. It can be found if you open your Matomo dashboard, change to site you want to track and look for &idSite= in the url.
- The token_auth parameter can be found in the area API in the settings of Matomo. It is required for tracking the ip address.
- The secure parameter indicates whether the verification of trusted certificates is performed, by default is True.
- The allowed_paths indicates allowed paths of every incoming request to be tracked, use regex sintax. Ex: 'dasd|paht1|admin'
- The custom_action_name_by_path parameter set custom action_name identifying a part of the String that contains the Request.path. Ex:
url:
http://www.example.com/myapplication/generic/page.html?x=yRequest.path:/generic/page.html
custom_action_name_by_path = {'generic': 'Generic Action in Etc'}
Every requests that contain "generic" in their url path will have their default action_name modified, which is the name of the method invoked in Flask, by the value of the key that was identified. For more info read tracking-api
Docs
Matomo tracking-api Flask api
Meta
Lucas Hild - https://lucas-hild.de This project is licensed under the MIT License - see the LICENSE file for details
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
File details
Details for the file Flask-Matomo-D-0.0.3.tar.gz.
File metadata
- Download URL: Flask-Matomo-D-0.0.3.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.26.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/2.7.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47685ac555edcf2e9b94134e071f3dd49b41aaeef2cb685b1d39c007d2c6531f
|
|
| MD5 |
839b2f27af20d19777153854323ca9c5
|
|
| BLAKE2b-256 |
e74892745b1ffb98baace378a6d471567907d7cf0928fb44600eb35ab152cb8e
|