All Versions
DSpace Documentation
...
There are two main parts of this development, :
...
Bitstream downloads, and links them with:angular integration that is responsible ...
Item view and search.On the first navigation you will be notified about cookies, once . Once opened up to customize them, you can choose which cookies are going to be installed.
The integration would track these actions:
...
So, generally once the cookies have been set on the user's browser all the interactions of that user within the system will be tracked. You can see all those interactions by opening the matomo Matomo dashboard ( by default if you're using the docker Docker configuration would be matomo-dashboard )
...
Once enabled, you should check also the matomo.siteId and the matomo.tracker.url, both . Both of them must be aligned with your current installation. By default they're set to a local instance started with the docker-compose-matomo file.
...
Each ViewEvent received on the REST side would be parsed and then sent to the matomo Matomo tracker by using the following components:
...
Each event is intercepted by the MatomoEventListener and processed by the MatomoSyncEventHandler that generates a proper request using the configured enrichers ( MatomoRequestDetailsBuilder ) and sends them to the matomo Matomo tracker using the MatomoAsyncClientImpl
...
If you would like to try it out, you must start the docker Docker instance of dspace DSpace and matomo Matomo using the proper docker-compose commands.
If you need to setup a dspace DSpace from scratch, you must build the Dockerfile with the command:
...
You need to:
matomo.request.siteId on matomo.cfg)You need to set check these properties inside the matomo.cfg file:
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
# Enables matomo integration mapped inside the MatomoEventListener
matomo.enabled = true
# Configured `siteid` inside the matomo dashboard
matomo.request.siteid = 1
# The tracking endpoint of matomo
matomo.async-client.baseurl = http://localhost:8081/matomo.php |
Startup / Restart DSpace and try to download a bitstream that has been placed inside the ORIGINAL bundle ( default bundle configured for Matomo integration )
You should see a mapped request inside your Matomo dashboard with the bitstream details - Matomo-Docker-Dashboard
...
The siteId and the trackerUrl must be compatible with the one set on the REST side, since they need to communicate with the same matomo Matomo instance.
If you start the env using dockerDocker, those two addresses are differente different because internally the docker matomo Docker Matomo container has a different address.
...