If you use the default scripts, you will have Google Universal Analytics tracking included.
To collect the data on your account, just use the following code:
<script>
require(["epfl-jquery", "analytics"], function($, ga) {
ga("create", "UA-000000-01", "auto");
ga("set", "anonymizeIp", true);
ga("send", "pageview");
});
</script>
Remember to replace UA-000000-01
with your tracking identifier.
You can find more information in the Google Universal Analytics documentation.