Page MenuHomePhabricator

Do pageview analysis on Special:Set* pages
Closed, ResolvedPublic

Description

I'm using hadoop to get special pages for that:

SELECT
  COUNT(DISTINCT ip) AS hits
FROM
  webrequest
WHERE
  year = 2017
  AND month = 7
  AND uri_path = "/wiki/Special:SetDescription"
  AND uri_host = "www.wikidata.org"
  AND http_status = 200
ORDER BY hits DESC
LIMIT 50;

Event Timeline

Once in a while, one ends up on https://www.wikidata.org/wiki/Special:SetLabelDescriptionAliases as js doesn't load.

Is there a way to isolate these cases ?