Has something changed in how page views are shown in the dashboard report?

Today I noticed this in my dashboard report:

Just in case I enabled the upcoming change for dashboard reports - it's the same

I know I visited my forums in the past days. Data Explorer also returns visits:

Query
-- [params]
-- date :start_date = 17 aug 2026
-- date :end_date = 17 sep 2026


SELECT
  ar.date,

  SUM(
    CASE
      WHEN ar.req_type = 15 THEN ar.count
      ELSE 0
    END
  ) AS page_views_logged_in,

  SUM(
    CASE
      WHEN ar.req_type = 13 THEN ar.count
      ELSE 0
    END
  ) AS page_views_anonymous

FROM application_requests ar

WHERE ar.date >= :start_date
  AND ar.date <= :end_date
  AND ar.req_type IN (13, 15)

GROUP BY ar.date
ORDER BY ar.date ASC

What happened to the other page views on my dashboard?


Edit: Had a look at the pageviews in the past months

1 Like

Looks like all my views are considered “other traffic” now.


1 Like

Thank you for reporting this. We are in transition on how browser pageviews are measured. My theory is that 6th of July you had a new dashboard enabled for a moment (with the new tracking method enabled), and you disabled it. It is totally fine, but the graph should move back to use numbers from the old tracking.

I have a PR with the fix:

2 Likes

That’s right

3 Likes