You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default Matomo does not track the bots (in the general sense on the Web: automatic agents doing some task, like crawling), but it is possible to add this tracking.
Is it something useful to add it in this extension? I mean a parameter $wgMatomoTrackWebBots, which will be false by default and could be set to true.
It is already possible to add $wgMatomoCustomJS = "_paq.push(['appendToTrackingUrl', 'bots=1']);"; but it is not possible to add &bots=1 in the image tracker, so the parameter $wgMatomoTrackWebBots would set both JS and non-JS parts.
Another more general way to solve this issue would be to add a free parameter $wgMatomoCustomImageParameters which could contain "&bots=1".
The text was updated successfully, but these errors were encountered:
As a side note, MediaWiki bots (=users in the user group 'bot') are managed by the parameter $wgMatomoIgnoreBots (true by default). This task is about other bots.
Would this give useful aggregated information about misbehaving bots, e.g. their IP addresses for blocking purposes? I think that's the main use I'd have for it.
By default Matomo does not track the bots (in the general sense on the Web: automatic agents doing some task, like crawling), but it is possible to add this tracking.
Is it something useful to add it in this extension? I mean a parameter
$wgMatomoTrackWebBots
, which will befalse
by default and could be set totrue
.It is already possible to add
$wgMatomoCustomJS = "_paq.push(['appendToTrackingUrl', 'bots=1']);";
but it is not possible to add&bots=1
in the image tracker, so the parameter$wgMatomoTrackWebBots
would set both JS and non-JS parts.Another more general way to solve this issue would be to add a free parameter
$wgMatomoCustomImageParameters
which could contain"&bots=1"
.The text was updated successfully, but these errors were encountered: