matomo-org / plugin-VisitorGenerator

Plugin to create fake visits, websites, users and goals to populate Matomo reports
https://matomo.org
GNU General Public License v3.0
19 stars 22 forks source link

Matomo VisitorGenerator Plugin

Build Status

Description

Plugin to create fake visits, websites, users and goals. This can be used by Matomo users or developers as an easy way to generate fake data to populate Matomo reports.

You can overwrite the log files that are used to generate fake visits in plugins/VisitorGenerator/data or add new logs to the data directory. All files ending with *.log will be replayed.

Plugin developers can provide their own log files by placing '*.log' files within a 'data' directory of their plugin. This way plugin developers make sure there will be always useful test data.

Usage

UI

The plugin adds a new item to the Matomo admin UI visible only for users having Super User access under the section "Development". There you can select a site and for how many days in the past you want to generate new visits.

Note: you need to first enable the Development mode in Matomo. In the root directory of your Matomo install, run the following command to enable development mode: ./console development:enable

CLI

It also adds the following commands to the Matomo CLI tool:

Examples

Other notes

VisitorGenerator makes a lot of requests to the Matomo tracking API to send the visits, so if your server blocks requests based on rules (e.g. with mod_security), you might want to create an exception rule for VisitorGenerator.

Alternatively you can generate visit test data quickly without using the tracker at all using the generate-visits-db option.

Using it in Matomo for WordPress

It only works in Matomo for WordPress if the plugin is installed through git as it's only intended for development.

In Matomo for WordPress you can find the UI in the Matomo Admin under "System".

You can also use the command line to generate the data:

cd wp-content/plugins/matomo/app
./console  visitorgenerator:generate-visits --idsite=1

Legalnotice

This plugin is released under the GPLv3+ license.

This plugin uses the Faker library which is released under the MIT license.