tdp_matomo v8.0.0
DEPRECATED: tdp_matomo
Matomo tracking for TDP applications based on provenance graph commands.
DEPRECATION Information
Please note that this project has been archived and is no longer being maintained. There is an active development under https://github.com/datavisyn/tdp_core and we will also contribute our future changes to it.
Configuration
- The tracking starts when a URL to a Matomo backend is set in the
config.js. - The site ID corresponds with the Matomo site.
- Enable the md5 encryption of user names to prevent plaintext logging (e.g., when using Matomo with LDAP login)
{
"matomo": {
"url": "https://matomo.my-example-domain.com/", // matomo url with a trailing slash
"site": "1",
"encryptUserName": false
}
}Provenance Commands
Provenance commands using the extension point actionFunction must be annotated with the property analytics in order to be found and tracked.
The analytics configuration property requires the properties category and action from the IMatomoEvent (in src/matomo.ts), which can contain arbitrary strings.
registry.push('actionFunction', 'targidCreateView', function() {
return import('./internal/cmds');
}, {
factory: 'createViewImpl',
analytics: {
category: 'view',
action: 'create'
}
});Installation
git clone https://github.com/datavisyn/tdp_matomo.git
cd tdp_matomo
npm installTesting
npm testBuilding
npm run buildThis repository is part of the Target Discovery Platform (TDP). For tutorials, API docs, and more information about the build and deployment process, see the documentation page.