Today Joseph realized that the pageview tool in cloud wasn't showing any bump for the Maradona pageviews, and eventually we realized that the AQS API results were cached and not updated.
What I did was explicitly forcing a purge of the page via mwmaint1002, but I believe that we should think about a longer term fix to avoid this from re-happening. My understanding is that we don't set any caching headers, so we get the default 1 day in Varnish/ATS:
curl -I https://wikimedia.org/api/rest_v1/metrics/pageviews/per-article/en.wikipedia/all-access/user/Diego_Maradona/daily/2020110500/2020112500 HTTP/2 200 cache-control: s-maxage=86400, max-age=86400 <===================== content-type: application/json; charset=utf-8 server: restbase1020 date: Thu, 26 Nov 2020 09:07:57 GMT
Should we move to something like 4/6/12 hours instead?