Moin
2026 年 9 月 16 日午後 10:23
1
今日、ダッシュボードのレポートでこれに気づきました:
念のため、ダッシュボードレポートの今後の変更を有効にしてみましたが、同じ結果です
過去数日間はフォーラムにアクセスしたことはわかっています。Data Explorer でも訪問が返ってきます:
クエリ
-- [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
ダッシュボードの他のページビューはどうなったのでしょうか?
編集:過去数か月のページビューを確認してみました
「いいね!」 1
Moin
2026 年 9 月 17 日午前 12:01
2
どうやら私のすべてのビューが「その他のトラフィック」として扱われるようになったようです。
「いいね!」 1
ご報告ありがとうございます。ブラウザのページビュー計測方法について移行中です。私の推測では、7月6日に新しいダッシュボードが一時的に有効化された(新しい計測方法が有効な状態)後、無効化されたのではないでしょうか。これは問題ありませんが、グラフは従来の計測方法の数値に戻って表示されるべきです。
修正を含むPRを作成しました:
main ← blank-site-traffic
merged 04:53AM - 17 Sep 26 UTC
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
「いいね!」 2