One of the ways to find your session in the tracker debugger is looking for the visitor ID that is assigned to you.
Note: This method won’t work if you don’t use cookies. In that case, use a method where you add a parameter to the page URL. Read more
To find your session, follow these steps:
- Open your website.
- Accept all consents.
- Perform the action you want to check, for example sign up for a newsletter.
- Right-click on the page and open Inspect or Inspect Element.
- Navigate to Console.
- Paste the following code into the console and the returned value will be your visitor ID:
_paq.push([function () { console.log(this.getVisitorId()); }]);
- Copy your visitor ID.
- Log in to Piwik PRO.
- Go to Menu > Analytics.
- Navigate to Settings > Tracker debugger.
- Paste the copied visitor ID into the filter.
- Voila! Here’s your current session.