You can track page views by injecting your analytics scripts (ex. Google Analytics) into the "Code" section of your Knowledge Base settings.
This will allow you to send metrics about page views, dwell time, bounce rate, and more straight into wherever you track your other site analytics.
For example, for Google Analytics your code might look like:
```
<script async src="https://www.googletagmanager.com/gtag/js?id=<your ID>"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '<your ID>');
</script>