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

**URL:** https://meta.discourse.org/t/has-something-changed-in-how-page-views-are-shown-in-the-dashboard-report/412614
**Category:** Bug
**Tags:** dashboard-reports, fixed
**Created:** [16 september 2026 om 22:23 UTC](https://meta.discourse.org/t/has-something-changed-in-how-page-views-are-shown-in-the-dashboard-report/412614 "2026-09-16T22:23:58Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [16 september 2026 om 22:23 UTC](https://meta.discourse.org/t/has-something-changed-in-how-page-views-are-shown-in-the-dashboard-report/412614/1 "2026-09-16T22:23:58Z")

</div>

Today I noticed this in my dashboard report:

 ![image](https://global.discourse-cdn.com/meta/original/4X/5/a/9/5a90b195173725cb88e398c9289d51462aa562e9.png)

> **Just in case I enabled the upcoming change for dashboard reports - it's the same**
>
> ![image](https://global.discourse-cdn.com/meta/original/4X/f/b/0/fb0338d95f6ddc340611c51156f34208d00092da.png)

I know I visited my forums in the past days. [Data Explorer](https://meta.discourse.org/t/32566?silent=true) also returns visits:

 ![image](https://global.discourse-cdn.com/meta/original/4X/d/6/6/d66ec4e78574907408050c9d8b064d65dc0ec73d.png)

> **Query**
>
> ```sql
> -- [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

 ![image](https://global.discourse-cdn.com/meta/original/4X/d/0/b/d0b8ac672dfb7bf1f7fbd09800364991c06977fc.png)

---

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [17 september 2026 om 00:01 UTC](https://meta.discourse.org/t/has-something-changed-in-how-page-views-are-shown-in-the-dashboard-report/412614/2 "2026-09-17T00:01:46Z")

</div>

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

 ![Screenshot_20260917_015953_Firefox](https://global.discourse-cdn.com/meta/original/4X/c/a/7/ca714864ca822e0439570ba17c8ccd01f3192f17.jpeg)  
 ![Screenshot_20260917_015937_Firefox](https://global.discourse-cdn.com/meta/original/4X/5/b/a/5ba0923049d6e1b85d803a7a04aca72014d6cbe4.jpeg)

---

<div class="post-metadata">

### Author: ![kris.kotlarek](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/kris.kotlarek/32/176919_2.png) [@kris.kotlarek](https://meta.discourse.org/u/kris.kotlarek)
#### Post date: [17 september 2026 om 04:23 UTC](https://meta.discourse.org/t/has-something-changed-in-how-page-views-are-shown-in-the-dashboard-report/412614/5 "2026-09-17T04:23:46Z")

</div>

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:

> <https://github.com/discourse/discourse/pull/43766>
>
> Two transports count browser pageviews. A beacon request sends one count. A head…er on a usual request sends the other count. Both transports can record the same visit. Thus a report must read only one of them for each day.
> 
> Before this change, a report found the first day with beacon data. It then read the beacon counters for that day and for all later days. One day with beacon data was sufficient to make this decision.
> 
> Some sites recorded beacon data on one early day only. Beacons were behind a feature flag. On these sites, a report read a beacon count of zero for all later days. The site traffic report subtracts the browser pageviews from the total pageviews. The remainder is "other traffic". Thus all traffic became "other traffic".
> 
> A report now makes this decision for each day. It reads the beacon counters on each day that recorded beacon traffic. It reads the header counters on the other days. A day with no beacon data does not change the other days.
> 
> The admin dashboard traffic service had the same decision in its own query. It now uses the same rule as the reports.
> 
> Reported on Meta: https://meta.discourse.org/t/has-something-changed-in-how-page-views-are-shown-in-the-dashboard-report/412614

---

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [17 september 2026 om 06:53 UTC](https://meta.discourse.org/t/has-something-changed-in-how-page-views-are-shown-in-the-dashboard-report/412614/6 "2026-09-17T06:53:43Z")

</div>

> [@kris.kotlarek](#):
>
> 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.

That’s right

 ![Screenshot_20260917_085042_Firefox](https://global.discourse-cdn.com/meta/original/4X/2/4/9/249ebdc5ff41c2349f1f9bd87bec13f276094fcb.jpeg)

---

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [18 september 2026 om 07:18 UTC](https://meta.discourse.org/t/has-something-changed-in-how-page-views-are-shown-in-the-dashboard-report/412614/7 "2026-09-18T07:18:08Z")

</div>

Thank you!

 ![Screenshot_20260918_091628_Firefox](https://global.discourse-cdn.com/meta/original/4X/4/7/b/47b07367ba80af99341f1ec8d39f369c355d3f99.jpeg)

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [20 september 2026 om 07:46 UTC](https://meta.discourse.org/t/has-something-changed-in-how-page-views-are-shown-in-the-dashboard-report/412614/8 "2026-09-20T07:46:38Z")

</div>


