# Tracking 404 Pages

{% hint style="info" %}
You can not tell if a page did load or showed 404 just by viewing the visited pages list.

You might want to know if users land on a page that renders your 404 content.&#x20;
{% endhint %}

To get better insights, we can:

1. Create a 404 Tag, so we can easily filter those sessions.
2. Create a 404 Event, so we can see which page triggered the 404 error.

Include this JavaScript snippet in your 404 page template.

{% code title="File: 404.html" fullWidth="false" %}

```html
<!-- After the tracker is included -->
<script>
UST.addTag('404-page-not-found');
UST.addEvent({
    category: 'ERROR',
    action: '404_NOT_FOUND',
});
</script>
```

{% endcode %}

The end result will be something like this:

<figure><img src="https://2006615411-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-Ltuu0c63_YY4iXfi5vJ%2Fuploads%2FxkXrQRDZGFTNDtQTTbjl%2Fimage.png?alt=media&#x26;token=ae0dfd6a-d3f6-4afc-bcb8-b3580390080f" alt=""><figcaption></figcaption></figure>
