It's possible to track your knowledge base visits and performance with Plausible seamlessly by following the guide below.
Add a new website on Plausible.io
Make sure you set your knowledge base URL as Domain
Head over to Fernand's settings → Knowledge Base → Custom JS section
Paste the code below, making sure to replace help.yourdomain.com
by your custom help center URL.
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'https://plausible.io/js/script.js';
script.dataset.domain = ’help.yourdomain.com’
script.defer = true;
document.getElementsByTagName('head')[0].appendChild(script);