Page MenuHomePhabricator

Number of MediaWiki action API requests that use MobileFrontend's parse module extension

Authored By
phuedx
Nov 30 2018, 1:33 PM
Size
690 B
Referenced Files
None
Subscribers
None

Number of MediaWiki action API requests that use MobileFrontend's parse module extension

+------------+---------+-------------+
| n | n_mfmt | n_mfmt_pct |
+------------+---------+-------------+
| 656646289 | 619970 | 0.0944 |
+------------+---------+-------------+
select
sum(1) as n,
# Testing for %mobileformat% catches
#
# ?action=parse...&mobileformat&...
# ?action=parse...&mobileformat=...&...
#
# The presence of the mobileformat parameter implies the presence of action=parse.
sum(if(uri_query like '%mobileformat%', 1, 0)) as n_mfmt,
round(100 * sum(if(uri_query like '%mobileformat%', 1, 0)) / sum(1), 4) as n_mfmt_pct
from
wmf.webrequest
where
year = 2018
and month = 11
and day = 28
and uri_path = '/w/api.php'
;

File Metadata

Mime Type
text/plain; charset=utf-8
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
6747951
Default Alt Text
Number of MediaWiki action API requests that use MobileFrontend's parse module extension (690 B)

Event Timeline