# Test Run ## Parameters |start_date |end_date |omit_times |include_samples |disable_forecasts |update_packages |help | |:----------|:----------|:----------|:---------------|:-----------------|:---------------|:-----| |2017-01-01 |2017-01-02 |FALSE |TRUE |TRUE |FALSE |FALSE | ## Dependencies Using the following packages from **/a/discovery/r-library**: bsts (0.6.5), data.table (1.10.4), data.tree (0.7.0), devtools (1.12.0), forecast (7.3), ISOcodes (2016.12.09), knitr (1.15.1), optparse (1.3.2), ortiz (0.0.2), plyr (1.8.4), polloi (0.1.7), Rcpp (0.12.9), testthat (1.0.2), tidyverse (1.1.1), uaparser (0.2.0), wmf (0.2.6), yaml (2.1.14) ## Reports ### Report 1 of 44 _Homepage visits, SPARQL & LDF endpoint requests_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/wdqs/basic_usage.tsv**: ``` date path http_success is_automata events 2015-08-15 / FALSE FALSE 1 2015-08-15 /bigdata/namespace/wdq/sparql TRUE FALSE 486 ... 2017-01-01 / FALSE TRUE 620 2017-01-01 / TRUE FALSE 1053 2017-01-01 /bigdata/ldf TRUE FALSE 859 2017-01-01 /bigdata/namespace/wdq/sparql FALSE TRUE 191 2017-01-01 / FALSE FALSE 23 2017-01-01 /bigdata/namespace/wdq/sparql FALSE FALSE 399 2017-01-01 /bigdata/namespace/wdq/sparql TRUE TRUE 43888 2017-01-01 / TRUE TRUE 345 2017-01-01 /bigdata/ldf FALSE FALSE 1 2017-01-01 /bigdata/namespace/wdq/sparql TRUE FALSE 24486 ... 2017-01-26 /bigdata/namespace/wdq/sparql FALSE FALSE 830 2017-01-26 /bigdata/namespace/wdq/sparql TRUE TRUE 157860 ``` 1. Executing report "basic_usage" from the metrics/wdqs module. 2. About to run the following command: `sh modules/metrics/wdqs/basic_usage 2017-01-01 2017-01-02` **Output**: ``` date path http_success is_automata events 2017-01-01 / FALSE TRUE 620 2017-01-01 / TRUE FALSE 1053 2017-01-01 /bigdata/ldf TRUE FALSE 859 2017-01-01 /bigdata/namespace/wdq/sparql FALSE TRUE 191 2017-01-01 / FALSE FALSE 23 2017-01-01 /bigdata/namespace/wdq/sparql FALSE FALSE 399 2017-01-01 /bigdata/namespace/wdq/sparql TRUE TRUE 43888 2017-01-01 / TRUE TRUE 345 2017-01-01 /bigdata/ldf FALSE FALSE 1 2017-01-01 /bigdata/namespace/wdq/sparql TRUE FALSE 24486 ``` It took 1m 5s to generate this report. ### Report 2 of 44 _Relevancy of our desktop search as measured by [PaulScore](https://www.mediawiki.org/wiki/Wikimedia_Discovery/Search/Glossary#PaulScore)_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/paulscore_approximations.tsv**: ``` date event_source pow_1 pow_2 pow_3 pow_4 pow_5 pow_6 pow_7 pow_8 pow_9 2016-10-25 autocomplete 0 0 0 0 0 0 0 0 0 2016-10-25 fulltext 0 0.003 0.016 0.051 0.125 0.259 0.48 0.819 1.312 ... 2017-01-01 autocomplete 0 0 0 0 0 0 0 0 0 2017-01-01 fulltext 0.273 0.279 0.286 0.293 0.302 0.312 0.324 0.338 0.358 ... 2017-02-20 autocomplete 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2017-02-20 fulltext 0.255 0.261 0.268 0.276 0.284 0.294 0.306 0.321 0.341 ``` 1. Executing report "paulscore_approximations" from the metrics/search module. 2. Filling in the timestamp placeholders in the SQL query. 3. About to run the following query: ```SQL SELECT date, event_source, ROUND(SUM(pow_1)/COUNT(1), 3) AS pow_1, ROUND(SUM(pow_2)/COUNT(1), 3) AS pow_2, ROUND(SUM(pow_3)/COUNT(1), 3) AS pow_3, ROUND(SUM(pow_4)/COUNT(1), 3) AS pow_4, ROUND(SUM(pow_5)/COUNT(1), 3) AS pow_5, ROUND(SUM(pow_6)/COUNT(1), 3) AS pow_6, ROUND(SUM(pow_7)/COUNT(1), 3) AS pow_7, ROUND(SUM(pow_8)/COUNT(1), 3) AS pow_8, ROUND(SUM(pow_9)/COUNT(1), 3) AS pow_9 FROM ( SELECT DATE('20170101') AS date, event_searchSessionId, event_source, SUM(IF(event_action = 'click', POW(0.1, event_position), 0)) / SUM(IF(event_action = 'searchResultPage', 1, 0)) AS pow_1, SUM(IF(event_action = 'click', POW(0.2, event_position), 0)) / SUM(IF(event_action = 'searchResultPage', 1, 0)) AS pow_2, SUM(IF(event_action = 'click', POW(0.3, event_position), 0)) / SUM(IF(event_action = 'searchResultPage', 1, 0)) AS pow_3, SUM(IF(event_action = 'click', POW(0.4, event_position), 0)) / SUM(IF(event_action = 'searchResultPage', 1, 0)) AS pow_4, SUM(IF(event_action = 'click', POW(0.5, event_position), 0)) / SUM(IF(event_action = 'searchResultPage', 1, 0)) AS pow_5, SUM(IF(event_action = 'click', POW(0.6, event_position), 0)) / SUM(IF(event_action = 'searchResultPage', 1, 0)) AS pow_6, SUM(IF(event_action = 'click', POW(0.7, event_position), 0)) / SUM(IF(event_action = 'searchResultPage', 1, 0)) AS pow_7, SUM(IF(event_action = 'click', POW(0.8, event_position), 0)) / SUM(IF(event_action = 'searchResultPage', 1, 0)) AS pow_8, SUM(IF(event_action = 'click', POW(0.9, event_position), 0)) / SUM(IF(event_action = 'searchResultPage', 1, 0)) AS pow_9 FROM TestSearchSatisfaction2_16270835 WHERE timestamp >= '20170101' AND timestamp < '20170102' AND event_action IN ('searchResultPage', 'click') AND IF(event_source = 'autocomplete', event_inputLocation = 'header', TRUE) AND IF(event_source = 'autocomplete' AND event_action = 'click', event_position >= 0, TRUE) GROUP BY date, event_searchSessionId, event_source ) AS pows GROUP BY date, event_source; ``` It took 1s to generate this report. ### Report 3 of 44 _Clicks and other events by users searching on mobile web_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/mobile_event_counts.tsv**: ``` date action events 2015-06-11 search sessions 5022 2015-06-11 Result pages opened 2009 ... 2017-01-01 Result pages opened 11483 2017-01-01 search sessions 22721 2017-01-01 clickthroughs 1145 ... 2017-02-20 Result pages opened 11284 2017-02-20 search sessions 23883 ``` 1. Executing report "mobile_event_counts" from the metrics/search module. 2. Filling in the timestamp placeholders in the SQL query. 3. About to run the following query: ```SQL SELECT DATE('20170101') AS date, CASE event_action WHEN 'click-result' THEN 'clickthroughs' WHEN 'session-start' THEN 'search sessions' WHEN 'impression-results' THEN 'Result pages opened' END AS action, COUNT(*) AS events FROM MobileWebSearch_12054448 WHERE timestamp >= '20170101' AND timestamp < '20170102' AND event_action IN('click-result', 'session-start', 'impression-results') GROUP BY date, action; ``` **Output**: ``` date action events 2017-01-01 clickthroughs 1153 2017-01-01 Result pages opened 11666 2017-01-01 search sessions 23557 ``` It took 25s to generate this report. ### Report 4 of 44 _How the user initiated their search session on the Android app_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/invoke_source_counts.tsv**: ``` date invoke_source events 2016-07-28 Main article toolbar 573 2016-07-28 Floating search bar in the feed 645 ... 2017-01-01 Floating search bar in the feed 6362 2017-01-01 Main article toolbar 5663 2017-01-01 Voice search query 47 2017-01-01 Widget 136 2017-01-01 Process-text intent 11 2017-01-01 Share intent 19 ... 2017-02-20 Voice search query 31 2017-02-20 Widget 86 ``` 1. Executing report "invoke_source_counts" from the metrics/search module. 2. Filling in the timestamp placeholders in the SQL query. 3. About to run the following query: ```SQL SELECT DATE('20170101') AS date, CASE event_source WHEN 0 THEN 'Main article toolbar' WHEN 1 THEN 'Widget' WHEN 2 THEN 'Share intent' WHEN 3 THEN 'Process-text intent' WHEN 4 THEN 'Floating search bar in the feed' WHEN 5 THEN 'Voice search query' END AS invoke_source, COUNT(*) AS events FROM MobileWikiAppSearch_15729321 WHERE timestamp >= '20170101' AND timestamp < '20170102' AND event_action = 'start' GROUP BY date, invoke_source; ``` **Output**: ``` date invoke_source events 2017-01-01 Floating search bar in the feed 6362 2017-01-01 Main article toolbar 5663 2017-01-01 Process-text intent 11 2017-01-01 Share intent 19 2017-01-01 Voice search query 47 2017-01-01 Widget 136 ``` It took 1s to generate this report. ### Report 5 of 44 _The position of the clicked search result on the Android app_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/click_position_counts.tsv**: ``` date click_position events 2016-07-28 1 696 2016-07-28 2 193 ... 2017-01-01 1 7026 2017-01-01 2 1993 2017-01-01 4 298 2017-01-01 3 868 2017-01-01 8 53 2017-01-01 7 64 2017-01-01 5 125 2017-01-01 6 79 2017-01-01 10-19 186 2017-01-01 20-100 118 2017-01-01 9 49 2017-01-01 100+ 4 ... 2017-02-20 8 43 2017-02-20 9 25 ``` 1. Executing report "click_position_counts" from the metrics/search module. 2. Filling in the timestamp placeholders in the SQL query. 3. About to run the following query: ```SQL SELECT DATE('20170101') AS date, CASE WHEN (event_position + 1) < 10 THEN (event_position + 1) WHEN (event_position + 1) >= 10 AND (event_position + 1) < 20 THEN '10-19' WHEN (event_position + 1) >= 20 AND (event_position + 1) <= 100 THEN '20-100' WHEN (event_position + 1) > 100 THEN '100+' END AS click_position, COUNT(*) AS events FROM MobileWikiAppSearch_15729321 WHERE timestamp >= '20170101' AND timestamp < '20170102' AND event_action = 'click' GROUP BY date, click_position; ``` **Output**: ``` date click_position events 2017-01-01 1 7026 2017-01-01 10-19 186 2017-01-01 100+ 4 2017-01-01 2 1993 2017-01-01 20-100 118 2017-01-01 3 868 2017-01-01 4 298 2017-01-01 5 125 2017-01-01 6 79 2017-01-01 7 64 2017-01-01 8 53 2017-01-01 9 49 ``` It took 1s to generate this report. ### Report 6 of 44 _Clicks and other events by users searching on Android and iOS apps_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/app_event_counts.tsv**: ``` date action platform events 2014-12-05 clickthroughs Android 5500 2014-12-05 search sessions Android 6037 ... 2017-01-01 Result pages opened Android 42075 2017-01-01 Result pages opened iOS 11373 2017-01-01 search sessions Android 14186 2017-01-01 clickthroughs Android 12625 2017-01-01 search sessions iOS 1934 2017-01-01 clickthroughs iOS 1682 ... 2017-02-20 search sessions Android 11573 2017-02-20 search sessions iOS 1346 ``` 1. Executing report "app_event_counts" from the metrics/search module. 2. Filling in the timestamp placeholders in the SQL query. 3. About to run the following query: ```SQL SELECT date, action, platform, COUNT(*) AS events FROM ( SELECT DATE('20170101') AS date, CASE event_action WHEN 'click' THEN 'clickthroughs' WHEN 'start' THEN 'search sessions' WHEN 'results' THEN 'Result pages opened' END AS action, CASE WHEN INSTR(userAgent, 'Android') > 0 THEN 'Android' ELSE 'iOS' END AS platform FROM MobileWikiAppSearch_10641988 WHERE timestamp >= '20170101' AND timestamp < '20170102' AND event_action IN ('click', 'start', 'results') UNION ALL SELECT DATE('20170101') AS date, CASE event_action WHEN 'click' THEN 'clickthroughs' WHEN 'start' THEN 'search sessions' WHEN 'results' THEN 'Result pages opened' END AS action, CASE WHEN INSTR(userAgent, 'Android') > 0 THEN 'Android' ELSE 'iOS' END AS platform FROM MobileWikiAppSearch_15729321 WHERE timestamp >= '20170101' AND timestamp < '20170102' AND event_action IN ('click', 'start', 'results') ) AS MobileWikiAppSearch GROUP BY date, action, platform; ``` **Output**: ``` date action platform events 2017-01-01 clickthroughs Android 12643 2017-01-01 clickthroughs iOS 1703 2017-01-01 Result pages opened Android 42160 2017-01-01 Result pages opened iOS 11535 2017-01-01 search sessions Android 14224 2017-01-01 search sessions iOS 1992 ``` It took 1s to generate this report. ### Report 7 of 44 _Proportion of users having search sessions longer than a predetermined threshold (10s)_ **Note**: this report is configured to have one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/search_threshold_pass_rate.tsv**: ``` date threshold_pass 2015-09-02 0.337662337662338 2015-09-03 0.167173252279635 ... 2017-01-01 0.539904928696522 ... 2017-02-19 0.488488645262334 2017-02-20 0.481383314401111 ``` 1. Executing report "search_threshold_pass_rate" from the metrics/search module. 2. About to run the following command: `sh modules/metrics/search/search_threshold_pass_rate 2017-01-01 2017-01-02` **Output**: ``` date threshold_pass ``` It took 14s to generate this report. ### Report 8 of 44 _Counts of calls made to our various APIs_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/search_api_usage.tsv**: ``` date api calls 2015-05-01 cirrus 22001042 2015-05-01 geo 391123 ... 2017-01-01 cirrus 7169466 2017-01-01 geo 636628 2017-01-01 language 4772 2017-01-01 open 49113613 2017-01-01 prefix 56564117 ... 2017-02-01 open 77574548 2017-02-01 prefix 50893885 ``` 1. Executing report "search_api_usage" from the metrics/search module. 2. About to run the following command: `sh modules/metrics/search/search_api_usage 2017-01-01 2017-01-02` **Output**: ``` date api calls 2017-01-01 open 49113613 2017-01-01 prefix 56564117 2017-01-01 geo 1171206 2017-01-01 language 4772 2017-01-01 cirrus 88877965 ``` It took 9m 33s to generate this report. ### Report 9 of 44 _How long users last on pages they arrived at from the search results page, computed like [median lethal dose in toxicology](https://en.wikipedia.org/wiki/Median_lethal_dose)_ **Note**: this report is configured to have one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/sample_page_visit_ld.tsv**: ``` date LD10 LD25 LD50 LD75 LD90 LD95 LD99 2015-09-02 15 15 25 165 NA NA NA 2015-09-03 15 25 55 225 NA NA NA ... 2017-01-01 15 25 55 135 390 NA NA ... 2017-02-19 15 35 75 225 NA NA NA 2017-02-20 15 35 150 390 NA NA NA ``` 1. Executing report "sample_page_visit_ld" from the metrics/search module. 2. About to run the following command: `sh modules/metrics/search/sample_page_visit_ld 2017-01-01 2017-01-02` **Output**: ``` date LD10 LD25 LD50 LD75 LD90 LD95 LD99 ``` It took 9s to generate this report. ### Report 10 of 44 _User-perceived load times when searching on mobile web_ **Note**: this report is configured to have one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/mobile_load_times.tsv**: ``` date Median 95th percentile 99th percentile 2015-06-11 409 971.560000000001 1661.28 2015-06-12 414 1078 1895.18 ... 2017-01-01 325 894.9 2413.42000000001 ... 2017-02-19 341 974 2013.75 2017-02-20 338 987.85 2544 ``` 1. Executing report "mobile_load_times" from the metrics/search module. 2. About to run the following command: `sh modules/metrics/search/mobile_load_times 2017-01-01 2017-01-02` **Output**: ``` date Median 95th percentile 99th percentile 2017-01-01 326 897.6 2416.84 ``` It took 3m 46s to generate this report. ### Report 11 of 44 _User-perceived load times when searching on desktop_ **Note**: this report is configured to have one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/desktop_load_times.tsv**: ``` date Median 95th percentile 99th percentile 2015-04-14 210 435.5 603 2015-04-15 201 636.2 807.599999999999 ... 2017-01-01 695 2868.45 8533.60000000001 ... 2017-02-19 701 3061.1 11607.2 2017-02-20 702 3872 11123 ``` 1. Executing report "desktop_load_times" from the metrics/search module. 2. About to run the following command: `sh modules/metrics/search/desktop_load_times 2017-01-01 2017-01-02` **Output**: ``` date Median 95th percentile 99th percentile ``` It took 7s to generate this report. ### Report 12 of 44 _Clicks and other events by users searching on desktop_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/desktop_event_counts.tsv**: ``` date action events 2015-04-14 search sessions 81 2015-04-14 Result pages opened 26 ... 2017-01-01 clickthroughs 2684 2017-01-01 Result pages opened 9251 2017-01-01 search sessions 3985 ... 2017-02-20 Result pages opened 18348 2017-02-20 search sessions 7871 ``` 1. Executing report "desktop_event_counts" from the metrics/search module. 2. About to run the following command: `sh modules/metrics/search/desktop_event_counts 2017-01-01 2017-01-02` **Output**: ``` date action events ``` It took 3s to generate this report. ### Report 13 of 44 _Zero results rate (ZRR) of searches with suggestions_ **Note**: this report is configured to have one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/cirrus_suggestion_breakdown_with_automata.tsv**: ``` date rate 2015-07-15 0.31 2015-07-16 0.31 ... 2017-01-01 0.1852 ... 2017-01-25 0.1992 2017-01-26 0.205 ``` 1. Executing report "cirrus_suggestion_breakdown_with_automata" from the metrics/search module. 2. About to run the following command: `sh modules/metrics/search/cirrus_suggestion_breakdown_with_automata 2017-01-01 2017-01-02` **Output**: ``` date rate 2017-01-01 0.1852 ``` It took 17m 40s to generate this report. ### Report 14 of 44 _Zero results rate (ZRR) of searches with suggestions, excluding known bots/tools_ **Note**: this report is configured to have one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/cirrus_suggestion_breakdown_no_automata.tsv**: ``` date rate 2015-12-11 0.25 2015-12-12 0.25 ... 2017-01-01 0.1597 ... 2017-01-25 0.1485 2017-01-26 0.1484 ``` 1. Executing report "cirrus_suggestion_breakdown_no_automata" from the metrics/search module. 2. About to run the following command: `sh modules/metrics/search/cirrus_suggestion_breakdown_no_automata 2017-01-01 2017-01-02` **Output**: ``` date rate 2017-01-01 0.1398 ``` It took 19m 26s to generate this report. ### Report 15 of 44 _Zero results rate (ZRR) broken down by full-text vs. prefix searches_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/cirrus_query_breakdowns_with_automata.tsv**: ``` date query_type rate 2015-06-01 Full-Text Search 0.17762555821644 2015-06-01 Prefix Search 0.347423305286077 ... 2017-01-01 prefix 0.1867 2017-01-01 full_text 0.2051 2017-01-01 comp_suggest 0.2152 2017-01-01 GeoData_spatial_search 0.2747 2017-01-01 more_like 0.009 2017-01-01 regex 0.1746 ... 2017-01-26 GeoData_spatial_search 0.3899 2017-01-26 regex 0.2371 ``` 1. Executing report "cirrus_query_breakdowns_with_automata" from the metrics/search module. 2. About to run the following command: `sh modules/metrics/search/cirrus_query_breakdowns_with_automata 2017-01-01 2017-01-02` **Output**: ``` date query_type rate 2017-01-01 full_text 0.2051 2017-01-01 GeoData_spatial_search 0.2747 2017-01-01 prefix 0.1867 2017-01-01 more_like 0.009 2017-01-01 comp_suggest 0.2152 2017-01-01 regex 0.1746 ``` It took 20m 12s to generate this report. ### Report 16 of 44 _Zero results rate (ZRR) broken down by full-text vs. prefix searches, excluding known bots/tools_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/cirrus_query_breakdowns_no_automata.tsv**: ``` date query_type rate 2015-12-11 Full-Text Search 0.15 2015-12-11 Prefix Search 0.38 ... 2017-01-01 prefix 0.1877 2017-01-01 full_text 0.1956 2017-01-01 comp_suggest 0.2106 2017-01-01 GeoData_spatial_search 0.2484 2017-01-01 more_like 0.009 2017-01-01 regex 0.2321 ... 2017-01-26 GeoData_spatial_search 0.2372 2017-01-26 regex 0.2556 ``` 1. Executing report "cirrus_query_breakdowns_no_automata" from the metrics/search module. 2. About to run the following command: `sh modules/metrics/search/cirrus_query_breakdowns_no_automata 2017-01-01 2017-01-02` **Output**: ``` date query_type rate 2017-01-01 full_text 0.1183 2017-01-01 GeoData_spatial_search 0.0859 2017-01-01 prefix 0.161 2017-01-01 more_like 0.009 2017-01-01 comp_suggest 0.196 2017-01-01 regex 0.2588 ``` It took 13m 41s to generate this report. ### Report 17 of 44 _Overall zero results rate (ZRR)_ **Note**: this report is configured to have one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/cirrus_query_aggregates_with_automata.tsv**: ``` date rate 2015-06-01 0.28 2015-06-02 0.3 ... 2017-01-01 0.1988 ... 2017-01-25 0.2181 2017-01-26 0.2169 ``` 1. Executing report "cirrus_query_aggregates_with_automata" from the metrics/search module. 2. About to run the following command: `sh modules/metrics/search/cirrus_query_aggregates_with_automata 2017-01-01 2017-01-02` **Output**: ``` date rate 2017-01-01 0.1988 ``` It took 22m 40s to generate this report. ### Report 18 of 44 _Zero results rate (ZRR), excluding known bots/tools_ **Note**: this report is configured to have one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/cirrus_query_aggregates_no_automata.tsv**: ``` date rate 2015-12-11 0.29 2015-12-12 0.27 ... 2017-01-01 0.1925 ... 2017-01-25 0.1997 2017-01-26 0.197 ``` 1. Executing report "cirrus_query_aggregates_no_automata" from the metrics/search module. 2. About to run the following command: `sh modules/metrics/search/cirrus_query_aggregates_no_automata 2017-01-01 2017-01-02` **Output**: ``` date rate 2017-01-01 0.1635 ``` It took 20m 50s to generate this report. ### Report 19 of 44 _Zero results and total searches broken down by language-project pairs (e.g. German Wikiquote ZRR vs. French Wikibooks ZRR)_ **Note**: this report is configured to allow more than one row per day. **Note**: this report is configured to be "rolling" -- 30 maximum number of days allowed in the final dataset. Some of the existing data in **/a/aggregate-datasets/discovery/search/cirrus_langproj_breakdown_with_automata.tsv**: ``` date language project zero_results total 2016-12-28 Adyghe Wikipedia 135 190 2016-12-28 Azerbaijani Wikibooks 68 91 ... 2017-01-01 Arabic Wikimedia Chapter 29 43 2017-01-01 Belarusian Wikipedia 1112 7813 2017-01-01 Min Dong Wikipedia 106 197 2017-01-01 Greek Wikivoyage 102 134 2017-01-01 English Wikiquote 11653 33667 2017-01-01 Spanish Wikipedia 950946 4683748 2017-01-01 Estonian Wikiquote 10 16 2017-01-01 Persian Wikivoyage 125 385 2017-01-01 Gujarati Wiktionary 30 35 2017-01-01 Croatian Wikisource 19 71 2017-01-01 Indonesian Wikipedia 134022 501012 2017-01-01 Japanese Wikinews 63 81 2017-01-01 Kabyle Wikipedia 26 148 2017-01-01 Khmer Wikipedia 1329 3773 2017-01-01 Korean Wikiversity 3 3 2017-01-01 Komi Wikipedia 7 58 2017-01-01 Kirghiz Wikipedia 535 2638 2017-01-01 Sindhi Wikipedia 275 1824 2017-01-01 Vietnamese Wiktionary 1214 8998 2017-01-01 Walloon Wikipedia 27 221 2017-01-01 North Frisian Wikipedia 55 155 2017-01-01 Armenian Wikiquote 36 126 2017-01-01 Indonesian Wikibooks 279 545 2017-01-01 Indonesian Wiktionary 692 1504 2017-01-01 Norwegian (Nynorsk) Wikipedia 1940 11482 2017-01-01 Oromo Wikipedia 85 210 2017-01-01 Polish Wikivoyage 151 370 2017-01-01 Romanian Wikisource 383 897 2017-01-01 Slovak Wikibooks 13 22 2017-01-01 Serbian Wikipedia 21354 120345 2017-01-01 Sundanese Wikipedia 159 660 2017-01-01 Wolof Wikipedia 19 85 2017-01-01 Kalmyk Wikipedia 10 57 2017-01-01 Afrikaans Wikipedia 2061 8487 2017-01-01 Arabic Wikibooks 2035 4016 2017-01-01 Arabic Wikiquote 597 1567 2017-01-01 Bavarian Wikipedia 236 1242 2017-01-01 Corsican Wikipedia 41 155 2017-01-01 English Wikipedia 8971365 54358528 2017-01-01 English Wikivoyage 8496 22083 2017-01-01 Esperanto Wikipedia 1971 7252 2017-01-01 Faroese Wiktionary 4 4 2017-01-01 Gujarati Wikipedia 7351 14575 2017-01-01 Hebrew Wikisource 2003 5535 2017-01-01 Maori Wiktionary 3 7 2017-01-01 Malay Wikibooks 21 27 2017-01-01 Norwegian (Bokmal) Wikiquote 18 45 2017-01-01 Norwegian (Bokmal) Wikisource 25253 25315 2017-01-01 Occitan Wikipedia 185 883 2017-01-01 Slovenian Wikiquote 8 28 2017-01-01 Swati Wiktionary 1 7 2017-01-01 Swedish Wikibooks 64 154 2017-01-01 Venetian Wiktionary 49 135 2017-01-01 Bulgarian Wiktionary 580 1899 2017-01-01 Buryat Wikipedia 18 68 2017-01-01 Danish Wikipedia 47727 234879 2017-01-01 Spanish Wikiquote 2601 7109 2017-01-01 Galician Wikipedia 1930 11964 2017-01-01 Hindi Wikipedia 104196 215157 2017-01-01 Hungarian Wiktionary 506 1826 2017-01-01 Icelandic Wikipedia 1680 8585 2017-01-01 Jamaican Patois Wikipedia 34 60 2017-01-01 Cornish Wikipedia 26 80 2017-01-01 Shona Wikipedia 266 744 2017-01-01 Swedish Wikiquote 126 295 2017-01-01 Azerbaijani Wikibooks 67 106 2017-01-01 Chamorro Wikipedia 43 51 2017-01-01 Welsh Wiktionary 3 3 2017-01-01 Greek Wikiquote 35 158 2017-01-01 Hausa Wikipedia 84 146 2017-01-01 Inupiak Wikipedia 33 46 2017-01-01 Georgian Wikipedia 10098 36612 2017-01-01 Limburgish Wikipedia 127 435 2017-01-01 NA Login wiki 7 7 2017-01-01 Latvian Wiktionary 23 55 2017-01-01 Norwegian (Bokmal) Wikipedia 70441 374767 2017-01-01 Papiamentu Wikipedia 11 68 2017-01-01 Sanskrit Wiktionary 543 1003 2017-01-01 Serbo-Croatian Wikipedia 6219 35564 2017-01-01 Turkish Wikinews 29 102 2017-01-01 Welsh Wikipedia 313 2108 2017-01-01 Galician Wiktionary 10 66 2017-01-01 Indonesian Wikisource 8088 8211 2017-01-01 Polish Wiktionary 4449 31544 2017-01-01 Swedish Wikipedia 146789 1110130 2017-01-01 Zeelandic Wikipedia 83 167 2017-01-01 Chinese Wikipedia 418056 1414970 2017-01-01 Bulgarian Wikipedia 29801 148958 2017-01-01 Bislama Wikipedia 9 21 2017-01-01 Estonian Wikibooks 1 3 2017-01-01 Hebrew Wikipedia 161192 556993 2017-01-01 Karakalpak Wikipedia 36 83 2017-01-01 Luxembourgish Wikipedia 308 2040 2017-01-01 Moksha Wikipedia 15 24 2017-01-01 Mongolian Wikipedia 3435 11349 2017-01-01 Norwegian (Bokmal) Wikinews 1 5 2017-01-01 Oriya Wikipedia 894 2433 2017-01-01 Romanian Wiktionary 529 1361 2017-01-01 Sardinian Wikipedia 71 189 2017-01-01 Slovenian Wikipedia 9362 47697 2017-01-01 Thai Wikipedia 54507 192608 2017-01-01 Urdu Wikipedia 8868 31858 2017-01-01 Hawaiian Wikipedia 30 86 2017-01-01 Armenian Wikibooks 5 7 2017-01-01 Malagasy Wiktionary 0 35 2017-01-01 Eastern Punjabi Wikipedia 1641 4248 2017-01-01 Romanian Wikivoyage 4 5 2017-01-01 Albanian Wikipedia 8512 33282 2017-01-01 Serbian Wikinews 8 12 2017-01-01 Sesotho Wikipedia 501 539 2017-01-01 Tamil Wiktionary 1375 6195 2017-01-01 Telugu Wiktionary 377 2537 2017-01-01 Uzbek Wikipedia 2707 12758 2017-01-01 Yiddish Wikipedia 70 571 2017-01-01 Belarusian Wiktionary 27 34 2017-01-01 Czech Wikipedia 153610 917519 2017-01-01 English Wikibooks 12160 26652 2017-01-01 Friulian Wikipedia 34 94 2017-01-01 Italian Wikiversity 278 697 2017-01-01 Japanese Wikiquote 98 127 2017-01-01 Georgian Wikiquote 48 61 2017-01-01 Kannada Wikipedia 12797 22894 2017-01-01 Polish Wikisource 17941 19357 2017-01-01 Cebuano Wikipedia 3018 4357 2017-01-01 Greek Wikisource 415 670 2017-01-01 Esperanto Wikiquote 17 27 2017-01-01 Spanish Wikibooks 1636 2713 2017-01-01 Fijian Wiktionary 2 11 2017-01-01 Hindi Wikiquote 272 311 2017-01-01 Lithuanian Wiktionary 72 226 2017-01-01 Dutch Wikiquote 273 440 2017-01-01 Serbian Wiktionary 95 456 2017-01-01 NA Wikimania 2014 1 9 2017-01-01 NA Wikimania 2017 35 39 2017-01-01 Arabic Wiktionary 1687 4195 2017-01-01 German Wikisource 2687 9781 2017-01-01 Greek Wikibooks 61 106 2017-01-01 French Wikipedia 915904 4513169 2017-01-01 Armenian Wikipedia 3321 17337 2017-01-01 Italian Wikiquote 1948 10256 2017-01-01 Lithuanian Wikiquote 111 197 2017-01-01 Newar Wikipedia 511 979 2017-01-01 Slovenian Wikisource 41718 42159 2017-01-01 Venda Wikipedia 36 92 2017-01-01 Alemannic Wikipedia 613 2121 2017-01-01 Bengali Wikipedia 26458 105118 2017-01-01 Spanish Wikivoyage 939 1396 2017-01-01 Finnish Wikiquote 121 737 2017-01-01 Scottish Gaelic Wikipedia 30 244 2017-01-01 Italian Wikipedia 538231 3447334 2017-01-01 Japanese Wiktionary 1322 5645 2017-01-01 Korean Wikipedia 102170 443337 2017-01-01 Luxembourgish Wiktionary 6 10 2017-01-01 Latvian Wikipedia 4822 27796 2017-01-01 Kirundi Wikipedia 9 15 2017-01-01 Russian Wikipedia 907014 4744571 2017-01-01 Turkish Wikipedia 217815 1079760 2017-01-01 Tumbuka Wikipedia 23 47 2017-01-01 Ukrainian Wikimedia Chapter 33 71 2017-01-01 Chinese Wikisource 1510 3048 2017-01-01 West Frisian Wikipedia 352 1349 2017-01-01 Javanese Wikipedia 314 1348 2017-01-01 Maltese Wiktionary 1 3 2017-01-01 Nahuatl Wikipedia 30 122 2017-01-01 Russian Wikiquote 1756 6084 2017-01-01 Simple English Wikiquote 60 89 2017-01-01 Swahili Wikipedia 2442 6468 2017-01-01 Turkish Wiktionary 5741 28597 2017-01-01 Ukrainian Wikiquote 101 226 2017-01-01 Arabic Wikisource 5671 10190 2017-01-01 Bengali Wiktionary 162 238 2017-01-01 Breton Wiktionary 185 455 2017-01-01 Catalan Wikimedia Chapter 22 26 2017-01-01 Kashubian Wikipedia 10 51 2017-01-01 Czech Wikisource 342 744 2017-01-01 Hakka Wikipedia 21 96 2017-01-01 Latgalian Wikipedia 10 20 2017-01-01 Lithuanian Wikipedia 11088 81267 2017-01-01 Pennsylvania German Wikipedia 74 210 2017-01-01 Samogitian Wikipedia 23 43 2017-01-01 Bashkir Wikipedia 139 504 2017-01-01 Finnish Wikipedia 72403 552725 2017-01-01 Japanese Wikibooks 1170 1695 2017-01-01 Karachay-Balkar Wikipedia 3 46 2017-01-01 NA MediaWiki 7714 14937 2017-01-01 Marshallese Wikipedia 8 8 2017-01-01 Marathi Wikiquote 22 33 2017-01-01 Romanian Wikiquote 102 129 2017-01-01 Slovenian Wiktionary 38 89 2017-01-01 Venetian Wikipedia 72 443 2017-01-01 Vietnamese Wikipedia 93320 369762 2017-01-01 Vietnamese Wikiquote 799 1178 2017-01-01 Chinese Wiktionary 1677 6744 2017-01-01 Assamese Wikipedia 291 950 2017-01-01 Avar Wikipedia 30 65 2017-01-01 Tibetan Wikipedia 175 519 2017-01-01 Breton Wikipedia 12382 19594 2017-01-01 Czech Wikinews 43 90 2017-01-01 Zazaki Wikipedia 37 327 2017-01-01 Spanish Wikiversity 1034 1316 2017-01-01 Persian Wikiquote 796 2020 2017-01-01 Finnish Wiktionary 675 6034 2017-01-01 Hebrew Wikibooks 1790 2484 2017-01-01 Armenian Wiktionary 65 263 2017-01-01 Burmese Wikipedia 3186 8510 2017-01-01 Dutch Wikibooks 610 1007 2017-01-01 Oriya Wikisource 16282 16283 2017-01-01 Sinhalese Wikipedia 3480 9266 2017-01-01 Albanian Wikinews 13 20 2017-01-01 Bihari Wikipedia 228 486 2017-01-01 Catalan Wikipedia 27340 124200 2017-01-01 Italian Wikibooks 556 1119 2017-01-01 Kannada Wikisource 15090 15114 2017-01-01 Lao Wiktionary 2 4 2017-01-01 Malayalam Wikipedia 19097 55648 2017-01-01 Moldovan Wikipedia 3 29 2017-01-01 Russian Wiktionary 6085 71352 2017-01-01 Tahitian Wikipedia 2 9 2017-01-01 Adyghe Wikipedia 40 53 2017-01-01 Arabic Wikinews 1028 2196 2017-01-01 Estonian Wiktionary 93 398 2017-01-01 Finnish Wikibooks 74 171 2017-01-01 Japanese Wikipedia 588861 2898806 2017-01-01 Japanese Wikiversity 10 20 2017-01-01 Kazakh Wikipedia 3861 18176 2017-01-01 Lak Wikipedia 40 60 2017-01-01 Maltese Wikipedia 100 265 2017-01-01 Russian Wikiversity 227 384 2017-01-01 Simple English Wikipedia 34190 101006 2017-01-01 Thai Wiktionary 451 1332 2017-01-01 Turkish Wikimedia Chapter 45 56 2017-01-01 Ukrainian Wikipedia 40422 210934 2017-01-01 Czech Wiktionary 7274 15204 2017-01-01 Danish Wikisource 12 20 2017-01-01 Hebrew Wikivoyage 254 364 2017-01-01 Indonesian Wikiquote 99 184 2017-01-01 Kabardian Wikipedia 20 35 2017-01-01 NA Meta wiki 6059 12127 2017-01-01 Russian Wikibooks 366 661 2017-01-01 Albanian Wikibooks 32 77 2017-01-01 Breton Wikimedia Chapter 9 10 2017-01-01 German Wikiversity 128 295 2017-01-01 Spanish Wikisource 41540 43225 2017-01-01 French Wikisource 13580 61634 2017-01-01 Manx Wikipedia 13 60 2017-01-01 Interlingue Wikipedia 101 239 2017-01-01 Greenlandic Wiktionary 6 8 2017-01-01 Swedish Wiktionary 2219 15482 2017-01-01 Tagalog Wikipedia 13739 46105 2017-01-01 Ukrainian Wikisource 3282 3319 2017-01-01 Banjar Wikipedia 14 79 2017-01-01 Catalan Wikiquote 101 484 2017-01-01 NA Wikimedia Commons 225454 704361 2017-01-01 Crimean Tatar Wikipedia 248 377 2017-01-01 Gujarati Wikisource 14311 14316 2017-01-01 Northern Luri Wikipedia 6 30 2017-01-01 Meadow Mari Wikipedia 9 60 2017-01-01 Minangkabau Wikipedia 99 294 2017-01-01 Marathi Wikibooks 76 92 2017-01-01 Portuguese Wikinews 545 1412 2017-01-01 Romanian Wikibooks 20 29 2017-01-01 English Wikiversity 2289 6186 2017-01-01 Estonian Wikisource 29215 29227 2017-01-01 Persian Wikibooks 328 571 2017-01-01 Galician Wikiquote 1 2 2017-01-01 Italian Wikinews 187 441 2017-01-01 Lingala Wikipedia 28 67 2017-01-01 NA Office wiki 8 42 2017-01-01 Scots Wikipedia 271 1573 2017-01-01 Sango Wiktionary 1 1 2017-01-01 Serbo-Croatian Wiktionary 20 193 2017-01-01 NA Wikispecies 1905 6171 2017-01-01 Telugu Wikisource 336 446 2017-01-01 Tajik Wikipedia 668 2043 2017-01-01 Thai Wikisource 231 466 2017-01-01 Tsonga Wikipedia 15 33 2017-01-01 Central Bicolano Wikipedia 69 311 2017-01-01 German Wikiquote 1468 4065 2017-01-01 English Wikinews 1954 5085 2017-01-01 Spanish Wikinews 822 1255 2017-01-01 Persian Wikipedia 278632 991373 2017-01-01 Hebrew Wikinews 89 96 2017-01-01 Hebrew Wiktionary 3210 9408 2017-01-01 Ladino Wikipedia 186 415 2017-01-01 Malayalam Wikibooks 27 41 2017-01-01 Dutch Wiktionary 906 5357 2017-01-01 Norwegian (Bokmal) Wiktionary 331 1640 2017-01-01 Occitan Wiktionary 37 137 2017-01-01 Romanian Wikipedia 43002 231746 2017-01-01 Vietnamese Wikibooks 52 97 2017-01-01 Akan Wikipedia 151 228 2017-01-01 Aragonese Wikipedia 947365 948585 2017-01-01 Egyptian Arabic Wikipedia 3291 12866 2017-01-01 Persian Wikinews 10 22 2017-01-01 Faroese Wikipedia 141 489 2017-01-01 Icelandic Wiktionary 75 345 2017-01-01 Italian Wiktionary 1894 8821 2017-01-01 Maithili Wikipedia 192 378 2017-01-01 Esperanto Wiktionary 241 873 2017-01-01 Spanish Wiktionary 21380 31938 2017-01-01 Irish Wikipedia 246 1008 2017-01-01 Kurdish (Kurmanji) Wikiquote 1 3 2017-01-01 Kirghiz Wiktionary 8 20 2017-01-01 NA Wikitech 236 462 2017-01-01 Pali Wikipedia 9 13 2017-01-01 Tajik Wiktionary 73 139 2017-01-01 Turkish Wikiquote 1104 4166 2017-01-01 NA Wikimedia Foundation wiki 7113 9729 2017-01-01 Chinese Wikiquote 830 1270 2017-01-01 Arabic Wikiversity 691 1164 2017-01-01 Bosnian Wikipedia 4276 21371 2017-01-01 Catalan Wikibooks 58 75 2017-01-01 English Wikisource 46477 55562 2017-01-01 Kazakh Wiktionary 2 4 2017-01-01 Korean Wikinews 12 13 2017-01-01 Korean Wikiquote 137 151 2017-01-01 NA Wikimedia Outreach 27 48 2017-01-01 Sesotho Wiktionary 1 1 2017-01-01 Turkish Wikisource 310 843 2017-01-01 Azerbaijani Wikipedia 13862 58602 2017-01-01 French Wikiversity 2097 4071 2017-01-01 Gagauz Wikipedia 58 124 2017-01-01 Galician Wikibooks 0 3 2017-01-01 Croatian Wikibooks 20 35 2017-01-01 Italian Wikisource 17956 19955 2017-01-01 Dutch Wikipedia 249467 1450757 2017-01-01 Norwegian (Bokmal) Wikibooks 0 1 2017-01-01 Northern Sotho Wikipedia 41 71 2017-01-01 Uyghur Wiktionary 1 1 2017-01-01 Uzbek Wiktionary 22 229 2017-01-01 Southern Azerbaijani Wikipedia 161 541 2017-01-01 German Wikibooks 4316 7052 2017-01-01 Greek Wikinews 4 7 2017-01-01 Croatian Wikipedia 19513 100014 2017-01-01 Lojban Wikipedia 11 50 2017-01-01 Malay Wikipedia 14562 64590 2017-01-01 NA Wikidata 599772 895207 2017-01-01 Persian Wiktionary 509 1736 2017-01-01 Interlingua Wikipedia 107 477 2017-01-01 Malayalam Wikisource 50496 50574 2017-01-01 Nepali Wikipedia 5115 13882 2017-01-01 Sakha Wikipedia 8 127 2017-01-01 Serbian Wikisource 116 228 2017-01-01 Saterland Frisian Wikipedia 208 404 2017-01-01 Swedish Wikisource 30604 30875 2017-01-01 Tatar Wiktionary 31 40 2017-01-01 Udmurt Wikipedia 6 30 2017-01-01 Amharic Wikipedia 223764 224702 2017-01-01 Chuvash Wikipedia 53 200 2017-01-01 Basque Wikipedia 2651 10561 2017-01-01 Upper Sorbian Wikipedia 626 1424 2017-01-01 Haitian Wikisource 5475 5631 2017-01-01 Hungarian Wikibooks 72 155 2017-01-01 Turkish Wikibooks 485 869 2017-01-01 Welsh Wikiquote 1 4 2017-01-01 English Wiktionary 52631 416395 2017-01-01 Kurdish (Kurmanji) Wiktionary 204 2914 2017-01-01 Latin Wikipedia 1472 6406 2017-01-01 Malagasy Wikibooks 7 8 2017-01-01 Rusyn Wikipedia 144 285 2017-01-01 Sanskrit Wikisource 169 310 2017-01-01 NA Test Wikipedia 116 341 2017-01-01 NA Incubator for Wikiversities 85 152 2017-01-01 Kurdish (Sorani) Wikipedia 2014 7345 2017-01-01 Divehi Wikipedia 50 145 2017-01-01 Irish Wiktionary 16 17 2017-01-01 Goan Konkani Wikipedia 29 78 2017-01-01 Hebrew Wikiquote 930 2553 2017-01-01 Korean Wikibooks 43 59 2017-01-01 Dutch Wikisource 50231 50256 2017-01-01 Tigrinya Wikipedia 9 15 2017-01-01 Tagalog Wikibooks 676 1284 2017-01-01 Urdu Wikibooks 28 43 2017-01-01 Wu Wikipedia 307 713 2017-01-01 Bislama Wiktionary 1 1 2017-01-01 Czech Wikiquote 389 893 2017-01-01 German Wiktionary 8020 74890 2017-01-01 French Wikinews 1321 2410 2017-01-01 Ossetian Wikipedia 16 69 2017-01-01 Afar Wikipedia 4820 4829 2017-01-01 German Wikivoyage 1144 5185 2017-01-01 Galician Wikisource 16319 16321 2017-01-01 Hindi Wikibooks 967 1145 2017-01-01 Limburgish Wikiquote 1 4 2017-01-01 Marathi Wikipedia 27131 52167 2017-01-01 Tamil Wikipedia 38161 73145 2017-01-01 Tamil Wikisource 248 329 2017-01-01 Urdu Wiktionary 28 49 2017-01-01 Arabic Wikipedia 468669 1765617 2017-01-01 Hausa Wiktionary 1 1 2017-01-01 Haitian Wikipedia 74 246 2017-01-01 Portuguese Wikibooks 1455 3202 2017-01-01 Portuguese Wikiquote 526 1884 2017-01-01 Portuguese Wikiversity 215 566 2017-01-01 Chinese Wikinews 92 195 2017-01-01 Estonian Wikipedia 9913 60636 2017-01-01 Greenlandic Wikipedia 33 97 2017-01-01 Kannada Wiktionary 374 1188 2017-01-01 Macedonian Wikipedia 6212 17201 2017-01-01 Piedmontese Wikipedia 129 219 2017-01-01 Northern Sami Wikipedia 40866 41165 2017-01-01 Palatinate German Wikipedia 46 115 2017-01-01 Romani Wikipedia 59 152 2017-01-01 Northern Sami Wikimedia Chapter 6 26 2017-01-01 Georgian Wikibooks 9 18 2017-01-01 Kashmiri Wikipedia 29 37 2017-01-01 Latin Wikiquote 18 40 2017-01-01 Latin Wikisource 25 53 2017-01-01 Portuguese Wikipedia 392362 2290565 2017-01-01 Serbian Wikimedia Chapter 1 7 2017-01-01 Polish Wikiquote 1534 6120 2017-01-01 Somali Wikipedia 1199 3028 2017-01-01 Waray Wikipedia 2693 3237 2017-01-01 Old Church Slavonic Wikipedia 40 77 2017-01-01 Estonian Wikimedia Chapter 8 8 2017-01-01 Mirandese Wikipedia 32 67 2017-01-01 Norfolk Wikipedia 27 89 2017-01-01 Portuguese Wiktionary 5708 11379 2017-01-01 Asturian Wikipedia 398 1324 2017-01-01 Basque Wiktionary 12 29 2017-01-01 Lithuanian Wikibooks 48 95 2017-01-01 Portuguese Wikivoyage 84 247 2017-01-01 Zulu Wikipedia 66 101 2017-01-01 Lower Sorbian Wikipedia 536 905 2017-01-01 Armenian Wikisource 230 595 2017-01-01 Banyumasan Wikipedia 38 40 2017-01-01 Dutch Low Saxon Wikipedia 61 301 2017-01-01 Norman Wikipedia 11 75 2017-01-01 Kapampangan Wikipedia 48 177 2017-01-01 Simple English Wikibooks 53 59 2017-01-01 Slovak Wikiquote 84 301 2017-01-01 Sundanese Wikibooks 6 6 2017-01-01 Tagalog Wiktionary 301 860 2017-01-01 Catalan Wiktionary 236 1320 2017-01-01 Franco-Provencal Wikipedia 36 117 2017-01-01 Fiji Hindi Wikipedia 389 908 2017-01-01 Italian Wikivoyage 253 1735 2017-01-01 Western Punjabi Wikipedia 121 604 2017-01-01 Kinyarwanda Wikipedia 171 365 2017-01-01 NA Sources wiki 1285 2315 2017-01-01 Turkmen Wikipedia 144 411 2017-01-01 Ukrainian Wikibooks 13 22 2017-01-01 Anglo-Saxon Wikipedia 645 1117 2017-01-01 German Wikipedia 1583379 10452858 2017-01-01 Greek Wikipedia 49380 188376 2017-01-01 Finnish Wikinews 46 54 2017-01-01 French Wiktionary 20058 120496 2017-01-01 Malay Wiktionary 110 198 2017-01-01 Mazandarani Wikipedia 107 352 2017-01-01 Danish Wikiquote 62 94 2017-01-01 French Wikivoyage 1286 2478 2017-01-01 Kurdish (Kurmanji) Wikipedia 406 2160 2017-01-01 Western Punjabi Wiktionary 0 5 2017-01-01 Slovak Wikipedia 39268 132227 2017-01-01 Swedish Wikivoyage 14 48 2017-01-01 Cantonese Wikipedia 1070 3106 2017-01-01 Danish Wiktionary 154 409 2017-01-01 Guarani Wikipedia 23 119 2017-01-01 Hungarian Wikipedia 62539 382198 2017-01-01 Ripuarian Wikipedia 73 260 2017-01-01 Polish Wikipedia 379526 1760634 2017-01-01 Kinyarwanda Wiktionary 1 2 2017-01-01 Slovak Wiktionary 74 164 2017-01-01 Volapuk Wikipedia 94 205 2017-01-01 Emilian-Romagnol Wikipedia 51 226 2017-01-01 Hindi Wiktionary 1119 2907 2017-01-01 Sango Wikipedia 9 20 2017-01-01 Simple English Wiktionary 292 1457 2017-01-01 Tuvan Wikipedia 16 68 2017-01-01 Ukrainian Wikinews 8 11 2017-01-01 Erzya Wikipedia 24 59 2017-01-01 Dutch Wikivoyage 31 173 2017-01-01 West Flemish Wikipedia 80 449 2017-01-01 Yoruba Wikipedia 91 150 2017-01-01 Persian Wikisource 5727 6342 2017-01-01 Kikuyu Wikipedia 10 15 2017-01-01 NA Historic wiki 64 76 2017-01-01 Chichewa Wikipedia 21 32 2017-01-01 Russian Wikivoyage 293 842 2017-01-01 Turkmen Wiktionary 6 7 2017-01-01 Zhuang Wikipedia 13 34 2017-01-01 Bulgarian Wikiquote 74 221 2017-01-01 Nauruan Wikipedia 96 303 2017-01-01 Portuguese Wikisource 23276 23680 2017-01-01 Tamil Wikiquote 64 69 2017-01-01 Chinese Wikibooks 579 777 2017-01-01 Esperanto Wikisource 3 29 2017-01-01 French Wikiquote 1863 3895 2017-01-01 Irish Wikibooks 1 1 2017-01-01 Low Saxon Wiktionary 7 16 2017-01-01 Spanish (Mexico) Wikimedia Chapter 29 30 2017-01-01 Slovenian Wikiversity 11 22 2017-01-01 Uyghur Wikipedia 252 553 2017-01-01 Ukrainian Wiktionary 103 359 2017-01-01 Vietnamese Wikisource 7266 7373 2017-01-01 Mingrelian Wikipedia 38 270 2017-01-01 Russian Wikinews 148 458 2017-01-01 Maori Wikipedia 121 195 2017-01-01 Norwegian (Nynorsk) Wiktionary 2 5 2017-01-01 Romansh Wikipedia 32 175 2017-01-01 Azerbaijani Wikisource 284 516 2017-01-01 Ilokano Wikipedia 24 116 2017-01-01 Nauruan Wikiquote 1 1 2017-01-01 Eastern Punjabi Wiktionary 1 1 2017-01-01 Thai Wikiquote 24 68 2017-01-01 Bulgarian Wikibooks 95 125 2017-01-01 West Frisian Wikibooks 4 6 2017-01-01 Igbo Wikipedia 7335 8261 2017-01-01 Sicilian Wiktionary 136 375 2017-01-01 Serbian Wikiquote 60 79 2017-01-01 Tamil Wikibooks 271 329 2017-01-01 French Wikibooks 3081 5800 2017-01-01 Malagasy Wikipedia 17 142 2017-01-01 Pangasinan Wikipedia 30 92 2017-01-01 Pontic Wikipedia 57 88 2017-01-01 Javanese Wiktionary 43 124 2017-01-01 Twi Wikipedia 21 28 2017-01-01 Cherokee Wiktionary 1 1 2017-01-01 Khmer Wikibooks 25 35 2017-01-01 Sundanese Wikiquote 11 42 2017-01-01 Belarusian Wikisource 7179 7183 2017-01-01 Vepsian Wikipedia 19 123 2017-01-01 Greek Wiktionary 3421 21617 2017-01-01 Upper Sorbian Wiktionary 8 19 2017-01-01 Lao Wikipedia 160 424 2017-01-01 Polish Wikinews 160 203 2017-01-01 Sranan Wikipedia 2 9 2017-01-01 Serbian Wikibooks 17 22 2017-01-01 Tetum Wikipedia 5 27 2017-01-01 Xhosa Wikipedia 8 24 2017-01-01 German Arbitration Committee wiki 13 16 2017-01-01 Inuktitut Wikipedia 30 41 2017-01-01 Samoan Wiktionary 1 1 2017-01-01 Extremaduran Wikipedia 48 103 2017-01-01 Neapolitan Wikipedia 89 457 2017-01-01 Polish Wikibooks 573 983 2017-01-01 NA Wikimania 2016 43 95 2017-01-01 Chinese Wikivoyage 110 166 2017-01-01 Breton Wikisource 9762 9762 2017-01-01 Bosnian Wikiquote 6 28 2017-01-01 Gilaki Wikipedia 9 103 2017-01-01 Korean Wikisource 137 323 2017-01-01 Albanian Wikiquote 13 41 2017-01-01 Thai Wikinews 6 6 2017-01-01 Buginese Wikipedia 6 24 2017-01-01 Latin Wiktionary 85 246 2017-01-01 Slovak Wikisource 3227 3244 2017-01-01 Swati Wikipedia 11 22 2017-01-01 Gothic Wikipedia 11 24 2017-01-01 Telugu Wikipedia 11498 26217 2017-01-01 Volapuk Wiktionary 1 17 2017-01-01 Gan Wikipedia 175 423 2017-01-01 Khmer Wiktionary 71 348 2017-01-01 Luganda Wikipedia 515 806 2017-01-01 Wolof Wiktionary 20 30 2017-01-01 Cherokee Wikipedia 30 53 2017-01-01 Ewe Wikipedia 37 69 2017-01-01 Marathi Wikisource 23463 23493 2017-01-01 Tatar Wikipedia 76 588 2017-01-01 Ligurian Wikipedia 26 118 2017-01-01 Ukrainian Wikivoyage 22 48 2017-01-01 Walloon Wiktionary 30 268 2017-01-01 Acehnese Wikipedia 370 642 2017-01-01 Tibetan Wiktionary 1 1 2017-01-01 Esperanto Wikinews 1 1 2017-01-01 Aymara Wikipedia 42 90 2017-01-01 Sinhalese Wiktionary 2 2 2017-01-01 Azerbaijani Wikiquote 51 194 2017-01-01 Corsican Wiktionary 300 492 2017-01-01 Navajo Wikipedia 33 74 2017-01-01 Swedish Wikiversity 72 118 2017-01-01 Silesian Wikipedia 24 230 2017-01-01 Tamil Wikinews 78 104 2017-01-01 Malayalam Wiktionary 198 626 2017-01-01 Burmese Wikibooks 12 12 2017-01-01 Samoan Wikipedia 27 46 2017-01-01 Bishnupriya Manipuri Wikipedia 58 172 2017-01-01 Sindhi Wiktionary 3 6 2017-01-01 Hill Mari Wikipedia 5 47 2017-01-01 Sanskrit Wikipedia 991 3053 2017-01-01 Hungarian Wikiquote 301 519 2017-01-01 Muscogee Wikipedia 10 10 2017-01-01 Burmese Wiktionary 39 83 2017-01-01 Nahuatl Wiktionary 0 1 2017-01-01 Romanian Wikinews 25 28 2017-01-01 Finnish Wikimedia Chapter 10 13 2017-01-01 NA Wikimedia OTRS system 32 52 2017-01-01 Albanian Wiktionary 302 1396 2017-01-01 Chechen Wikipedia 102 319 2017-01-01 Sicilian Wikipedia 206 976 2017-01-01 Tongan Wikipedia 11 35 2017-01-01 Catalan Wikinews 15 22 2017-01-01 Yiddish Wiktionary 8 9 2017-01-01 Quechua Wikipedia 15 255 2017-01-01 Assamese Wikisource 1 2 2017-01-01 Ido Wiktionary 41 736 2017-01-01 Kannada Wikibooks 1 1 2017-01-01 Lombard Wikipedia 82 552 2017-01-01 Aromanian Wikipedia 5 21 2017-01-01 Korean Wiktionary 746 2296 2017-01-01 Abkhazian Wikipedia 49 78 2017-01-01 Fula Wikipedia 13 15 2017-01-01 Catalan Wikisource 57 111 2017-01-01 Czech Wikibooks 202 301 2017-01-01 Ido Wikipedia 103 389 2017-01-01 Livvi-Karelian Wikipedia 8 63 2017-01-01 Amharic Wiktionary 2 2 2017-01-01 Bengali Wikisource 266 488 2017-01-01 Chavacano Wikipedia 27 37 2017-01-01 Classical Chinese Wikipedia 683 1382 2017-01-01 NA Incubator for new wikis 1282 1901 2017-01-01 Low Saxon Wikipedia 306 1148 2017-01-01 Tok Pisin Wikipedia 41 95 2017-01-01 Dzongkha Wikipedia 11 26 2017-01-01 Russian Wikisource 31239 33432 2017-01-01 Vietnamese Wikivoyage 17 50 2017-01-01 Pashto Wikipedia 508 1254 2017-01-01 Azerbaijani Wiktionary 8 32 2017-01-01 Bambara Wikipedia 4 14 2017-01-01 German Wikinews 109 255 2017-01-01 Ndonga Wikipedia 1 1 2017-01-01 Macedonian Wikisource 36898 36903 2017-01-01 Picard Wikipedia 10 66 2017-01-01 Tswana Wikipedia 7 19 2017-01-01 Breton Wikiquote 0 3 2017-01-01 Komi-Permyak Wikipedia 7 26 2017-01-01 Croatian Wiktionary 108 337 2017-01-01 Icelandic Wikisource 4015 4015 2017-01-01 Kongo Wikipedia 72 115 2017-01-01 Danish Wikimedia Chapter 45 49 2017-01-01 West Frisian Wiktionary 2 2 2017-01-01 Bengali Wikibooks 148 206 2017-01-01 Czech Wikiversity 94 149 2017-01-01 Japanese Wikisource 194 283 2017-01-01 Kazakh Wikibooks 8 10 2017-01-01 Thai Wikibooks 123 204 2017-01-01 Bambara Wikiquote 2 2 2017-01-01 Nepali Wiktionary 101 195 2017-01-01 Marathi Wiktionary 24 44 2017-01-01 NA 10th Anniversary of Wikipedia 0 5 2017-01-01 Swahili Wikibooks 3 3 2017-01-01 Greek Wikiversity 67 164 2017-01-01 Fijian Wikipedia 22 33 2017-01-01 Oriya Wiktionary 33 47 2017-01-01 Swahili Wiktionary 20 34 2017-01-01 Sinhalese Wikibooks 53 60 2017-01-01 Twi Wiktionary 12 12 2017-01-01 Macedonian Wikibooks 4 6 2017-01-01 Eastern Punjabi Wikibooks 2 2 2017-01-01 Polish Wikimedia Chapter 58 96 2017-01-01 Sanskrit Wikibooks 2 7 2017-01-01 Finnish Wikivoyage 16 54 2017-01-01 Afrikaans Wiktionary 229 488 2017-01-01 Bulgarian Wikisource 6 6 2017-01-01 Nuosu Wikipedia 25 27 2017-01-01 Novial Wikipedia 42 124 2017-01-01 Finnish Wikisource 67 390 2017-01-01 Nepali Wikibooks 3 5 2017-01-01 NA Strategy wiki 5 6 2017-01-01 Anglo-Saxon Wiktionary 0 1 2017-01-01 Aramaic Wikipedia 21 59 2017-01-01 Romansh Wiktionary 3 3 2017-01-01 Tarantino Wikipedia 5 13 2017-01-01 Malayalam Wikiquote 46 53 2017-01-01 Aragonese Wiktionary 12 22 2017-01-01 Croatian Wikiquote 20 45 2017-01-01 Tatar Wikiquote 4 6 2017-01-01 English Arbitration Committee wiki 2 3 2017-01-01 Cheyenne Wikipedia 5 11 2017-01-01 Cornish Wiktionary 0 1 2017-01-01 Cree Wikipedia 5 7 2017-01-01 Kazakh Wikiquote 1 1 2017-01-01 Urdu Wikiquote 11 18 2017-01-01 Asturian Wiktionary 9 27 2017-01-01 Cree Wikiquote 1 1 2017-01-01 Danish Wikibooks 27 52 2017-01-01 Macedonian Wiktionary 8 8 2017-01-01 Sundanese Wiktionary 4 4 2017-01-01 Bosnian Wikinews 1 2 2017-01-01 Chamorro Wiktionary 2 2 2017-01-01 Faroese Wikisource 10793 11185 2017-01-01 Gujarati Wikiquote 3 3 2017-01-01 Dutch Wikimedia Chapter 0 1 2017-01-01 Somali Wiktionary 1 1 2017-01-01 Interlingua Wiktionary 2 17 2017-01-01 Russian Wikimedia Chapter 36 77 2017-01-01 Voro Wikipedia 1 18 2017-01-01 Kashmiri Wiktionary 2 2 2017-01-01 Divehi Wiktionary 1 2 2017-01-01 Georgian Wiktionary 42 70 2017-01-01 Sanskrit Wikiquote 1 1 2017-01-01 Telugu Wikiquote 5 6 2017-01-01 NA Wikimania 2015 0 6 2017-01-01 Lezgian Wikipedia 59 136 2017-01-01 Lingala Wiktionary 2 2 2017-01-01 Inuktitut Wiktionary 2 2 2017-01-01 Lojban Wiktionary 9 10 2017-01-01 Tajik Wikibooks 1 2 2017-01-01 Scottish Gaelic Wiktionary 14 19 2017-01-01 Mongolian Wiktionary 26 98 2017-01-01 Icelandic Wikiquote 1 1 2017-01-01 Telugu Wikibooks 13 13 2017-01-01 Kanuri Wikipedia 22 22 2017-01-01 Limburgish Wiktionary 2 2 2017-01-01 Bosnian Wiktionary 7 9 2017-01-01 Quechua Wiktionary 1 1 2017-01-01 Low Saxon Wikiquote 2 2 2017-01-01 Zhuang Wiktionary 3 3 2017-01-01 Icelandic Wikibooks 26 45 2017-01-01 Turkmen Wikiquote 5 5 2017-01-01 Bosnian Wikibooks 11 13 2017-01-01 Welsh Wikibooks 0 1 2017-01-01 Manx Wiktionary 0 1 2017-01-01 Bulgarian Wikinews 0 2 2017-01-01 Herero Wikipedia 11 11 2017-01-01 NA Wikidata Test 5 175 2017-01-01 Hiri Motu Wikipedia 1 1 2017-01-01 Dzongkha Wiktionary 1 1 2017-01-01 Afrikaans Wikibooks 2 2 2017-01-01 Esperanto Wikibooks 1 1 2017-01-01 Tulu Wikipedia 0 9 2017-01-01 Pashto Wiktionary 1 1 2017-01-01 Tigrinya Wiktionary 1 1 2017-01-01 Venetian Wikisource 0 1 ... 2017-01-26 NA Usability wiki 2 4 2017-01-26 Uzbek Wikiquote 12 12 ``` 1. Executing report "cirrus_langproj_breakdown_with_automata" from the metrics/search module. 2. About to run the following command: `sh modules/metrics/search/cirrus_langproj_breakdown_with_automata 2017-01-01 2017-01-02` **Output**: ``` date language project zero_results total 2017-01-01 Arabic Wikimedia Chapter 29 43 2017-01-01 Catalan Wikibooks 58 75 2017-01-01 Cebuano Wikipedia 3018 4357 2017-01-01 English Wikiquote 11653 33667 2017-01-01 English Wikisource 46477 55562 2017-01-01 Kazakh Wiktionary 2 4 2017-01-01 Korean Wikinews 12 13 2017-01-01 Luxembourgish Wikipedia 308 2040 2017-01-01 Dutch Low Saxon Wikipedia 61 301 2017-01-01 Samoan Wikipedia 27 46 2017-01-01 Sesotho Wiktionary 1 1 2017-01-01 Tigrinya Wikipedia 9 15 2017-01-01 Urdu Wikibooks 28 43 2017-01-01 Volapuk Wikipedia 94 205 2017-01-01 Azerbaijani Wikipedia 13862 58602 2017-01-01 Gagauz Wikipedia 58 124 2017-01-01 Galician Wikibooks 0 3 2017-01-01 Croatian Wikibooks 20 35 2017-01-01 Haitian Wikipedia 74 246 2017-01-01 Kirghiz Wikipedia 535 2638 2017-01-01 Portuguese Wikipedia 392362 2290565 2017-01-01 Thai Wiktionary 451 1332 2017-01-01 Twi Wikipedia 21 28 2017-01-01 Uyghur Wiktionary 1 1 2017-01-01 Uzbek Wiktionary 22 229 2017-01-01 Venda Wikipedia 36 92 2017-01-01 Walloon Wikipedia 27 221 2017-01-01 Afar Wikipedia 4820 4829 2017-01-01 Alemannic Wikipedia 613 2121 2017-01-01 Anglo-Saxon Wikipedia 645 1117 2017-01-01 Southern Azerbaijani Wikipedia 161 541 2017-01-01 Bengali Wikipedia 26458 105118 2017-01-01 German Wikibooks 4316 7052 2017-01-01 German Wikivoyage 1144 5185 2017-01-01 Greek Wikinews 4 7 2017-01-01 Finnish Wikiquote 121 737 2017-01-01 Hebrew Wikipedia 161192 556993 2017-01-01 Croatian Wiktionary 108 337 2017-01-01 Icelandic Wikisource 4015 4015 2017-01-01 Greenlandic Wikipedia 33 97 2017-01-01 Korean Wikipedia 102170 443337 2017-01-01 Malay Wikipedia 14562 64590 2017-01-01 Norwegian (Bokmal) Wikipedia 70441 374767 2017-01-01 Polish Wikiquote 1534 6120 2017-01-01 Slovenian Wikipedia 9362 47697 2017-01-01 Somali Wikipedia 1199 3028 2017-01-01 Wolof Wikipedia 19 85 2017-01-01 Kalmyk Wikipedia 10 57 2017-01-01 Arabic Wikipedia 468669 1765617 2017-01-01 Welsh Wikipedia 313 2108 2017-01-01 Persian Wiktionary 509 1736 2017-01-01 Armenian Wikipedia 3321 17337 2017-01-01 Jamaican Patois Wikipedia 34 60 2017-01-01 Malayalam Wikisource 50496 50574 2017-01-01 Nepali Wikipedia 5115 13882 2017-01-01 Ndonga Wikipedia 1 1 2017-01-01 Occitan Wikipedia 185 883 2017-01-01 Portuguese Wikiquote 526 1884 2017-01-01 Swedish Wikisource 30604 30875 2017-01-01 Tamil Wikipedia 38161 73145 2017-01-01 Tatar Wiktionary 31 40 2017-01-01 Chinese Wikipedia 418056 1414970 2017-01-01 Kashubian Wikipedia 10 51 2017-01-01 Basque Wikipedia 2651 10561 2017-01-01 Upper Sorbian Wikipedia 626 1424 2017-01-01 Haitian Wikisource 5475 5631 2017-01-01 Polish Wikipedia 379526 1760634 2017-01-01 Portuguese Wikibooks 1455 3202 2017-01-01 Portuguese Wikivoyage 84 247 2017-01-01 Russian Wikimedia Chapter 36 77 2017-01-01 Turkish Wikibooks 485 869 2017-01-01 Belarusian Wikisource 7179 7183 2017-01-01 Lower Sorbian Wikipedia 536 905 2017-01-01 English Wiktionary 52631 416395 2017-01-01 Spanish Wikipedia 950946 4683748 2017-01-01 Finnish Wikipedia 72403 552725 2017-01-01 Sindhi Wikipedia 275 1824 2017-01-01 Swahili Wikipedia 2442 6468 2017-01-01 Waray Wikipedia 2693 3237 2017-01-01 Kurdish (Sorani) Wikipedia 2014 7345 2017-01-01 Czech Wikipedia 153610 917519 2017-01-01 German Wikisource 2687 9781 2017-01-01 English Wikibooks 12160 26652 2017-01-01 Faroese Wikisource 10793 11185 2017-01-01 Irish Wiktionary 16 17 2017-01-01 Manx Wikipedia 13 60 2017-01-01 Javanese Wikipedia 314 1348 2017-01-01 Korean Wikibooks 43 59 2017-01-01 Dutch Wikisource 50231 50256 2017-01-01 Serbian Wikimedia Chapter 1 7 2017-01-01 NA Sources wiki 1285 2315 2017-01-01 NA Test Wikipedia 116 341 2017-01-01 Tagalog Wikibooks 676 1284 2017-01-01 Asturian Wikipedia 398 1324 2017-01-01 Bavarian Wikipedia 236 1242 2017-01-01 Bislama Wiktionary 1 1 2017-01-01 German Wikipedia 1583379 10452858 2017-01-01 Galician Wikipedia 1930 11964 2017-01-01 Komi-Permyak Wikipedia 7 26 2017-01-01 Malay Wiktionary 110 198 2017-01-01 Mazandarani Wikipedia 107 352 2017-01-01 Tahitian Wikipedia 2 9 2017-01-01 French Wikinews 1321 2410 2017-01-01 French Wikivoyage 1286 2478 2017-01-01 Hawaiian Wikipedia 30 86 2017-01-01 Japanese Wikipedia 588861 2898806 2017-01-01 Cornish Wikipedia 26 80 2017-01-01 Limburgish Wikiquote 1 4 2017-01-01 Polish Wikibooks 573 983 2017-01-01 Simple English Wikipedia 34190 101006 2017-01-01 Ukrainian Wikipedia 40422 210934 2017-01-01 Abkhazian Wikipedia 49 78 2017-01-01 Chamorro Wikipedia 43 51 2017-01-01 Finnish Wiktionary 675 6034 2017-01-01 Franco-Provencal Wikipedia 36 117 2017-01-01 Hausa Wiktionary 1 1 2017-01-01 Kannada Wikipedia 12797 22894 2017-01-01 Korean Wikisource 137 323 2017-01-01 Limburgish Wikipedia 127 435 2017-01-01 Western Punjabi Wikipedia 121 604 2017-01-01 Russian Wikipedia 907014 4744571 2017-01-01 Hindi Wiktionary 1119 2907 2017-01-01 Macedonian Wikipedia 6212 17201 2017-01-01 Crimean Tatar Wikipedia 248 377 2017-01-01 Kurdish (Kurmanji) Wikipedia 406 2160 2017-01-01 Latin Wiktionary 85 246 2017-01-01 Oriya Wikipedia 894 2433 2017-01-01 Romani Wikipedia 59 152 2017-01-01 Slovenian Wikisource 41718 42159 2017-01-01 Bihari Wikipedia 228 486 2017-01-01 Esperanto Wikipedia 1971 7252 2017-01-01 Spanish Wikivoyage 939 1396 2017-01-01 French Wikipedia 915904 4513169 2017-01-01 Italian Wikinews 187 441 2017-01-01 Georgian Wikibooks 9 18 2017-01-01 Latin Wikiquote 18 40 2017-01-01 Latin Wikisource 25 53 2017-01-01 NA Meta wiki 6059 12127 2017-01-01 Norwegian (Bokmal) Wikiquote 18 45 2017-01-01 Russian Wikivoyage 293 842 2017-01-01 Scots Wikipedia 271 1573 2017-01-01 Bulgarian Wikiquote 74 221 2017-01-01 Emilian-Romagnol Wikipedia 51 226 2017-01-01 Persian Wikipedia 278632 991373 2017-01-01 West Frisian Wikipedia 352 1349 2017-01-01 Hungarian Wiktionary 506 1826 2017-01-01 Interlingua Wikipedia 107 477 2017-01-01 Portuguese Wikisource 23276 23680 2017-01-01 Thai Wikipedia 54507 192608 2017-01-01 Faroese Wikipedia 141 489 2017-01-01 French Wikiquote 1863 3895 2017-01-01 Italian Wikipedia 538231 3447334 2017-01-01 Pennsylvania German Wikipedia 74 210 2017-01-01 Slovak Wiktionary 74 164 2017-01-01 West Flemish Wikipedia 80 449 2017-01-01 English Wikiversity 2289 6186 2017-01-01 Basque Wiktionary 12 29 2017-01-01 Irish Wikipedia 246 1008 2017-01-01 Gujarati Wiktionary 30 35 2017-01-01 Indonesian Wikisource 8088 8211 2017-01-01 Kannada Wikisource 15090 15114 2017-01-01 Karachay-Balkar Wikipedia 3 46 2017-01-01 Rusyn Wikipedia 144 285 2017-01-01 Slovak Wikisource 3227 3244 2017-01-01 Ukrainian Wiktionary 103 359 2017-01-01 Venetian Wikipedia 72 443 2017-01-01 Avar Wikipedia 30 65 2017-01-01 Czech Wiktionary 7274 15204 2017-01-01 Spanish Wikinews 822 1255 2017-01-01 Russian Wikinews 148 458 2017-01-01 Simple English Wikibooks 53 59 2017-01-01 Slovak Wikiquote 84 301 2017-01-01 Sundanese Wikibooks 6 6 2017-01-01 Belarusian Wikipedia 1112 7813 2017-01-01 French Wikisource 13580 61634 2017-01-01 Lojban Wiktionary 9 10 2017-01-01 Moldovan Wikipedia 3 29 2017-01-01 Romansh Wikipedia 32 175 2017-01-01 Azerbaijani Wikisource 284 516 2017-01-01 NA Wikimedia Commons 225454 704361 2017-01-01 Czech Wikinews 43 90 2017-01-01 English Wikinews 1954 5085 2017-01-01 Finnish Wikinews 46 54 2017-01-01 Lak Wikipedia 40 60 2017-01-01 Nauruan Wikipedia 96 303 2017-01-01 Tamil Wikiquote 64 69 2017-01-01 Aragonese Wikipedia 947365 948585 2017-01-01 Bulgarian Wikibooks 95 125 2017-01-01 Greek Wikipedia 49380 188376 2017-01-01 Maithili Wikipedia 192 378 2017-01-01 Mongolian Wiktionary 26 98 2017-01-01 Tamil Wikibooks 271 329 2017-01-01 NA 10th Anniversary of Wikipedia 0 5 2017-01-01 German Wikiquote 1468 4065 2017-01-01 French Wikibooks 3081 5800 2017-01-01 Guarani Wikipedia 23 119 2017-01-01 Malagasy Wikipedia 17 142 2017-01-01 Kinyarwanda Wiktionary 1 2 2017-01-01 Slovenian Wikiversity 11 22 2017-01-01 Banjar Wikipedia 14 79 2017-01-01 Danish Wiktionary 154 409 2017-01-01 Estonian Wikiquote 10 16 2017-01-01 Hungarian Wikipedia 62539 382198 2017-01-01 Herero Wikipedia 11 11 2017-01-01 Javanese Wiktionary 43 124 2017-01-01 Sango Wikipedia 9 20 2017-01-01 Ukrainian Wikinews 8 11 2017-01-01 Spanish Wiktionary 21380 31938 2017-01-01 NA MediaWiki 7714 14937 2017-01-01 Norwegian (Nynorsk) Wiktionary 2 5 2017-01-01 Sundanese Wikipedia 159 660 2017-01-01 Turkish Wiktionary 5741 28597 2017-01-01 Tsonga Wikipedia 15 33 2017-01-01 Kikuyu Wikipedia 10 15 2017-01-01 Pangasinan Wikipedia 30 92 2017-01-01 Pontic Wikipedia 57 88 2017-01-01 Silesian Wikipedia 24 230 2017-01-01 Turkmen Wiktionary 6 7 2017-01-01 Greek Wiktionary 3421 21617 2017-01-01 Croatian Wikipedia 19513 100014 2017-01-01 Italian Wikisource 17956 19955 2017-01-01 Sicilian Wiktionary 136 375 2017-01-01 Serbian Wikiquote 60 79 2017-01-01 Greek Wikiquote 35 158 2017-01-01 Spanish Wikiversity 1034 1316 2017-01-01 Irish Wikibooks 1 1 2017-01-01 Indonesian Wikipedia 134022 501012 2017-01-01 Indonesian Wiktionary 692 1504 2017-01-01 Low Saxon Wiktionary 7 16 2017-01-01 Turkmen Wikipedia 144 411 2017-01-01 Turkish Wikinews 29 102 2017-01-01 Urdu Wiktionary 28 49 2017-01-01 Romanian Wikisource 383 897 2017-01-01 Swati Wiktionary 1 7 2017-01-01 Vepsian Wikipedia 19 123 2017-01-01 Mingrelian Wikipedia 38 270 2017-01-01 Afrikaans Wikipedia 2061 8487 2017-01-01 Estonian Wikibooks 1 3 2017-01-01 Neapolitan Wikipedia 89 457 2017-01-01 Azerbaijani Wikibooks 67 106 2017-01-01 Welsh Wiktionary 3 3 2017-01-01 Hausa Wikipedia 84 146 2017-01-01 Serbo-Croatian Wikipedia 6219 35564 2017-01-01 Tetum Wikipedia 5 27 2017-01-01 Telugu Wiktionary 377 2537 2017-01-01 Upper Sorbian Wiktionary 8 19 2017-01-01 Ilokano Wikipedia 24 116 2017-01-01 Nauruan Wikiquote 1 1 2017-01-01 Eastern Punjabi Wiktionary 1 1 2017-01-01 Greek Wikisource 415 670 2017-01-01 Extremaduran Wikipedia 48 103 2017-01-01 Galician Wiktionary 10 66 2017-01-01 Serbian Wikibooks 17 22 2017-01-01 Serbian Wiktionary 95 456 2017-01-01 Swedish Wikiquote 126 295 2017-01-01 German Arbitration Committee wiki 13 16 2017-01-01 Greek Wikibooks 61 106 2017-01-01 Tamil Wiktionary 1375 6195 2017-01-01 Arabic Wikibooks 2035 4016 2017-01-01 Albanian Wikipedia 8512 33282 2017-01-01 Tongan Wikipedia 11 35 2017-01-01 Chinese Wikivoyage 110 166 2017-01-01 Arabic Wikiquote 597 1567 2017-01-01 Tibetan Wikipedia 175 519 2017-01-01 Cherokee Wiktionary 1 1 2017-01-01 Spanish Wikiquote 2601 7109 2017-01-01 Italian Wikiversity 278 697 2017-01-01 Spanish Wikibooks 1636 2713 2017-01-01 Marathi Wikisource 23463 23493 2017-01-01 Tatar Wikipedia 76 588 2017-01-01 Gothic Wikipedia 11 24 2017-01-01 Italian Wikiquote 1948 10256 2017-01-01 Ligurian Wikipedia 26 118 2017-01-01 Marathi Wikiquote 22 33 2017-01-01 Kirundi Wikipedia 9 15 2017-01-01 Ukrainian Wikimedia Chapter 33 71 2017-01-01 Walloon Wiktionary 30 268 2017-01-01 Latvian Wikipedia 4822 27796 2017-01-01 Sranan Wikipedia 2 9 2017-01-01 Acehnese Wikipedia 370 642 2017-01-01 Ewe Wikipedia 37 69 2017-01-01 Inuktitut Wikipedia 30 41 2017-01-01 Samoan Wiktionary 1 1 2017-01-01 Zulu Wikipedia 66 101 2017-01-01 Samogitian Wikipedia 23 43 2017-01-01 Zazaki Wikipedia 37 327 2017-01-01 Armenian Wiktionary 65 263 2017-01-01 Icelandic Wikipedia 1680 8585 2017-01-01 Japanese Wikibooks 1170 1695 2017-01-01 Vietnamese Wikipedia 93320 369762 2017-01-01 Vietnamese Wikiquote 799 1178 2017-01-01 North Frisian Wikipedia 55 155 2017-01-01 Gilaki Wikipedia 9 103 2017-01-01 Kinyarwanda Wikipedia 171 365 2017-01-01 Thai Wikinews 6 6 2017-01-01 Sinhalese Wikipedia 3480 9266 2017-01-01 Ukrainian Wikivoyage 22 48 2017-01-01 Adyghe Wikipedia 40 53 2017-01-01 Buryat Wikipedia 18 68 2017-01-01 Corsican Wiktionary 300 492 2017-01-01 Old Church Slavonic Wikipedia 40 77 2017-01-01 Estonian Wiktionary 93 398 2017-01-01 Italian Wikibooks 556 1119 2017-01-01 Arabic Wikinews 1028 2196 2017-01-01 Estonian Wikisource 29215 29227 2017-01-01 Kazakh Wikipedia 3861 18176 2017-01-01 Russian Wikibooks 366 661 2017-01-01 Tamil Wikinews 78 104 2017-01-01 Indonesian Wikiquote 99 184 2017-01-01 Greenlandic Wiktionary 6 8 2017-01-01 Malayalam Wikibooks 27 41 2017-01-01 Occitan Wiktionary 37 137 2017-01-01 Kapampangan Wikipedia 48 177 2017-01-01 Vietnamese Wikibooks 52 97 2017-01-01 Zeelandic Wikipedia 83 167 2017-01-01 Gujarati Wikisource 14311 14316 2017-01-01 Karakalpak Wikipedia 36 83 2017-01-01 Northern Luri Wikipedia 6 30 2017-01-01 Moksha Wikipedia 15 24 2017-01-01 Malayalam Wiktionary 198 626 2017-01-01 Swedish Wiktionary 2219 15482 2017-01-01 Bishnupriya Manipuri Wikipedia 58 172 2017-01-01 Kashmiri Wikipedia 29 37 2017-01-01 Portuguese Wikinews 545 1412 2017-01-01 Telugu Wikisource 336 446 2017-01-01 Chinese Wikiquote 830 1270 2017-01-01 Ripuarian Wikipedia 73 260 2017-01-01 Dutch Wiktionary 906 5357 2017-01-01 Romanian Wikipedia 43002 231746 2017-01-01 Persian Wikinews 10 22 2017-01-01 Italian Wiktionary 1894 8821 2017-01-01 Kirghiz Wiktionary 8 20 2017-01-01 Sanskrit Wikipedia 991 3053 2017-01-01 Tibetan Wiktionary 1 1 2017-01-01 Esperanto Wikinews 1 1 2017-01-01 Hungarian Wikiquote 301 519 2017-01-01 Erzya Wikipedia 24 59 2017-01-01 Burmese Wikibooks 12 12 2017-01-01 Romanian Wikinews 25 28 2017-01-01 Sinhalese Wiktionary 2 2 2017-01-01 Arabic Wikiversity 691 1164 2017-01-01 Bosnian Wikipedia 4276 21371 2017-01-01 Malay Wikibooks 21 27 2017-01-01 NA Wikimedia OTRS system 32 52 2017-01-01 Sindhi Wiktionary 3 6 2017-01-01 NA Wikispecies 1905 6171 2017-01-01 Albanian Wiktionary 302 1396 2017-01-01 Vietnamese Wikisource 7266 7373 2017-01-01 Chechen Wikipedia 102 319 2017-01-01 Hill Mari Wikipedia 5 47 2017-01-01 Dutch Wikipedia 249467 1450757 2017-01-01 Sicilian Wikipedia 206 976 2017-01-01 Swedish Wikiversity 72 118 2017-01-01 Central Bicolano Wikipedia 69 311 2017-01-01 Polish Wiktionary 4449 31544 2017-01-01 Serbian Wikisource 116 228 2017-01-01 Uyghur Wikipedia 252 553 2017-01-01 Burmese Wiktionary 39 83 2017-01-01 Gan Wikipedia 175 423 2017-01-01 Hungarian Wikibooks 72 155 2017-01-01 Ido Wiktionary 41 736 2017-01-01 Maori Wikipedia 121 195 2017-01-01 Finnish Wikimedia Chapter 10 13 2017-01-01 Konkani Wikipedia 29 78 2017-01-01 Armenian Wikibooks 5 7 2017-01-01 Malagasy Wiktionary 0 35 2017-01-01 Turkish Wikisource 310 843 2017-01-01 French Wikiversity 2097 4071 2017-01-01 Hebrew Wikiquote 930 2553 2017-01-01 Aymara Wikipedia 42 90 2017-01-01 Czech Wikiquote 389 893 2017-01-01 German Wiktionary 8020 74890 2017-01-01 Yiddish Wiktionary 8 9 2017-01-01 Marathi Wikipedia 27131 52167 2017-01-01 Quechua Wikipedia 15 255 2017-01-01 Lombard Wikipedia 82 552 2017-01-01 Muscogee Wikipedia 10 10 2017-01-01 Portuguese Wikiversity 215 566 2017-01-01 Ukrainian Wikiquote 101 226 2017-01-01 Estonian Wikipedia 9913 60636 2017-01-01 Korean Wiktionary 746 2296 2017-01-01 Georgian Wikipedia 10098 36612 2017-01-01 Lao Wikipedia 160 424 2017-01-01 Catalan Wikisource 57 111 2017-01-01 Hebrew Wikibooks 1790 2484 2017-01-01 Slovenian Wiktionary 38 89 2017-01-01 Telugu Wikipedia 11498 26217 2017-01-01 Breton Wikisource 9762 9762 2017-01-01 Czech Wikibooks 202 301 2017-01-01 Hindi Wikibooks 967 1145 2017-01-01 Bengali Wikisource 266 488 2017-01-01 Chavacano Wikipedia 27 37 2017-01-01 Voro Wikipedia 1 18 2017-01-01 Luganda Wikipedia 515 806 2017-01-01 Lithuanian Wikibooks 48 95 2017-01-01 Portuguese Wiktionary 5708 11379 2017-01-01 Tarantino Wikipedia 5 13 2017-01-01 Assamese Wikisource 1 2 2017-01-01 Tagalog Wiktionary 301 860 2017-01-01 Buginese Wikipedia 6 24 2017-01-01 NA Incubator for new wikis 1282 1901 2017-01-01 Low Saxon Wikipedia 306 1148 2017-01-01 Swati Wikipedia 11 22 2017-01-01 Tok Pisin Wikipedia 41 95 2017-01-01 Spanish Wikisource 41540 43225 2017-01-01 Russian Wikisource 31239 33432 2017-01-01 Vietnamese Wikivoyage 17 50 2017-01-01 French Wiktionary 20058 120496 2017-01-01 Pashto Wikipedia 508 1254 2017-01-01 Swedish Wikivoyage 14 48 2017-01-01 Thai Wikisource 231 466 2017-01-01 Xhosa Wikipedia 8 24 2017-01-01 German Wikinews 109 255 2017-01-01 Hebrew Wiktionary 3210 9408 2017-01-01 Slovak Wikipedia 39268 132227 2017-01-01 NA Wikidata 599772 895207 2017-01-01 Cantonese Wikipedia 1070 3106 2017-01-01 Egyptian Arabic Wikipedia 3291 12866 2017-01-01 Kannada Wikibooks 1 1 2017-01-01 Aromanian Wikipedia 5 21 2017-01-01 Min Dong Wikipedia 106 197 2017-01-01 Cherokee Wikipedia 30 53 2017-01-01 Igbo Wikipedia 7335 8261 2017-01-01 Khmer Wikipedia 1329 3773 2017-01-01 Dutch Wikivoyage 31 173 2017-01-01 Dzongkha Wikipedia 11 26 2017-01-01 Fula Wikipedia 13 15 2017-01-01 Italian Wikivoyage 253 1735 2017-01-01 Norwegian (Bokmal) Wikisource 25253 25315 2017-01-01 Polish Wikivoyage 151 370 2017-01-01 Cheyenne Wikipedia 5 11 2017-01-01 Corsican Wikipedia 41 155 2017-01-01 Azerbaijani Wiktionary 8 32 2017-01-01 Danish Wikipedia 47727 234879 2017-01-01 Ido Wikipedia 103 389 2017-01-01 Livvi-Karelian Wikipedia 8 63 2017-01-01 NA Wikimania 2015 0 6 2017-01-01 Amharic Wiktionary 2 2 2017-01-01 Macedonian Wikisource 36898 36903 2017-01-01 Spanish (Mexico) Wikimedia Chapter 29 30 2017-01-01 Picard Wikipedia 10 66 2017-01-01 Romanian Wiktionary 529 1361 2017-01-01 Sardinian Wikipedia 71 189 2017-01-01 Navajo Wikipedia 33 74 2017-01-01 Sesotho Wikipedia 501 539 2017-01-01 Thai Wikiquote 24 68 2017-01-01 Georgian Wikiquote 48 61 2017-01-01 Newar Wikipedia 511 979 2017-01-01 Norwegian (Nynorsk) Wikipedia 1940 11482 2017-01-01 Khmer Wikibooks 25 35 2017-01-01 Tswana Wikipedia 7 19 2017-01-01 Chinese Wikisource 1510 3048 2017-01-01 Danish Wikimedia Chapter 45 49 2017-01-01 Finnish Wikisource 67 390 2017-01-01 Simple English Wikiquote 60 89 2017-01-01 Uzbek Wikipedia 2707 12758 2017-01-01 Bengali Wikibooks 148 206 2017-01-01 Breton Wikiquote 0 3 2017-01-01 Czech Wikiversity 94 149 2017-01-01 Japanese Wikisource 194 283 2017-01-01 Kazakh Wikibooks 8 10 2017-01-01 Korean Wikiquote 137 151 2017-01-01 Thai Wikibooks 123 204 2017-01-01 Czech Wikisource 342 744 2017-01-01 Persian Wikiquote 796 2020 2017-01-01 Oriya Wikisource 16282 16283 2017-01-01 Urdu Wikipedia 8868 31858 2017-01-01 NA Wikimania 2016 43 95 2017-01-01 Finnish Wikibooks 74 171 2017-01-01 Maltese Wikipedia 100 265 2017-01-01 Nepali Wiktionary 101 195 2017-01-01 Russian Wikiversity 227 384 2017-01-01 Albanian Wikiquote 13 41 2017-01-01 West Frisian Wiktionary 2 2 2017-01-01 Hebrew Wikivoyage 254 364 2017-01-01 Papiamentu Wikipedia 11 68 2017-01-01 Albanian Wikibooks 32 77 2017-01-01 Serbian Wikinews 8 12 2017-01-01 Marathi Wiktionary 24 44 2017-01-01 Ukrainian Wikisource 3282 3319 2017-01-01 Persian Wikibooks 328 571 2017-01-01 Bambara Wikipedia 4 14 2017-01-01 Greek Wikiversity 67 164 2017-01-01 Sundanese Wikiquote 11 42 2017-01-01 Turkish Wikimedia Chapter 45 56 2017-01-01 Assamese Wikipedia 291 950 2017-01-01 NA Wikimedia Foundation wiki 7113 9729 2017-01-01 Malayalam Wikipedia 19097 55648 2017-01-01 Oriya Wiktionary 33 47 2017-01-01 Slovak Wikibooks 13 22 2017-01-01 Swahili Wiktionary 20 34 2017-01-01 Tajik Wikipedia 668 2043 2017-01-01 English Wikipedia 8971365 54358528 2017-01-01 Lezgian Wikipedia 59 136 2017-01-01 Norwegian (Bokmal) Wikibooks 0 1 2017-01-01 Sinhalese Wikibooks 53 60 2017-01-01 Swahili Wikibooks 3 3 2017-01-01 Friulian Wikipedia 34 94 2017-01-01 Twi Wiktionary 12 12 2017-01-01 Welsh Wikiquote 1 4 2017-01-01 Kurdish (Kurmanji) Wiktionary 204 2914 2017-01-01 Latin Wikipedia 1472 6406 2017-01-01 Polish Wikimedia Chapter 58 96 2017-01-01 Sanskrit Wikibooks 2 7 2017-01-01 Sanskrit Wikisource 169 310 2017-01-01 Classical Chinese Wikipedia 683 1382 2017-01-01 NA Incubator for Wikiversities 85 152 2017-01-01 Kabardian Wikipedia 20 35 2017-01-01 NA Wikimania 2017 35 39 2017-01-01 Meadow Mari Wikipedia 9 60 2017-01-01 Tamil Wikisource 248 329 2017-01-01 Chinese Wikinews 92 195 2017-01-01 Macedonian Wikibooks 4 6 2017-01-01 Northern Sotho Wikipedia 41 71 2017-01-01 Piedmontese Wikipedia 129 219 2017-01-01 Northern Sami Wikipedia 40866 41165 2017-01-01 Akan Wikipedia 151 228 2017-01-01 Komi Wikipedia 7 58 2017-01-01 Swedish Wikipedia 146789 1110130 2017-01-01 Saterland Frisian Wikipedia 208 404 2017-01-01 NA Strategy wiki 5 6 2017-01-01 Icelandic Wikibooks 26 45 2017-01-01 Afrikaans Wiktionary 229 488 2017-01-01 Aramaic Wikipedia 21 59 2017-01-01 Nuosu Wikipedia 25 27 2017-01-01 Armenian Wikisource 230 595 2017-01-01 Kabyle Wikipedia 26 148 2017-01-01 Ossetian Wikipedia 16 69 2017-01-01 Catalan Wiktionary 236 1320 2017-01-01 Fiji Hindi Wikipedia 389 908 2017-01-01 Kongo Wikipedia 72 115 2017-01-01 Gujarati Wikipedia 7351 14575 2017-01-01 Nepali Wikibooks 3 5 2017-01-01 Danish Wikiquote 62 94 2017-01-01 Galician Wikisource 16319 16321 2017-01-01 Shona Wikipedia 266 744 2017-01-01 Anglo-Saxon Wiktionary 0 1 2017-01-01 Serbo-Croatian Wiktionary 20 193 2017-01-01 Wu Wikipedia 307 713 2017-01-01 Aragonese Wiktionary 12 22 2017-01-01 Romansh Wiktionary 3 3 2017-01-01 Simple English Wiktionary 292 1457 2017-01-01 Tuvan Wikipedia 16 68 2017-01-01 Catalan Wikipedia 27340 124200 2017-01-01 Scottish Gaelic Wikipedia 30 244 2017-01-01 Lojban Wikipedia 11 50 2017-01-01 Russian Wiktionary 6085 71352 2017-01-01 Yoruba Wikipedia 91 150 2017-01-01 Chichewa Wikipedia 21 32 2017-01-01 Bengali Wiktionary 162 238 2017-01-01 Malayalam Wikiquote 46 53 2017-01-01 Western Punjabi Wiktionary 0 5 2017-01-01 Chinese Wikibooks 579 777 2017-01-01 English Arbitration Committee wiki 2 3 2017-01-01 German Wikiversity 128 295 2017-01-01 Esperanto Wikisource 3 29 2017-01-01 Mirandese Wikipedia 32 67 2017-01-01 Catalan Wikinews 15 22 2017-01-01 Norfolk Wikipedia 27 89 2017-01-01 Zhuang Wikipedia 13 34 2017-01-01 Bulgarian Wikipedia 29801 148958 2017-01-01 Fijian Wikipedia 22 33 2017-01-01 Icelandic Wiktionary 75 345 2017-01-01 Mongolian Wikipedia 3435 11349 2017-01-01 Asturian Wiktionary 9 27 2017-01-01 West Frisian Wikibooks 4 6 2017-01-01 Banyumasan Wikipedia 38 40 2017-01-01 Tatar Wikiquote 4 6 2017-01-01 Minangkabau Wikipedia 99 294 2017-01-01 Polish Wikisource 17941 19357 2017-01-01 Cornish Wiktionary 0 1 2017-01-01 Cree Wikipedia 5 7 2017-01-01 Japanese Wiktionary 1322 5645 2017-01-01 Kazakh Wikiquote 1 1 2017-01-01 Turkish Wikipedia 217815 1079760 2017-01-01 Urdu Wikiquote 11 18 2017-01-01 Amharic Wikipedia 223764 224702 2017-01-01 Arabic Wikisource 5671 10190 2017-01-01 Cree Wikiquote 1 1 2017-01-01 Danish Wikibooks 27 52 2017-01-01 Interlingua Wiktionary 2 17 2017-01-01 Lithuanian Wikipedia 11088 81267 2017-01-01 Norman Wikipedia 11 75 2017-01-01 Sundanese Wiktionary 4 4 2017-01-01 Chinese Wiktionary 1677 6744 2017-01-01 Bosnian Wikinews 1 2 2017-01-01 Chamorro Wiktionary 2 2 2017-01-01 Divehi Wikipedia 50 145 2017-01-01 Bosnian Wikiquote 6 28 2017-01-01 Hiri Motu Wikipedia 1 1 2017-01-01 Inupiak Wikipedia 33 46 2017-01-01 Polish Wikinews 160 203 2017-01-01 Gujarati Wikiquote 3 3 2017-01-01 Dutch Wikimedia Chapter 0 1 2017-01-01 Somali Wiktionary 1 1 2017-01-01 Georgian Wiktionary 42 70 2017-01-01 Kannada Wiktionary 374 1188 2017-01-01 Novial Wikipedia 42 124 2017-01-01 Bambara Wikiquote 2 2 2017-01-01 Persian Wikivoyage 125 385 2017-01-01 Kashmiri Wiktionary 2 2 2017-01-01 Divehi Wiktionary 1 2 2017-01-01 English Wikivoyage 8496 22083 2017-01-01 Hebrew Wikisource 2003 5535 2017-01-01 Latgalian Wikipedia 10 20 2017-01-01 Hindi Wikipedia 104196 215157 2017-01-01 NA Office wiki 8 42 2017-01-01 Bosnian Wikibooks 11 13 2017-01-01 Tulu Wikipedia 0 9 2017-01-01 Azerbaijani Wikiquote 51 194 2017-01-01 Pashto Wiktionary 1 1 2017-01-01 Sanskrit Wikiquote 1 1 2017-01-01 Oromo Wikipedia 85 210 2017-01-01 NA Wikimedia Outreach 27 48 2017-01-01 Telugu Wikibooks 13 13 2017-01-01 Telugu Wikiquote 5 6 2017-01-01 Slovenian Wikiquote 8 28 2017-01-01 Swedish Wikibooks 64 154 2017-01-01 Kanuri Wikipedia 22 22 2017-01-01 Inuktitut Wiktionary 2 2 2017-01-01 Sanskrit Wiktionary 543 1003 2017-01-01 Croatian Wikisource 19 71 2017-01-01 Tajik Wikibooks 1 2 2017-01-01 Scottish Gaelic Wiktionary 14 19 2017-01-01 Icelandic Wikiquote 1 1 2017-01-01 Maori Wiktionary 3 7 2017-01-01 Yiddish Wikipedia 70 571 2017-01-01 Bulgarian Wiktionary 580 1899 2017-01-01 Bulgarian Wikisource 6 6 2017-01-01 NA Login wiki 7 7 2017-01-01 Latvian Wiktionary 23 55 2017-01-01 Dutch Wikiquote 273 440 2017-01-01 Finnish Wikivoyage 16 54 2017-01-01 Limburgish Wiktionary 2 2 2017-01-01 Bislama Wikipedia 9 21 2017-01-01 Russian Wikiquote 1756 6084 2017-01-01 Japanese Wikiquote 98 127 2017-01-01 Bashkir Wikipedia 139 504 2017-01-01 Esperanto Wikiquote 17 27 2017-01-01 Breton Wikipedia 12382 19594 2017-01-01 Burmese Wikipedia 3186 8510 2017-01-01 Dutch Wikibooks 610 1007 2017-01-01 Tumbuka Wikipedia 23 47 2017-01-01 Bosnian Wiktionary 7 9 2017-01-01 Nahuatl Wikipedia 30 122 2017-01-01 Catalan Wikimedia Chapter 22 26 2017-01-01 Hakka Wikipedia 21 96 2017-01-01 Marshallese Wikipedia 8 8 2017-01-01 Romanian Wikiquote 102 129 2017-01-01 Tagalog Wikipedia 13739 46105 2017-01-01 Romanian Wikibooks 20 29 2017-01-01 Ladino Wikipedia 186 415 2017-01-01 Croatian Wikiquote 20 45 2017-01-01 Breton Wikimedia Chapter 9 10 2017-01-01 Interlingue Wikipedia 101 239 2017-01-01 Quechua Wiktionary 1 1 2017-01-01 Japanese Wikinews 63 81 2017-01-01 Vietnamese Wiktionary 1214 8998 2017-01-01 Armenian Wikiquote 36 126 2017-01-01 Indonesian Wikibooks 279 545 2017-01-01 Lingala Wikipedia 28 67 2017-01-01 Serbian Wikipedia 21354 120345 2017-01-01 Esperanto Wiktionary 241 873 2017-01-01 Pali Wikipedia 9 13 2017-01-01 Sakha Wikipedia 8 127 2017-01-01 Greek Wikivoyage 102 134 2017-01-01 Macedonian Wiktionary 8 8 2017-01-01 Low Saxon Wikiquote 2 2 2017-01-01 Eastern Punjabi Wikipedia 1641 4248 2017-01-01 Lithuanian Wiktionary 72 226 2017-01-01 Udmurt Wikipedia 6 30 2017-01-01 Arabic Wiktionary 1687 4195 2017-01-01 Chuvash Wikipedia 53 200 2017-01-01 Lithuanian Wikiquote 111 197 2017-01-01 Korean Wikiversity 3 3 2017-01-01 Malagasy Wikibooks 7 8 2017-01-01 Belarusian Wiktionary 27 34 2017-01-01 Breton Wiktionary 185 455 2017-01-01 Faroese Wiktionary 4 4 2017-01-01 Fijian Wiktionary 2 11 2017-01-01 Hindi Wikiquote 272 311 2017-01-01 Luxembourgish Wiktionary 6 10 2017-01-01 Norwegian (Bokmal) Wikinews 1 5 2017-01-01 Palatinate German Wikipedia 46 115 2017-01-01 Northern Sami Wikimedia Chapter 6 26 2017-01-01 Danish Wikisource 12 20 2017-01-01 Ukrainian Wikibooks 13 22 2017-01-01 Estonian Wikimedia Chapter 8 8 2017-01-01 Lao Wiktionary 2 4 2017-01-01 Turkmen Wikiquote 5 5 2017-01-01 Norwegian (Bokmal) Wiktionary 331 1640 2017-01-01 Persian Wikisource 5727 6342 2017-01-01 NA Wikitech 236 462 2017-01-01 NA Historic wiki 64 76 2017-01-01 Tajik Wiktionary 73 139 2017-01-01 Turkish Wikiquote 1104 4166 2017-01-01 Catalan Wikiquote 101 484 2017-01-01 Lingala Wiktionary 2 2 2017-01-01 Manx Wiktionary 0 1 2017-01-01 Albanian Wikinews 13 20 2017-01-01 Hebrew Wikinews 89 96 2017-01-01 Bulgarian Wikinews 0 2 2017-01-01 Japanese Wikiversity 10 20 2017-01-01 Eastern Punjabi Wikibooks 2 2 2017-01-01 NA Wikidata Test 5 175 2017-01-01 Dzongkha Wiktionary 1 1 2017-01-01 Khmer Wiktionary 71 348 2017-01-01 Afrikaans Wikibooks 2 2 2017-01-01 Volapuk Wiktionary 1 17 2017-01-01 Esperanto Wikibooks 1 1 2017-01-01 Wolof Wiktionary 20 30 2017-01-01 Tigrinya Wiktionary 1 1 2017-01-01 Venetian Wiktionary 49 135 2017-01-01 Zhuang Wiktionary 3 3 2017-01-01 Venetian Wikisource 0 1 2017-01-01 NA Wikimania 2014 1 9 2017-01-01 Romanian Wikivoyage 4 5 2017-01-01 Nahuatl Wiktionary 0 1 2017-01-01 Maltese Wiktionary 1 3 2017-01-01 Welsh Wikibooks 0 1 2017-01-01 Marathi Wikibooks 76 92 2017-01-01 Galician Wikiquote 1 2 2017-01-01 Sango Wiktionary 1 1 2017-01-01 Kurdish (Kurmanji) Wikiquote 1 3 ``` It took 16m 19s to generate this report. ### Report 20 of 44 _Zero results and total searches broken down by language-project pairs (e.g. German Wikiquote ZRR vs. French Wikibooks ZRR), excluding known bots/tools_ **Note**: this report is configured to allow more than one row per day. **Note**: this report is configured to be "rolling" -- 30 maximum number of days allowed in the final dataset. Some of the existing data in **/a/aggregate-datasets/discovery/search/cirrus_langproj_breakdown_no_automata.tsv**: ``` date language project zero_results total 2016-12-28 Adyghe Wikipedia 135 190 2016-12-28 Azerbaijani Wikibooks 67 90 ... 2017-01-01 Arabic Wikimedia Chapter 29 43 2017-01-01 Min Dong Wikipedia 105 192 2017-01-01 Estonian Wikiquote 2 7 2017-01-01 Persian Wikivoyage 125 385 2017-01-01 Gujarati Wiktionary 15 20 2017-01-01 Croatian Wikisource 19 71 2017-01-01 Kabyle Wikipedia 23 142 2017-01-01 Khmer Wikipedia 1297 3665 2017-01-01 Kirghiz Wikipedia 530 2565 2017-01-01 Sindhi Wikipedia 274 1823 2017-01-01 Walloon Wikipedia 18 192 2017-01-01 North Frisian Wikipedia 55 153 2017-01-01 Indonesian Wiktionary 606 1366 2017-01-01 Oromo Wikipedia 85 210 2017-01-01 Polish Wikivoyage 151 370 2017-01-01 Slovak Wikibooks 13 22 2017-01-01 Sundanese Wikipedia 155 651 2017-01-01 Kalmyk Wikipedia 10 30 2017-01-01 Arabic Wikiquote 597 1553 2017-01-01 Bavarian Wikipedia 235 1231 2017-01-01 Corsican Wikipedia 41 143 2017-01-01 English Wikivoyage 4794 16007 2017-01-01 Esperanto Wikipedia 1822 6909 2017-01-01 Gujarati Wikipedia 7337 14525 2017-01-01 Hebrew Wikisource 1986 5506 2017-01-01 Maori Wiktionary 3 7 2017-01-01 Norwegian (Bokmal) Wikiquote 14 41 2017-01-01 Norwegian (Bokmal) Wikisource 25253 25314 2017-01-01 Occitan Wikipedia 166 817 2017-01-01 Slovenian Wikiquote 8 27 2017-01-01 Swati Wiktionary 0 6 2017-01-01 Swedish Wikibooks 64 149 2017-01-01 Venetian Wiktionary 49 135 2017-01-01 Bulgarian Wiktionary 564 1825 2017-01-01 Buryat Wikipedia 18 64 2017-01-01 Danish Wikipedia 42446 222776 2017-01-01 Hindi Wikipedia 102366 212492 2017-01-01 Hungarian Wiktionary 377 1615 2017-01-01 Icelandic Wikipedia 1270 7713 2017-01-01 Jamaican Patois Wikipedia 34 60 2017-01-01 Cornish Wikipedia 26 76 2017-01-01 Shona Wikipedia 266 744 2017-01-01 Swedish Wikiquote 101 270 2017-01-01 Azerbaijani Wikibooks 64 100 2017-01-01 Chamorro Wikipedia 41 49 2017-01-01 Welsh Wiktionary 2 2 2017-01-01 Greek Wikiquote 35 154 2017-01-01 Hausa Wikipedia 84 146 2017-01-01 Inupiak Wikipedia 33 46 2017-01-01 Georgian Wikipedia 9804 36030 2017-01-01 Limburgish Wikipedia 127 431 2017-01-01 NA Login wiki 7 7 2017-01-01 Latvian Wiktionary 21 49 2017-01-01 Norwegian (Bokmal) Wikipedia 61003 353581 2017-01-01 Sanskrit Wiktionary 542 1002 2017-01-01 Serbo-Croatian Wikipedia 6046 35144 2017-01-01 Turkish Wikinews 5 14 2017-01-01 Welsh Wikipedia 309 2050 2017-01-01 Indonesian Wikisource 8075 8138 2017-01-01 Zeelandic Wikipedia 76 153 2017-01-01 Chinese Wikipedia 333047 1254007 2017-01-01 Bulgarian Wikipedia 27141 138999 2017-01-01 Bislama Wikipedia 9 20 2017-01-01 Estonian Wikibooks 0 2 2017-01-01 Karakalpak Wikipedia 36 81 2017-01-01 Luxembourgish Wikipedia 261 1945 2017-01-01 Moksha Wikipedia 14 20 2017-01-01 Mongolian Wikipedia 3418 11294 2017-01-01 Oriya Wikipedia 894 2428 2017-01-01 Romanian Wiktionary 480 1280 2017-01-01 Sardinian Wikipedia 71 188 2017-01-01 Romanian Wikivoyage 4 5 2017-01-01 Sesotho Wikipedia 501 538 2017-01-01 Tamil Wiktionary 1260 6047 2017-01-01 Telugu Wiktionary 347 2479 2017-01-01 Uzbek Wikipedia 1983 11849 2017-01-01 Yiddish Wikipedia 69 561 2017-01-01 Czech Wikipedia 147383 906457 2017-01-01 English Wikibooks 11842 25294 2017-01-01 Japanese Wikiquote 87 112 2017-01-01 Georgian Wikiquote 48 61 2017-01-01 Polish Wikisource 17936 19341 2017-01-01 Greek Wikisource 415 668 2017-01-01 Esperanto Wikiquote 17 27 2017-01-01 Dutch Wikiquote 260 427 2017-01-01 Serbian Wiktionary 93 453 2017-01-01 NA Wikimania 2017 35 39 2017-01-01 German Wikisource 2687 9781 2017-01-01 Greek Wikibooks 57 97 2017-01-01 Armenian Wikipedia 3320 17204 2017-01-01 Newar Wikipedia 509 966 2017-01-01 Norwegian (Nynorsk) Wikipedia 1910 11413 2017-01-01 Slovenian Wikisource 41718 42159 2017-01-01 Venda Wikipedia 36 92 2017-01-01 Alemannic Wikipedia 611 2101 2017-01-01 Bengali Wikipedia 26159 104182 2017-01-01 Spanish Wikivoyage 160 479 2017-01-01 Finnish Wikiquote 121 726 2017-01-01 Italian Wikipedia 523245 3389450 2017-01-01 Japanese Wiktionary 1239 5079 2017-01-01 Korean Wikipedia 71615 397954 2017-01-01 Kirundi Wikipedia 9 15 2017-01-01 Russian Wikipedia 879308 4667884 2017-01-01 Turkish Wikipedia 205467 1048186 2017-01-01 Tumbuka Wikipedia 23 47 2017-01-01 Ukrainian Wikimedia Chapter 33 71 2017-01-01 Chinese Wikisource 1484 2849 2017-01-01 Javanese Wikipedia 295 1238 2017-01-01 Nahuatl Wikipedia 30 115 2017-01-01 Russian Wikiquote 1752 6065 2017-01-01 Simple English Wikiquote 59 87 2017-01-01 Swahili Wikipedia 2442 6459 2017-01-01 Turkish Wiktionary 5695 28391 2017-01-01 Arabic Wikisource 5666 10175 2017-01-01 Catalan Wikimedia Chapter 22 26 2017-01-01 Kashubian Wikipedia 10 51 2017-01-01 Hakka Wikipedia 21 94 2017-01-01 Latgalian Wikipedia 10 20 2017-01-01 Lithuanian Wikipedia 10656 60361 2017-01-01 Pennsylvania German Wikipedia 74 210 2017-01-01 Samogitian Wikipedia 20 32 2017-01-01 Bashkir Wikipedia 127 460 2017-01-01 Finnish Wikipedia 65930 540985 2017-01-01 Japanese Wikibooks 1080 1576 2017-01-01 Karachay-Balkar Wikipedia 3 41 2017-01-01 NA MediaWiki 7699 14897 2017-01-01 Marshallese Wikipedia 8 8 2017-01-01 Marathi Wikiquote 22 32 2017-01-01 Romanian Wikiquote 95 122 2017-01-01 Venetian Wikipedia 72 436 2017-01-01 Vietnamese Wikipedia 87576 360130 2017-01-01 Chinese Wiktionary 1484 6145 2017-01-01 Avar Wikipedia 29 62 2017-01-01 Breton Wikipedia 684 1424 2017-01-01 Czech Wikinews 43 89 2017-01-01 Zazaki Wikipedia 34 319 2017-01-01 Spanish Wikiversity 203 350 2017-01-01 Persian Wikiquote 788 2010 2017-01-01 Finnish Wiktionary 667 5949 2017-01-01 Armenian Wiktionary 65 262 2017-01-01 Burmese Wikipedia 3111 8397 2017-01-01 Dutch Wikibooks 597 986 2017-01-01 Urdu Wikipedia 8846 31799 2017-01-01 Bihari Wikipedia 228 485 2017-01-01 Hawaiian Wikipedia 24 69 2017-01-01 Kannada Wikisource 15089 15113 2017-01-01 Moldovan Wikipedia 2 24 2017-01-01 Tahitian Wikipedia 2 9 2017-01-01 Adyghe Wikipedia 40 53 2017-01-01 Estonian Wiktionary 93 393 2017-01-01 Finnish Wikibooks 74 171 2017-01-01 Lak Wikipedia 40 58 2017-01-01 Maltese Wikipedia 100 265 2017-01-01 Russian Wikiversity 225 382 2017-01-01 Simple English Wikipedia 33891 99683 2017-01-01 Turkish Wikimedia Chapter 40 51 2017-01-01 Ukrainian Wikipedia 33596 198469 2017-01-01 Czech Wiktionary 7263 15143 2017-01-01 Hebrew Wikivoyage 205 275 2017-01-01 NA Meta wiki 6039 12042 2017-01-01 Russian Wikibooks 365 660 2017-01-01 Albanian Wikibooks 28 68 2017-01-01 Breton Wikimedia Chapter 9 10 2017-01-01 French Wikisource 13374 61200 2017-01-01 Manx Wikipedia 10 51 2017-01-01 Interlingue Wikipedia 10 90 2017-01-01 Greenlandic Wiktionary 6 8 2017-01-01 Tagalog Wikipedia 13655 45893 2017-01-01 Ukrainian Wikisource 3282 3312 2017-01-01 Banjar Wikipedia 14 78 2017-01-01 NA Wikimedia Commons 220820 693885 2017-01-01 Crimean Tatar Wikipedia 248 374 2017-01-01 Gujarati Wikisource 14311 14316 2017-01-01 Northern Luri Wikipedia 6 30 2017-01-01 Marathi Wikibooks 76 92 2017-01-01 Romanian Wikibooks 17 25 2017-01-01 Estonian Wikisource 29215 29226 2017-01-01 Persian Wikibooks 328 570 2017-01-01 West Frisian Wikipedia 352 1330 2017-01-01 Italian Wikinews 184 424 2017-01-01 Lingala Wikipedia 27 64 2017-01-01 NA Office wiki 8 42 2017-01-01 Tajik Wikipedia 663 1989 2017-01-01 Tsonga Wikipedia 15 33 2017-01-01 Central Bicolano Wikipedia 69 305 2017-01-01 German Wikiquote 1446 4032 2017-01-01 English Wikipedia 7901693 50276701 2017-01-01 English Wikinews 1668 4495 2017-01-01 Spanish Wikinews 120 319 2017-01-01 Persian Wikipedia 258805 958748 2017-01-01 Ladino Wikipedia 186 414 2017-01-01 Malayalam Wikibooks 22 36 2017-01-01 Occitan Wiktionary 37 134 2017-01-01 Vietnamese Wikibooks 52 95 2017-01-01 Aragonese Wikipedia 947336 948451 2017-01-01 English Wikiversity 1956 5158 2017-01-01 Maithili Wikipedia 192 374 2017-01-01 Assamese Wikipedia 291 948 2017-01-01 Esperanto Wiktionary 238 862 2017-01-01 Spanish Wiktionary 20062 29806 2017-01-01 Kirghiz Wiktionary 8 20 2017-01-01 Pali Wikipedia 6 10 2017-01-01 Belarusian Wikipedia 1110 7646 2017-01-01 Greek Wikivoyage 102 133 2017-01-01 English Wikiquote 11380 32975 2017-01-01 Spanish Wikipedia 910747 4535783 2017-01-01 NA Wikimedia Foundation wiki 7109 9724 2017-01-01 Japanese Wikinews 55 64 2017-01-01 Malayalam Wikipedia 19015 55418 2017-01-01 Vietnamese Wiktionary 1102 8651 2017-01-01 Chinese Wikiquote 790 1218 2017-01-01 Armenian Wikiquote 33 121 2017-01-01 Indonesian Wikibooks 256 473 2017-01-01 Kazakh Wiktionary 1 3 2017-01-01 Korean Wikinews 10 11 2017-01-01 NA Wikimedia Outreach 27 48 2017-01-01 Serbian Wikipedia 21127 119696 2017-01-01 Croatian Wikibooks 20 34 2017-01-01 Malay Wikibooks 12 15 2017-01-01 Norwegian (Bokmal) Wikibooks 0 1 2017-01-01 Uzbek Wiktionary 22 229 2017-01-01 Southern Azerbaijani Wikipedia 161 539 2017-01-01 German Wikibooks 4311 7047 2017-01-01 Croatian Wikipedia 15969 93849 2017-01-01 NA Wikidata 505167 786924 2017-01-01 Persian Wiktionary 471 1617 2017-01-01 Malayalam Wikisource 50490 50565 2017-01-01 Sakha Wikipedia 6 100 2017-01-01 Serbian Wikisource 116 228 2017-01-01 Swedish Wikisource 30599 30868 2017-01-01 Udmurt Wikipedia 5 24 2017-01-01 Chuvash Wikipedia 53 182 2017-01-01 Upper Sorbian Wikipedia 626 1411 2017-01-01 Haitian Wikisource 5475 5631 2017-01-01 Polish Wiktionary 4439 31479 2017-01-01 Arabic Wikibooks 2028 4000 2017-01-01 English Wiktionary 47034 397639 2017-01-01 Kurdish (Kurmanji) Wiktionary 200 2909 2017-01-01 Latin Wikipedia 1129 5875 2017-01-01 Malagasy Wikibooks 7 8 2017-01-01 Sanskrit Wikisource 169 310 2017-01-01 NA Test Wikipedia 115 294 2017-01-01 NA Incubator for Wikiversities 76 133 2017-01-01 Irish Wiktionary 14 14 2017-01-01 Goan Konkani Wikipedia 29 78 2017-01-01 Armenian Wikibooks 4 6 2017-01-01 Malagasy Wiktionary 0 34 2017-01-01 Dutch Wikisource 50227 50252 2017-01-01 Eastern Punjabi Wikipedia 1593 4189 2017-01-01 Tigrinya Wikipedia 9 15 2017-01-01 Turkish Wikisource 300 731 2017-01-01 Urdu Wikibooks 26 41 2017-01-01 Belarusian Wiktionary 8 8 2017-01-01 Bislama Wiktionary 1 1 2017-01-01 French Wikinews 1277 2299 2017-01-01 Fijian Wiktionary 1 10 2017-01-01 Galician Wikisource 16319 16321 2017-01-01 Hindi Wikiquote 271 310 2017-01-01 Limburgish Wikiquote 0 3 2017-01-01 Lithuanian Wiktionary 72 216 2017-01-01 Tamil Wikisource 245 324 2017-01-01 Urdu Wiktionary 28 45 2017-01-01 Arabic Wiktionary 1262 3137 2017-01-01 Galician Wikipedia 1899 11584 2017-01-01 Hausa Wiktionary 1 1 2017-01-01 Haitian Wikipedia 73 242 2017-01-01 Lithuanian Wikiquote 111 196 2017-01-01 Portuguese Wikiquote 465 1803 2017-01-01 Chinese Wikinews 77 171 2017-01-01 Greenlandic Wikipedia 33 96 2017-01-01 Luxembourgish Wiktionary 5 8 2017-01-01 Northern Sotho Wikipedia 39 68 2017-01-01 Piedmontese Wikipedia 124 213 2017-01-01 Northern Sami Wikipedia 40858 41155 2017-01-01 Albanian Wikipedia 8399 33013 2017-01-01 Palatinate German Wikipedia 46 115 2017-01-01 Romani Wikipedia 59 152 2017-01-01 Northern Sami Wikimedia Chapter 6 26 2017-01-01 Swedish Wikipedia 137263 1081373 2017-01-01 Breton Wiktionary 184 450 2017-01-01 Czech Wikisource 341 743 2017-01-01 Interlingua Wikipedia 106 468 2017-01-01 Kashmiri Wikipedia 29 37 2017-01-01 Latin Wikiquote 18 40 2017-01-01 Serbian Wikimedia Chapter 1 7 2017-01-01 Saterland Frisian Wikipedia 206 399 2017-01-01 Thai Wikipedia 46967 178538 2017-01-01 Polish Wikiquote 1508 6083 2017-01-01 Slovenian Wiktionary 33 81 2017-01-01 Somali Wikipedia 1199 3016 2017-01-01 Vietnamese Wikiquote 393 666 2017-01-01 Waray Wikipedia 227 744 2017-01-01 Old Church Slavonic Wikipedia 39 73 2017-01-01 Estonian Wikimedia Chapter 8 8 2017-01-01 Hebrew Wikibooks 1741 2432 2017-01-01 Hindi Wikibooks 962 1135 2017-01-01 Mirandese Wikipedia 32 67 2017-01-01 Rusyn Wikipedia 143 279 2017-01-01 Tamil Wikipedia 37725 72625 2017-01-01 Asturian Wikipedia 396 1309 2017-01-01 Lithuanian Wikibooks 48 95 2017-01-01 Zulu Wikipedia 65 100 2017-01-01 Lower Sorbian Wikipedia 536 903 2017-01-01 French Wikipedia 875669 4363712 2017-01-01 Armenian Wikisource 230 595 2017-01-01 Japanese Wikipedia 504355 2624053 2017-01-01 Ossetian Wikipedia 15 64 2017-01-01 Kapampangan Wikipedia 48 176 2017-01-01 Tagalog Wiktionary 301 860 2017-01-01 Catalan Wiktionary 234 1314 2017-01-01 Danish Wikisource 3 6 2017-01-01 Franco-Provencal Wikipedia 36 114 2017-01-01 Fiji Hindi Wikipedia 389 887 2017-01-01 Western Punjabi Wikipedia 117 588 2017-01-01 Kinyarwanda Wikipedia 171 364 2017-01-01 NA Sources wiki 1254 2257 2017-01-01 Turkmen Wikipedia 140 403 2017-01-01 Ukrainian Wikibooks 13 22 2017-01-01 German Wikipedia 1525699 10214150 2017-01-01 Spanish Wikisource 40975 42304 2017-01-01 Malay Wiktionary 105 192 2017-01-01 Mazandarani Wikipedia 107 352 2017-01-01 Afrikaans Wikipedia 2053 8385 2017-01-01 Catalan Wikiquote 101 483 2017-01-01 Danish Wikiquote 52 81 2017-01-01 Kurdish (Kurmanji) Wikipedia 404 2129 2017-01-01 Western Punjabi Wiktionary 0 5 2017-01-01 Swedish Wikivoyage 14 43 2017-01-01 Danish Wiktionary 61 297 2017-01-01 Guarani Wikipedia 23 115 2017-01-01 Ripuarian Wikipedia 70 256 2017-01-01 Scots Wikipedia 268 1531 2017-01-01 Serbo-Croatian Wiktionary 18 189 2017-01-01 Slovak Wiktionary 71 157 2017-01-01 Thai Wikisource 224 459 2017-01-01 Tibetan Wikipedia 168 438 2017-01-01 Emilian-Romagnol Wikipedia 48 218 2017-01-01 Hebrew Wikinews 22 29 2017-01-01 Hebrew Wiktionary 3166 9275 2017-01-01 Hindi Wiktionary 935 2664 2017-01-01 Norwegian (Bokmal) Wiktionary 330 1636 2017-01-01 Sango Wikipedia 9 20 2017-01-01 Simple English Wiktionary 281 1446 2017-01-01 Tuvan Wikipedia 15 61 2017-01-01 Catalan Wikipedia 14275 102941 2017-01-01 Faroese Wikipedia 141 478 2017-01-01 Erzya Wikipedia 23 51 2017-01-01 Dutch Wikivoyage 31 173 2017-01-01 Russian Wiktionary 5935 70744 2017-01-01 West Flemish Wikipedia 80 445 2017-01-01 Yoruba Wikipedia 90 145 2017-01-01 Persian Wikisource 5727 6342 2017-01-01 Irish Wikipedia 239 983 2017-01-01 Italian Wikivoyage 228 1677 2017-01-01 Kikuyu Wikipedia 10 13 2017-01-01 NA Wikitech 236 460 2017-01-01 NA Historic wiki 64 76 2017-01-01 Chichewa Wikipedia 21 32 2017-01-01 Russian Wikivoyage 293 842 2017-01-01 Tajik Wiktionary 71 137 2017-01-01 Thai Wiktionary 414 1259 2017-01-01 Turkmen Wiktionary 3 4 2017-01-01 Turkish Wikiquote 972 3895 2017-01-01 Zhuang Wikipedia 13 34 2017-01-01 Bulgarian Wikiquote 72 219 2017-01-01 Nauruan Wikipedia 95 299 2017-01-01 Portuguese Wikisource 23256 23635 2017-01-01 Tamil Wikiquote 60 65 2017-01-01 Chinese Wikibooks 563 754 2017-01-01 Catalan Wikibooks 57 71 2017-01-01 German Wikiversity 69 187 2017-01-01 English Wikisource 46242 54535 2017-01-01 Esperanto Wikisource 3 29 2017-01-01 French Wikiquote 1795 3766 2017-01-01 Irish Wikibooks 1 1 2017-01-01 Low Saxon Wiktionary 7 16 2017-01-01 Azerbaijani Wikipedia 13851 58437 2017-01-01 Gagauz Wikipedia 51 114 2017-01-01 Italian Wikisource 17954 19876 2017-01-01 Minangkabau Wikipedia 46 203 2017-01-01 Spanish (Mexico) Wikimedia Chapter 29 30 2017-01-01 Slovenian Wikiversity 10 21 2017-01-01 Uyghur Wikipedia 252 553 2017-01-01 Ukrainian Wiktionary 101 356 2017-01-01 Vietnamese Wikisource 7265 7370 2017-01-01 Mingrelian Wikipedia 38 266 2017-01-01 Malay Wikipedia 13686 63019 2017-01-01 Russian Wikinews 138 412 2017-01-01 Maori Wikipedia 121 189 2017-01-01 Nepali Wikipedia 5097 13853 2017-01-01 Dutch Wikipedia 236313 1417023 2017-01-01 Norwegian (Nynorsk) Wiktionary 2 5 2017-01-01 Romansh Wikipedia 32 173 2017-01-01 Tatar Wiktionary 30 39 2017-01-01 Egyptian Arabic Wikipedia 3269 12814 2017-01-01 Azerbaijani Wikisource 284 515 2017-01-01 Basque Wikipedia 1725 9589 2017-01-01 Ilokano Wikipedia 24 106 2017-01-01 Icelandic Wiktionary 65 328 2017-01-01 Eastern Punjabi Wiktionary 1 1 2017-01-01 Thai Wikiquote 20 64 2017-01-01 Turkish Wikibooks 452 769 2017-01-01 Volapuk Wikipedia 93 200 2017-01-01 Bulgarian Wikibooks 95 125 2017-01-01 French Wikiversity 2044 3938 2017-01-01 Igbo Wikipedia 7335 8259 2017-01-01 Sicilian Wiktionary 135 374 2017-01-01 Serbian Wikiquote 60 78 2017-01-01 Tamil Wikibooks 262 318 2017-01-01 Kurdish (Sorani) Wikipedia 1989 7241 2017-01-01 French Wikibooks 3062 5731 2017-01-01 Korean Wikibooks 43 57 2017-01-01 Malagasy Wikipedia 16 139 2017-01-01 Pangasinan Wikipedia 29 89 2017-01-01 Pontic Wikipedia 57 87 2017-01-01 Tagalog Wikibooks 675 1282 2017-01-01 Javanese Wiktionary 43 123 2017-01-01 Twi Wikipedia 21 28 2017-01-01 Afar Wikipedia 4801 4810 2017-01-01 Cherokee Wiktionary 1 1 2017-01-01 German Wikivoyage 1143 5182 2017-01-01 Khmer Wikibooks 25 35 2017-01-01 Wolof Wikipedia 7 57 2017-01-01 Arabic Wikipedia 451961 1729402 2017-01-01 Belarusian Wikisource 7179 7183 2017-01-01 Portuguese Wikibooks 1407 3117 2017-01-01 Vepsian Wikipedia 18 122 2017-01-01 Greek Wiktionary 3402 21575 2017-01-01 Upper Sorbian Wiktionary 4 7 2017-01-01 Lao Wikipedia 149 403 2017-01-01 Macedonian Wikipedia 6089 16957 2017-01-01 Polish Wikinews 157 198 2017-01-01 Amharic Wikipedia 223764 224691 2017-01-01 German Wiktionary 7758 74143 2017-01-01 Indonesian Wikipedia 97171 445598 2017-01-01 Sranan Wikipedia 2 9 2017-01-01 Serbian Wikibooks 17 22 2017-01-01 Tetum Wikipedia 4 25 2017-01-01 Xhosa Wikipedia 8 24 2017-01-01 German Arbitration Committee wiki 13 16 2017-01-01 Inuktitut Wikipedia 30 41 2017-01-01 Latin Wikisource 24 51 2017-01-01 Portuguese Wikipedia 376748 2258404 2017-01-01 Romanian Wikisource 383 891 2017-01-01 Divehi Wikipedia 47 120 2017-01-01 Extremaduran Wikipedia 28 72 2017-01-01 Hebrew Wikipedia 151073 540699 2017-01-01 Neapolitan Wikipedia 86 449 2017-01-01 Polish Wikibooks 568 976 2017-01-01 Slovenian Wikipedia 9164 47241 2017-01-01 NA Wikimania 2016 43 95 2017-01-01 Chinese Wikivoyage 106 161 2017-01-01 Breton Wikisource 9762 9762 2017-01-01 Bosnian Wikiquote 6 28 2017-01-01 Spanish Wikiquote 1944 6106 2017-01-01 Gilaki Wikipedia 9 103 2017-01-01 Korean Wikisource 136 322 2017-01-01 Albanian Wikiquote 13 41 2017-01-01 Buginese Wikipedia 6 23 2017-01-01 Basque Wiktionary 11 28 2017-01-01 Kannada Wikipedia 12796 22886 2017-01-01 Latin Wiktionary 81 239 2017-01-01 Portuguese Wikivoyage 53 209 2017-01-01 Slovak Wikisource 3227 3244 2017-01-01 Swati Wikipedia 11 21 2017-01-01 Cebuano Wikipedia 556 1881 2017-01-01 Galician Wiktionary 8 62 2017-01-01 Gothic Wikipedia 11 23 2017-01-01 Dutch Low Saxon Wikipedia 61 296 2017-01-01 Simple English Wikibooks 52 58 2017-01-01 Slovak Wikiquote 83 300 2017-01-01 Telugu Wikipedia 11377 26038 2017-01-01 Volapuk Wiktionary 1 17 2017-01-01 Gan Wikipedia 175 421 2017-01-01 Khmer Wiktionary 71 348 2017-01-01 Kannada Wiktionary 365 1171 2017-01-01 Anglo-Saxon Wikipedia 644 1112 2017-01-01 Finnish Wikinews 6 9 2017-01-01 Luganda Wikipedia 514 805 2017-01-01 French Wikivoyage 1276 2439 2017-01-01 Italian Wikiversity 272 637 2017-01-01 Wolof Wiktionary 20 30 2017-01-01 Cherokee Wikipedia 30 53 2017-01-01 Ewe Wikipedia 37 68 2017-01-01 Spanish Wikibooks 952 1703 2017-01-01 Marathi Wikisource 23463 23493 2017-01-01 Polish Wikipedia 370614 1741193 2017-01-01 Tatar Wikipedia 72 498 2017-01-01 Italian Wikiquote 1943 10221 2017-01-01 Ligurian Wikipedia 26 114 2017-01-01 Ukrainian Wikivoyage 22 48 2017-01-01 Walloon Wiktionary 30 268 2017-01-01 Hungarian Wikipedia 56461 372165 2017-01-01 Latvian Wikipedia 4773 27672 2017-01-01 Acehnese Wikipedia 130 264 2017-01-01 Slovak Wikipedia 36127 126312 2017-01-01 Tibetan Wiktionary 1 1 2017-01-01 Aymara Wikipedia 42 90 2017-01-01 Sinhalese Wiktionary 1 1 2017-01-01 Azerbaijani Wikiquote 51 192 2017-01-01 Oriya Wikisource 16281 16281 2017-01-01 Sinhalese Wikipedia 3475 9245 2017-01-01 Corsican Wiktionary 300 492 2017-01-01 Italian Wikibooks 552 1083 2017-01-01 Navajo Wikipedia 33 74 2017-01-01 Swedish Wikiversity 72 113 2017-01-01 Arabic Wikinews 1018 2175 2017-01-01 Kazakh Wikipedia 3787 17500 2017-01-01 Silesian Wikipedia 24 227 2017-01-01 Tamil Wikinews 76 102 2017-01-01 Indonesian Wikiquote 45 83 2017-01-01 Malayalam Wiktionary 153 565 2017-01-01 Burmese Wikibooks 12 12 2017-01-01 Samoan Wikipedia 27 45 2017-01-01 Swedish Wiktionary 2178 15365 2017-01-01 Bishnupriya Manipuri Wikipedia 57 169 2017-01-01 Portuguese Wikinews 487 1326 2017-01-01 Sindhi Wiktionary 2 5 2017-01-01 NA Wikispecies 1152 5092 2017-01-01 Telugu Wikisource 336 445 2017-01-01 Hill Mari Wikipedia 2 31 2017-01-01 Dutch Wiktionary 889 5307 2017-01-01 Romanian Wikipedia 39579 224412 2017-01-01 Persian Wikinews 5 13 2017-01-01 Italian Wiktionary 1820 8524 2017-01-01 Sanskrit Wikipedia 983 3018 2017-01-01 Hungarian Wikiquote 297 512 2017-01-01 Muscogee Wikipedia 10 10 2017-01-01 Burmese Wiktionary 39 83 2017-01-01 Nahuatl Wiktionary 0 1 2017-01-01 Romanian Wikinews 23 26 2017-01-01 Arabic Wikiversity 689 1148 2017-01-01 Bosnian Wikipedia 4243 21273 2017-01-01 Finnish Wikimedia Chapter 10 13 2017-01-01 NA Wikimedia OTRS system 32 52 2017-01-01 Albanian Wiktionary 211 1282 2017-01-01 Chechen Wikipedia 99 303 2017-01-01 Sicilian Wikipedia 206 967 2017-01-01 Tongan Wikipedia 11 31 2017-01-01 Yiddish Wiktionary 6 7 2017-01-01 Quechua Wikipedia 15 250 2017-01-01 Assamese Wikisource 1 1 2017-01-01 Hungarian Wikibooks 55 130 2017-01-01 Ido Wiktionary 41 736 2017-01-01 Hebrew Wikiquote 875 2494 2017-01-01 Czech Wikiquote 388 884 2017-01-01 Marathi Wikipedia 26972 51891 2017-01-01 Lombard Wikipedia 79 544 2017-01-01 Portuguese Wikiversity 161 421 2017-01-01 Aromanian Wikipedia 5 21 2017-01-01 Estonian Wikipedia 9527 59889 2017-01-01 Korean Wiktionary 568 2025 2017-01-01 Abkhazian Wikipedia 47 72 2017-01-01 Fula Wikipedia 12 14 2017-01-01 Catalan Wikisource 53 107 2017-01-01 Czech Wikibooks 202 301 2017-01-01 Ido Wikipedia 92 335 2017-01-01 Livvi-Karelian Wikipedia 7 62 2017-01-01 Amharic Wiktionary 2 2 2017-01-01 Bengali Wikisource 258 478 2017-01-01 Chavacano Wikipedia 27 37 2017-01-01 Portuguese Wiktionary 3587 8921 2017-01-01 Classical Chinese Wikipedia 557 1208 2017-01-01 NA Incubator for new wikis 1281 1900 2017-01-01 Low Saxon Wikipedia 306 1146 2017-01-01 Tok Pisin Wikipedia 41 95 2017-01-01 Dzongkha Wikipedia 7 22 2017-01-01 Russian Wikisource 31235 33421 2017-01-01 Vietnamese Wikivoyage 17 50 2017-01-01 Greek Wikipedia 39369 172609 2017-01-01 French Wiktionary 19548 119239 2017-01-01 Pashto Wikipedia 499 1245 2017-01-01 Azerbaijani Wiktionary 8 31 2017-01-01 Bambara Wikipedia 4 14 2017-01-01 German Wikinews 109 255 2017-01-01 Ndonga Wikipedia 1 1 2017-01-01 Cantonese Wikipedia 1056 3083 2017-01-01 Macedonian Wikisource 36895 36900 2017-01-01 Picard Wikipedia 10 66 2017-01-01 Tswana Wikipedia 7 19 2017-01-01 Breton Wikiquote 0 3 2017-01-01 Komi-Permyak Wikipedia 3 15 2017-01-01 Korean Wikiquote 136 150 2017-01-01 Croatian Wiktionary 98 312 2017-01-01 Icelandic Wikisource 4015 4015 2017-01-01 Kongo Wikipedia 72 115 2017-01-01 Danish Wikimedia Chapter 45 49 2017-01-01 Ukrainian Wikiquote 99 222 2017-01-01 Bengali Wikibooks 126 165 2017-01-01 Czech Wikiversity 94 148 2017-01-01 Japanese Wikisource 194 267 2017-01-01 Kazakh Wikibooks 8 10 2017-01-01 Thai Wikibooks 121 202 2017-01-01 Scottish Gaelic Wikipedia 24 216 2017-01-01 Bambara Wikiquote 2 2 2017-01-01 Nepali Wiktionary 100 194 2017-01-01 Sundanese Wikiquote 5 5 2017-01-01 Papiamentu Wikipedia 11 67 2017-01-01 Marathi Wiktionary 24 44 2017-01-01 NA 10th Anniversary of Wikipedia 0 5 2017-01-01 Swahili Wikibooks 2 2 2017-01-01 Greek Wikiversity 67 164 2017-01-01 Fijian Wikipedia 21 32 2017-01-01 Friulian Wikipedia 33 89 2017-01-01 Oriya Wiktionary 32 39 2017-01-01 Swahili Wiktionary 18 32 2017-01-01 Sinhalese Wikibooks 53 59 2017-01-01 Greek Wikinews 2 2 2017-01-01 Twi Wiktionary 12 12 2017-01-01 Eastern Punjabi Wikibooks 2 2 2017-01-01 Polish Wikimedia Chapter 58 96 2017-01-01 Sanskrit Wikibooks 1 6 2017-01-01 Kabardian Wikipedia 19 32 2017-01-01 Finnish Wikivoyage 16 54 2017-01-01 Afrikaans Wiktionary 228 486 2017-01-01 Bulgarian Wikisource 6 6 2017-01-01 Nuosu Wikipedia 24 26 2017-01-01 Novial Wikipedia 40 118 2017-01-01 Finnish Wikisource 67 390 2017-01-01 Akan Wikipedia 150 227 2017-01-01 Nepali Wikibooks 2 4 2017-01-01 NA Strategy wiki 5 6 2017-01-01 Anglo-Saxon Wiktionary 0 1 2017-01-01 Aramaic Wikipedia 21 59 2017-01-01 Romansh Wiktionary 3 3 2017-01-01 Lojban Wikipedia 11 44 2017-01-01 Tarantino Wikipedia 5 11 2017-01-01 Malayalam Wikiquote 41 48 2017-01-01 Wu Wikipedia 306 710 2017-01-01 Aragonese Wiktionary 11 21 2017-01-01 Catalan Wikinews 4 5 2017-01-01 Croatian Wikiquote 20 44 2017-01-01 Bengali Wiktionary 79 129 2017-01-01 English Arbitration Committee wiki 2 3 2017-01-01 Cheyenne Wikipedia 5 11 2017-01-01 Cree Wikipedia 5 7 2017-01-01 Norfolk Wikipedia 27 88 2017-01-01 Urdu Wikiquote 5 7 2017-01-01 Asturian Wiktionary 9 27 2017-01-01 Cree Wikiquote 1 1 2017-01-01 Danish Wikibooks 20 39 2017-01-01 Banyumasan Wikipedia 38 39 2017-01-01 Macedonian Wiktionary 6 6 2017-01-01 Norman Wikipedia 11 70 2017-01-01 Sundanese Wiktionary 2 2 2017-01-01 Faroese Wikisource 10793 11185 2017-01-01 Gujarati Wikiquote 3 3 2017-01-01 Dutch Wikimedia Chapter 0 1 2017-01-01 Interlingua Wiktionary 2 15 2017-01-01 Russian Wikimedia Chapter 36 77 2017-01-01 Voro Wikipedia 1 10 2017-01-01 Kashmiri Wiktionary 2 2 2017-01-01 Divehi Wiktionary 0 1 2017-01-01 Georgian Wiktionary 41 64 2017-01-01 Lao Wiktionary 1 2 2017-01-01 Telugu Wikiquote 2 2 2017-01-01 NA Wikimania 2015 0 6 2017-01-01 Lezgian Wikipedia 59 133 2017-01-01 Lingala Wiktionary 1 1 2017-01-01 Lojban Wiktionary 8 9 2017-01-01 Tajik Wikibooks 1 2 2017-01-01 Scottish Gaelic Wiktionary 14 16 2017-01-01 Mongolian Wiktionary 26 98 2017-01-01 Telugu Wikibooks 13 13 2017-01-01 Kanuri Wikipedia 22 22 2017-01-01 Limburgish Wiktionary 2 2 2017-01-01 Komi Wikipedia 5 35 2017-01-01 Georgian Wikibooks 9 17 2017-01-01 Zhuang Wiktionary 3 3 2017-01-01 Meadow Mari Wikipedia 9 42 2017-01-01 Korean Wikiversity 1 1 2017-01-01 Faroese Wiktionary 3 3 2017-01-01 Icelandic Wikibooks 26 45 2017-01-01 Macedonian Wikibooks 2 2 2017-01-01 Norwegian (Bokmal) Wikinews 0 2 2017-01-01 Welsh Wikibooks 0 1 2017-01-01 Albanian Wikinews 1 1 2017-01-01 Japanese Wikiversity 3 4 2017-01-01 Hiri Motu Wikipedia 1 1 2017-01-01 Dzongkha Wiktionary 1 1 2017-01-01 Bosnian Wikibooks 10 11 2017-01-01 Tulu Wikipedia 0 9 2017-01-01 Pashto Wiktionary 1 1 2017-01-01 Sundanese Wikibooks 3 3 2017-01-01 Herero Wikipedia 10 10 ... 2017-01-26 NA Usability wiki 2 4 2017-01-26 Sranan Wikipedia 1 9 ``` 1. Executing report "cirrus_langproj_breakdown_no_automata" from the metrics/search module. 2. About to run the following command: `sh modules/metrics/search/cirrus_langproj_breakdown_no_automata 2017-01-01 2017-01-02` **Output**: ``` date language project zero_results total 2017-01-01 Arabic Wikimedia Chapter 29 43 2017-01-01 Cebuano Wikipedia 556 1881 2017-01-01 English Wikiquote 11370 32883 2017-01-01 Kazakh Wiktionary 1 3 2017-01-01 Korean Wikinews 10 11 2017-01-01 Luxembourgish Wikipedia 252 1930 2017-01-01 Dutch Low Saxon Wikipedia 61 296 2017-01-01 Samoan Wikipedia 27 45 2017-01-01 Tigrinya Wikipedia 9 15 2017-01-01 Urdu Wikibooks 26 41 2017-01-01 Volapuk Wikipedia 93 200 2017-01-01 Croatian Wikibooks 20 34 2017-01-01 Kirghiz Wikipedia 529 2412 2017-01-01 Thai Wiktionary 414 1259 2017-01-01 Uzbek Wiktionary 22 229 2017-01-01 Venda Wikipedia 36 92 2017-01-01 Walloon Wikipedia 18 192 2017-01-01 Alemannic Wikipedia 611 2094 2017-01-01 Anglo-Saxon Wikipedia 644 1112 2017-01-01 Southern Azerbaijani Wikipedia 161 539 2017-01-01 Bengali Wikipedia 25993 102943 2017-01-01 German Wikibooks 4311 7047 2017-01-01 Korean Wikipedia 60516 372173 2017-01-01 Norwegian (Bokmal) Wikipedia 53560 331876 2017-01-01 Polish Wikiquote 1433 5988 2017-01-01 Somali Wikipedia 1195 3011 2017-01-01 Kalmyk Wikipedia 10 30 2017-01-01 Welsh Wikipedia 307 2041 2017-01-01 Persian Wiktionary 471 1617 2017-01-01 Armenian Wikipedia 3319 17203 2017-01-01 Jamaican Patois Wikipedia 34 60 2017-01-01 Malayalam Wikisource 178 253 2017-01-01 Ndonga Wikipedia 1 1 2017-01-01 Occitan Wikipedia 161 805 2017-01-01 Portuguese Wikiquote 465 1798 2017-01-01 Swedish Wikisource 308 577 2017-01-01 Tamil Wikipedia 37682 72573 2017-01-01 Chinese Wikipedia 307449 1223932 2017-01-01 Kashubian Wikipedia 10 51 2017-01-01 Upper Sorbian Wikipedia 307 901 2017-01-01 Haitian Wikisource 15 43 2017-01-01 Polish Wikipedia 296605 1572213 2017-01-01 Portuguese Wikibooks 1406 3113 2017-01-01 Russian Wikimedia Chapter 36 77 2017-01-01 Belarusian Wikisource 4 8 2017-01-01 Lower Sorbian Wikipedia 164 310 2017-01-01 English Wiktionary 46142 396131 2017-01-01 Finnish Wikipedia 52060 507005 2017-01-01 Sindhi Wikipedia 271 1820 2017-01-01 Swahili Wikipedia 2442 6459 2017-01-01 Czech Wikipedia 137145 862376 2017-01-01 German Wikisource 1325 3490 2017-01-01 English Wikibooks 11809 25045 2017-01-01 Faroese Wikisource 0 44 2017-01-01 Irish Wiktionary 14 14 2017-01-01 Manx Wikipedia 10 51 2017-01-01 Javanese Wikipedia 255 1180 2017-01-01 Dutch Wikisource 34 59 2017-01-01 Serbian Wikimedia Chapter 1 7 2017-01-01 NA Sources wiki 1254 2247 2017-01-01 Bavarian Wikipedia 235 1231 2017-01-01 Bislama Wiktionary 1 1 2017-01-01 German Wikipedia 1123245 9263459 2017-01-01 Galician Wikipedia 1843 11455 2017-01-01 Komi-Permyak Wikipedia 3 15 2017-01-01 Malay Wiktionary 103 190 2017-01-01 Mazandarani Wikipedia 107 352 2017-01-01 Tahitian Wikipedia 2 9 2017-01-01 French Wikinews 1277 2298 2017-01-01 Cornish Wikipedia 26 76 2017-01-01 Limburgish Wikiquote 0 3 2017-01-01 Polish Wikibooks 498 894 2017-01-01 Simple English Wikipedia 33835 99601 2017-01-01 Ukrainian Wikipedia 33398 196603 2017-01-01 Abkhazian Wikipedia 47 72 2017-01-01 Chamorro Wikipedia 37 45 2017-01-01 Finnish Wiktionary 659 5941 2017-01-01 Hausa Wiktionary 1 1 2017-01-01 Korean Wikisource 136 322 2017-01-01 Limburgish Wikipedia 127 431 2017-01-01 Russian Wikipedia 646501 4208363 2017-01-01 Hindi Wiktionary 935 2664 2017-01-01 Crimean Tatar Wikipedia 248 374 2017-01-01 Latin Wiktionary 74 232 2017-01-01 Oriya Wikipedia 894 2428 2017-01-01 Romani Wikipedia 23 88 2017-01-01 Slovenian Wikisource 91 380 2017-01-01 Bihari Wikipedia 228 485 2017-01-01 Esperanto Wikipedia 1813 6894 2017-01-01 Spanish Wikivoyage 155 466 2017-01-01 French Wikipedia 847565 4172816 2017-01-01 Italian Wikinews 184 423 2017-01-01 Latin Wikiquote 18 40 2017-01-01 NA Meta wiki 6039 12042 2017-01-01 Russian Wikivoyage 293 842 2017-01-01 Bulgarian Wikiquote 72 219 2017-01-01 Persian Wikipedia 258264 954217 2017-01-01 Interlingua Wikipedia 106 468 2017-01-01 Portuguese Wikisource 294 669 2017-01-01 Thai Wikipedia 40232 167136 2017-01-01 French Wikiquote 1789 3749 2017-01-01 Italian Wikipedia 402730 3156304 2017-01-01 Pennsylvania German Wikipedia 74 210 2017-01-01 Slovak Wiktionary 67 153 2017-01-01 Karachay-Balkar Wikipedia 3 41 2017-01-01 Rusyn Wikipedia 143 279 2017-01-01 Ukrainian Wiktionary 99 354 2017-01-01 Venetian Wikipedia 72 436 2017-01-01 Avar Wikipedia 29 62 2017-01-01 Czech Wiktionary 7255 15135 2017-01-01 Spanish Wikinews 113 311 2017-01-01 Russian Wikinews 138 411 2017-01-01 French Wikisource 4866 12063 2017-01-01 Lojban Wiktionary 8 9 2017-01-01 Moldovan Wikipedia 2 24 2017-01-01 Romansh Wikipedia 32 173 2017-01-01 Azerbaijani Wikisource 284 515 2017-01-01 NA Wikimedia Commons 220704 691974 2017-01-01 Czech Wikinews 43 89 2017-01-01 English Wikinews 1597 4345 2017-01-01 Lak Wikipedia 40 58 2017-01-01 Nauruan Wikipedia 95 299 2017-01-01 Tamil Wikiquote 60 63 2017-01-01 Aragonese Wikipedia 333 1448 2017-01-01 Bulgarian Wikibooks 95 125 2017-01-01 Maithili Wikipedia 192 374 2017-01-01 Mongolian Wiktionary 26 98 2017-01-01 Tamil Wikibooks 262 318 2017-01-01 NA 10th Anniversary of Wikipedia 0 5 2017-01-01 German Wikiquote 1446 4032 2017-01-01 French Wikibooks 3062 5729 2017-01-01 Guarani Wikipedia 20 109 2017-01-01 Malagasy Wikipedia 16 139 2017-01-01 Slovenian Wikiversity 10 21 2017-01-01 Banjar Wikipedia 14 78 2017-01-01 Danish Wiktionary 54 290 2017-01-01 Herero Wikipedia 10 10 2017-01-01 Javanese Wiktionary 43 123 2017-01-01 Sango Wikipedia 9 20 2017-01-01 Spanish Wiktionary 1700 7736 2017-01-01 NA MediaWiki 7694 14890 2017-01-01 Norwegian (Nynorsk) Wiktionary 2 5 2017-01-01 Tsonga Wikipedia 15 33 2017-01-01 Kikuyu Wikipedia 10 13 2017-01-01 Silesian Wikipedia 24 227 2017-01-01 Turkmen Wiktionary 3 4 2017-01-01 Greek Wiktionary 3396 21569 2017-01-01 Croatian Wikipedia 15925 93628 2017-01-01 Italian Wikisource 1090 2509 2017-01-01 Sicilian Wiktionary 135 374 2017-01-01 Serbian Wikiquote 60 78 2017-01-01 Irish Wikibooks 1 1 2017-01-01 Indonesian Wikipedia 77738 391272 2017-01-01 Indonesian Wiktionary 606 1366 2017-01-01 Low Saxon Wiktionary 7 16 2017-01-01 Turkmen Wikipedia 140 403 2017-01-01 Romanian Wikisource 383 889 2017-01-01 Swati Wiktionary 0 6 2017-01-01 Mingrelian Wikipedia 38 266 2017-01-01 Afrikaans Wikipedia 2047 8379 2017-01-01 Neapolitan Wikipedia 86 449 2017-01-01 Azerbaijani Wikibooks 64 100 2017-01-01 Welsh Wiktionary 2 2 2017-01-01 Hausa Wikipedia 80 142 2017-01-01 Serbo-Croatian Wikipedia 6045 35143 2017-01-01 Upper Sorbian Wiktionary 4 7 2017-01-01 Ilokano Wikipedia 23 104 2017-01-01 Eastern Punjabi Wiktionary 1 1 2017-01-01 Galician Wiktionary 8 61 2017-01-01 Serbian Wikibooks 17 22 2017-01-01 Swedish Wikiquote 101 270 2017-01-01 German Arbitration Committee wiki 13 16 2017-01-01 Tamil Wiktionary 1260 6045 2017-01-01 Arabic Wikibooks 2028 3994 2017-01-01 Albanian Wikipedia 8396 32996 2017-01-01 Chinese Wikivoyage 106 159 2017-01-01 Arabic Wikiquote 597 1552 2017-01-01 Tibetan Wikipedia 168 438 2017-01-01 Cherokee Wiktionary 1 1 2017-01-01 Spanish Wikiquote 1793 4741 2017-01-01 Italian Wikiversity 268 633 2017-01-01 Spanish Wikibooks 944 1685 2017-01-01 Marathi Wikisource 34 64 2017-01-01 Tatar Wikipedia 72 498 2017-01-01 Gothic Wikipedia 11 23 2017-01-01 Italian Wikiquote 1937 10198 2017-01-01 Ligurian Wikipedia 26 114 2017-01-01 Kirundi Wikipedia 9 15 2017-01-01 Ukrainian Wikimedia Chapter 33 71 2017-01-01 Walloon Wiktionary 30 268 2017-01-01 Latvian Wikipedia 4711 25555 2017-01-01 Sranan Wikipedia 2 9 2017-01-01 Acehnese Wikipedia 130 264 2017-01-01 Inuktitut Wikipedia 28 39 2017-01-01 Zulu Wikipedia 64 98 2017-01-01 Samogitian Wikipedia 20 32 2017-01-01 Zazaki Wikipedia 34 319 2017-01-01 Armenian Wiktionary 61 258 2017-01-01 Icelandic Wikipedia 1264 7691 2017-01-01 Japanese Wikibooks 1080 1570 2017-01-01 Vietnamese Wikipedia 56887 267686 2017-01-01 Gilaki Wikipedia 9 103 2017-01-01 Kinyarwanda Wikipedia 171 364 2017-01-01 Sinhalese Wikipedia 3468 9237 2017-01-01 Ukrainian Wikivoyage 22 48 2017-01-01 Adyghe Wikipedia 40 53 2017-01-01 Corsican Wiktionary 300 492 2017-01-01 Old Church Slavonic Wikipedia 39 73 2017-01-01 Estonian Wiktionary 87 386 2017-01-01 Italian Wikibooks 546 1076 2017-01-01 Arabic Wikinews 1017 2168 2017-01-01 Kazakh Wikipedia 3778 16704 2017-01-01 Russian Wikibooks 365 660 2017-01-01 Tamil Wikinews 74 100 2017-01-01 Indonesian Wikiquote 43 79 2017-01-01 Greenlandic Wiktionary 6 8 2017-01-01 Kapampangan Wikipedia 48 176 2017-01-01 Gujarati Wikisource 67 72 2017-01-01 Northern Luri Wikipedia 6 30 2017-01-01 Malayalam Wiktionary 153 565 2017-01-01 Swedish Wiktionary 2172 15358 2017-01-01 Bishnupriya Manipuri Wikipedia 57 169 2017-01-01 Kashmiri Wikipedia 29 37 2017-01-01 Portuguese Wikinews 487 1325 2017-01-01 Telugu Wikisource 336 445 2017-01-01 Ripuarian Wikipedia 70 256 2017-01-01 Dutch Wiktionary 880 5298 2017-01-01 Romanian Wikipedia 39099 221473 2017-01-01 Persian Wikinews 5 13 2017-01-01 Italian Wiktionary 1808 8512 2017-01-01 Kirghiz Wiktionary 6 18 2017-01-01 Sanskrit Wikipedia 983 3018 2017-01-01 Tibetan Wiktionary 1 1 2017-01-01 Spanish Wikipedia 846400 4267243 2017-01-01 Hungarian Wikiquote 297 512 2017-01-01 Erzya Wikipedia 23 51 2017-01-01 Burmese Wikibooks 12 12 2017-01-01 Romanian Wikinews 23 26 2017-01-01 Sinhalese Wiktionary 1 1 2017-01-01 Arabic Wikiversity 689 1148 2017-01-01 Bosnian Wikipedia 4228 21226 2017-01-01 Malay Wikibooks 12 14 2017-01-01 NA Wikimedia OTRS system 32 52 2017-01-01 Sindhi Wiktionary 2 5 2017-01-01 NA Wikispecies 1150 5083 2017-01-01 Albanian Wiktionary 211 1282 2017-01-01 Chechen Wikipedia 99 299 2017-01-01 Hill Mari Wikipedia 2 31 2017-01-01 Dutch Wikipedia 190397 1290624 2017-01-01 Sicilian Wikipedia 206 967 2017-01-01 Swedish Wikiversity 72 113 2017-01-01 Central Bicolano Wikipedia 69 305 2017-01-01 Polish Wiktionary 4268 31212 2017-01-01 Serbian Wikisource 116 228 2017-01-01 Uyghur Wikipedia 245 546 2017-01-01 Burmese Wiktionary 39 83 2017-01-01 Gan Wikipedia 171 417 2017-01-01 Hungarian Wikibooks 55 130 2017-01-01 Ido Wiktionary 41 733 2017-01-01 Maori Wikipedia 121 189 2017-01-01 Finnish Wikimedia Chapter 10 13 2017-01-01 Konkani Wikipedia 29 78 2017-01-01 Armenian Wikibooks 4 6 2017-01-01 Malagasy Wiktionary 0 34 2017-01-01 Turkish Wikisource 300 731 2017-01-01 French Wikiversity 2044 3937 2017-01-01 Hebrew Wikiquote 875 2494 2017-01-01 Aymara Wikipedia 41 89 2017-01-01 Czech Wikiquote 388 884 2017-01-01 German Wiktionary 7688 74060 2017-01-01 Yiddish Wiktionary 6 7 2017-01-01 Haitian Wikipedia 73 242 2017-01-01 Marathi Wikipedia 26963 51872 2017-01-01 Quechua Wikipedia 14 249 2017-01-01 Lombard Wikipedia 79 544 2017-01-01 Muscogee Wikipedia 10 10 2017-01-01 Portuguese Wikiversity 161 421 2017-01-01 Ukrainian Wikiquote 99 219 2017-01-01 Estonian Wikipedia 9517 56928 2017-01-01 Korean Wiktionary 562 2019 2017-01-01 Georgian Wikipedia 9804 36027 2017-01-01 Lao Wikipedia 149 403 2017-01-01 Catalan Wikisource 53 107 2017-01-01 Hebrew Wikibooks 1741 2432 2017-01-01 Slovenian Wiktionary 29 77 2017-01-01 Telugu Wikipedia 11368 26022 2017-01-01 Asturian Wikipedia 396 1309 2017-01-01 Czech Wikibooks 202 301 2017-01-01 Hindi Wikibooks 962 1135 2017-01-01 Bengali Wikisource 253 473 2017-01-01 Chavacano Wikipedia 27 37 2017-01-01 Voro Wikipedia 1 10 2017-01-01 Japanese Wikipedia 492553 2557142 2017-01-01 Luganda Wikipedia 514 805 2017-01-01 Lithuanian Wikibooks 48 95 2017-01-01 Portuguese Wiktionary 1318 6377 2017-01-01 Tarantino Wikipedia 5 11 2017-01-01 Assamese Wikisource 1 1 2017-01-01 Tagalog Wiktionary 297 856 2017-01-01 Buginese Wikipedia 6 23 2017-01-01 Franco-Provencal Wikipedia 36 114 2017-01-01 NA Incubator for new wikis 1281 1900 2017-01-01 Low Saxon Wikipedia 150 800 2017-01-01 Western Punjabi Wikipedia 117 588 2017-01-01 Swati Wikipedia 11 21 2017-01-01 Tok Pisin Wikipedia 41 95 2017-01-01 Spanish Wikisource 1020 2348 2017-01-01 Russian Wikisource 1274 3460 2017-01-01 Vietnamese Wikivoyage 17 50 2017-01-01 Greek Wikipedia 39099 171912 2017-01-01 French Wiktionary 19184 118211 2017-01-01 Kurdish (Kurmanji) Wikipedia 398 2123 2017-01-01 Pashto Wikipedia 496 1242 2017-01-01 Swedish Wikivoyage 14 43 2017-01-01 Thai Wikisource 219 454 2017-01-01 Xhosa Wikipedia 8 24 2017-01-01 German Wikinews 109 255 2017-01-01 Hebrew Wiktionary 3166 9275 2017-01-01 Slovak Wikipedia 18657 96492 2017-01-01 NA Wikidata 322304 462146 2017-01-01 Cantonese Wikipedia 1056 3083 2017-01-01 Egyptian Arabic Wikipedia 3269 12814 2017-01-01 Hungarian Wikipedia 55502 367734 2017-01-01 Aromanian Wikipedia 5 21 2017-01-01 Min Dong Wikipedia 105 192 2017-01-01 Cherokee Wikipedia 30 53 2017-01-01 Igbo Wikipedia 7330 8254 2017-01-01 Khmer Wikipedia 1292 3660 2017-01-01 Dutch Wikivoyage 31 173 2017-01-01 Dzongkha Wikipedia 7 22 2017-01-01 Fula Wikipedia 8 10 2017-01-01 Irish Wikipedia 238 982 2017-01-01 Italian Wikivoyage 222 1666 2017-01-01 Polish Wikivoyage 151 370 2017-01-01 Cheyenne Wikipedia 5 11 2017-01-01 Corsican Wikipedia 41 143 2017-01-01 Azerbaijani Wiktionary 8 31 2017-01-01 Danish Wikipedia 33682 200024 2017-01-01 Ido Wikipedia 92 335 2017-01-01 Livvi-Karelian Wikipedia 7 62 2017-01-01 NA Wikimania 2015 0 6 2017-01-01 Amharic Wiktionary 2 2 2017-01-01 Macedonian Wikisource 17 20 2017-01-01 Spanish (Mexico) Wikimedia Chapter 29 30 2017-01-01 Picard Wikipedia 10 66 2017-01-01 Nepali Wikipedia 5082 13830 2017-01-01 Romanian Wiktionary 65 818 2017-01-01 Sardinian Wikipedia 71 188 2017-01-01 Navajo Wikipedia 33 74 2017-01-01 Sesotho Wikipedia 501 538 2017-01-01 Thai Wikiquote 20 64 2017-01-01 Georgian Wikiquote 48 61 2017-01-01 Kurdish (Sorani) Wikipedia 1989 7240 2017-01-01 Pangasinan Wikipedia 29 89 2017-01-01 Newar Wikipedia 509 966 2017-01-01 Norwegian (Nynorsk) Wikipedia 1827 10977 2017-01-01 Khmer Wikibooks 25 35 2017-01-01 Tswana Wikipedia 7 19 2017-01-01 Chinese Wikisource 1462 2784 2017-01-01 Danish Wikimedia Chapter 45 49 2017-01-01 Finnish Wikisource 67 390 2017-01-01 Simple English Wikiquote 59 87 2017-01-01 Uzbek Wikipedia 1982 9729 2017-01-01 Vepsian Wikipedia 18 122 2017-01-01 Bengali Wikibooks 126 165 2017-01-01 Breton Wikiquote 0 3 2017-01-01 Czech Wikiversity 94 148 2017-01-01 Japanese Wikisource 184 254 2017-01-01 Kazakh Wikibooks 8 10 2017-01-01 Korean Wikiquote 134 148 2017-01-01 Macedonian Wikipedia 6085 16944 2017-01-01 Thai Wikibooks 119 200 2017-01-01 Croatian Wiktionary 90 304 2017-01-01 Latin Wikisource 24 51 2017-01-01 Turkish Wikibooks 452 769 2017-01-01 Czech Wikisource 341 743 2017-01-01 Persian Wikiquote 788 2009 2017-01-01 Urdu Wikipedia 8822 31764 2017-01-01 NA Wikimania 2016 43 95 2017-01-01 Extremaduran Wikipedia 28 72 2017-01-01 Finnish Wikiquote 121 726 2017-01-01 Hawaiian Wikipedia 24 69 2017-01-01 Kannada Wikisource 70 94 2017-01-01 Finnish Wikibooks 74 171 2017-01-01 Kannada Wikipedia 12794 22870 2017-01-01 Maltese Wikipedia 100 265 2017-01-01 Nepali Wiktionary 100 194 2017-01-01 Russian Wikiversity 225 382 2017-01-01 Albanian Wikiquote 13 41 2017-01-01 Hebrew Wikivoyage 205 275 2017-01-01 Papiamentu Wikipedia 11 67 2017-01-01 Albanian Wikibooks 28 68 2017-01-01 Marathi Wiktionary 24 44 2017-01-01 Ukrainian Wikisource 27 57 2017-01-01 Persian Wikibooks 328 570 2017-01-01 Finnish Wikinews 6 9 2017-01-01 West Frisian Wikipedia 344 1319 2017-01-01 Bambara Wikipedia 4 14 2017-01-01 Greek Wikiversity 67 164 2017-01-01 Ewe Wikipedia 37 68 2017-01-01 English Wikiversity 1951 5110 2017-01-01 Sundanese Wikiquote 5 5 2017-01-01 Assamese Wikipedia 291 946 2017-01-01 Belarusian Wikipedia 1091 4496 2017-01-01 NA Wikimedia Foundation wiki 7102 9717 2017-01-01 Malayalam Wikipedia 18983 55355 2017-01-01 Oriya Wiktionary 29 34 2017-01-01 Slovak Wikibooks 13 22 2017-01-01 Sundanese Wikipedia 155 651 2017-01-01 Norwegian (Bokmal) Wikiquote 14 41 2017-01-01 Swahili Wiktionary 18 32 2017-01-01 Tajik Wikipedia 663 1989 2017-01-01 English Wikipedia 6704726 46910365 2017-01-01 Hungarian Wiktionary 369 1607 2017-01-01 Lezgian Wikipedia 59 133 2017-01-01 Norwegian (Bokmal) Wikibooks 0 1 2017-01-01 Sinhalese Wikibooks 53 59 2017-01-01 Swahili Wikibooks 2 2 2017-01-01 Friulian Wikipedia 33 89 2017-01-01 French Wikivoyage 1274 2435 2017-01-01 Twi Wiktionary 12 12 2017-01-01 Karakalpak Wikipedia 36 81 2017-01-01 Kurdish (Kurmanji) Wiktionary 200 2909 2017-01-01 Latin Wikipedia 1125 5871 2017-01-01 Polish Wikimedia Chapter 58 96 2017-01-01 Sanskrit Wikibooks 1 6 2017-01-01 Sanskrit Wikisource 169 310 2017-01-01 Telugu Wiktionary 347 2479 2017-01-01 Classical Chinese Wikipedia 557 1208 2017-01-01 NA Incubator for Wikiversities 76 133 2017-01-01 Kabardian Wikipedia 19 32 2017-01-01 Waray Wikipedia 227 741 2017-01-01 NA Wikimania 2017 35 39 2017-01-01 Greek Wikibooks 57 97 2017-01-01 Meadow Mari Wikipedia 9 42 2017-01-01 Tamil Wikisource 245 324 2017-01-01 Chinese Wikinews 75 169 2017-01-01 Arabic Wikipedia 450077 1722847 2017-01-01 Northern Sotho Wikipedia 39 68 2017-01-01 Piedmontese Wikipedia 124 213 2017-01-01 Northern Sami Wikipedia 114 240 2017-01-01 Turkish Wiktionary 5694 28390 2017-01-01 Akan Wikipedia 150 227 2017-01-01 Komi Wikipedia 5 35 2017-01-01 Swedish Wikipedia 129588 1059429 2017-01-01 Saterland Frisian Wikipedia 83 201 2017-01-01 NA Strategy wiki 5 6 2017-01-01 Wolof Wikipedia 7 57 2017-01-01 Spanish Wikiversity 199 341 2017-01-01 Icelandic Wikibooks 26 45 2017-01-01 Urdu Wiktionary 28 45 2017-01-01 Vietnamese Wikiquote 393 666 2017-01-01 Afrikaans Wiktionary 228 486 2017-01-01 Aramaic Wikipedia 21 59 2017-01-01 Hebrew Wikipedia 150942 540225 2017-01-01 Nuosu Wikipedia 24 26 2017-01-01 Armenian Wikisource 230 595 2017-01-01 Kabyle Wikipedia 23 142 2017-01-01 Ossetian Wikipedia 15 64 2017-01-01 Catalan Wiktionary 224 1301 2017-01-01 Fiji Hindi Wikipedia 386 881 2017-01-01 Kongo Wikipedia 72 115 2017-01-01 Estonian Wikisource 20 31 2017-01-01 Gujarati Wikipedia 7303 14490 2017-01-01 Nepali Wikibooks 2 4 2017-01-01 Danish Wikiquote 50 76 2017-01-01 Galician Wikisource 105 107 2017-01-01 Shona Wikipedia 266 744 2017-01-01 Anglo-Saxon Wiktionary 0 1 2017-01-01 Serbo-Croatian Wiktionary 18 189 2017-01-01 Wu Wikipedia 299 703 2017-01-01 Aragonese Wiktionary 11 21 2017-01-01 Romansh Wiktionary 3 3 2017-01-01 Simple English Wiktionary 281 1446 2017-01-01 Tuvan Wikipedia 15 61 2017-01-01 Catalan Wikipedia 14013 102099 2017-01-01 Scottish Gaelic Wikipedia 24 216 2017-01-01 Lojban Wikipedia 11 44 2017-01-01 Russian Wiktionary 5916 70724 2017-01-01 Yoruba Wikipedia 86 141 2017-01-01 Chichewa Wikipedia 18 29 2017-01-01 Chinese Wikiquote 786 1198 2017-01-01 Bengali Wiktionary 77 127 2017-01-01 Malayalam Wikiquote 41 48 2017-01-01 Western Punjabi Wiktionary 0 5 2017-01-01 Pontic Wikipedia 57 87 2017-01-01 Chinese Wikibooks 561 752 2017-01-01 English Arbitration Committee wiki 2 3 2017-01-01 German Wikiversity 69 187 2017-01-01 Esperanto Wikisource 3 29 2017-01-01 Mirandese Wikipedia 3 24 2017-01-01 Vietnamese Wikisource 29 134 2017-01-01 Catalan Wikinews 4 5 2017-01-01 Norfolk Wikipedia 27 88 2017-01-01 Zhuang Wikipedia 8 28 2017-01-01 Bulgarian Wikipedia 26732 137852 2017-01-01 Fijian Wikipedia 21 32 2017-01-01 Icelandic Wiktionary 59 322 2017-01-01 Mongolian Wikipedia 3418 11277 2017-01-01 Asturian Wiktionary 9 27 2017-01-01 Banyumasan Wikipedia 38 39 2017-01-01 Minangkabau Wikipedia 46 203 2017-01-01 Polish Wikisource 613 1966 2017-01-01 Slovenian Wikipedia 9054 46815 2017-01-01 Cree Wikipedia 5 7 2017-01-01 Japanese Wiktionary 1225 5053 2017-01-01 Turkish Wikipedia 165925 948403 2017-01-01 Urdu Wikiquote 5 7 2017-01-01 Amharic Wikipedia 613 1540 2017-01-01 Arabic Wikisource 3986 8495 2017-01-01 Cree Wikiquote 1 1 2017-01-01 Danish Wikibooks 18 37 2017-01-01 Interlingua Wiktionary 2 15 2017-01-01 Lithuanian Wikipedia 10623 56740 2017-01-01 Norman Wikipedia 11 70 2017-01-01 Sundanese Wiktionary 2 2 2017-01-01 Chinese Wiktionary 1478 6136 2017-01-01 Divehi Wikipedia 47 120 2017-01-01 Bosnian Wikiquote 6 27 2017-01-01 Hiri Motu Wikipedia 1 1 2017-01-01 Inupiak Wikipedia 33 46 2017-01-01 Polish Wikinews 39 56 2017-01-01 Gujarati Wikiquote 3 3 2017-01-01 Dutch Wikimedia Chapter 0 1 2017-01-01 Georgian Wiktionary 41 64 2017-01-01 Kannada Wiktionary 365 1171 2017-01-01 Novial Wikipedia 40 118 2017-01-01 Bambara Wikiquote 2 2 2017-01-01 Persian Wikivoyage 125 385 2017-01-01 Kashmiri Wiktionary 2 2 2017-01-01 Divehi Wiktionary 0 1 2017-01-01 English Wikivoyage 4771 15894 2017-01-01 Hebrew Wikisource 1983 5503 2017-01-01 Latgalian Wikipedia 10 20 2017-01-01 Norwegian (Bokmal) Wikisource 52 113 2017-01-01 Hindi Wikipedia 102232 212204 2017-01-01 NA Office wiki 8 42 2017-01-01 Bosnian Wikibooks 10 11 2017-01-01 Tulu Wikipedia 0 9 2017-01-01 Azerbaijani Wikiquote 51 192 2017-01-01 Pashto Wiktionary 1 1 2017-01-01 Oromo Wikipedia 85 210 2017-01-01 NA Wikimedia Outreach 27 48 2017-01-01 Telugu Wikibooks 13 13 2017-01-01 Telugu Wikiquote 2 2 2017-01-01 Slovenian Wikiquote 8 27 2017-01-01 Swedish Wikibooks 64 149 2017-01-01 Kanuri Wikipedia 20 20 2017-01-01 Sanskrit Wiktionary 542 1002 2017-01-01 Croatian Wikisource 19 71 2017-01-01 Tajik Wikibooks 1 2 2017-01-01 Scottish Gaelic Wiktionary 14 16 2017-01-01 Maori Wiktionary 3 7 2017-01-01 Yiddish Wikipedia 69 560 2017-01-01 Bulgarian Wiktionary 557 1818 2017-01-01 NA Login wiki 7 7 2017-01-01 Latvian Wiktionary 12 40 2017-01-01 Dutch Wikiquote 260 427 2017-01-01 Finnish Wikivoyage 16 54 2017-01-01 Limburgish Wiktionary 2 2 2017-01-01 Bislama Wikipedia 9 20 2017-01-01 Russian Wikiquote 1752 6065 2017-01-01 Japanese Wikiquote 83 105 2017-01-01 Bashkir Wikipedia 127 460 2017-01-01 Esperanto Wikiquote 17 27 2017-01-01 Breton Wikipedia 684 1424 2017-01-01 Burmese Wikipedia 3109 8394 2017-01-01 Dutch Wikibooks 597 986 2017-01-01 Tumbuka Wikipedia 21 45 2017-01-01 Nahuatl Wikipedia 30 115 2017-01-01 Catalan Wikimedia Chapter 22 26 2017-01-01 Hakka Wikipedia 21 94 2017-01-01 Marshallese Wikipedia 8 8 2017-01-01 Romanian Wikiquote 95 122 2017-01-01 Tagalog Wikipedia 13617 45846 2017-01-01 Romanian Wikibooks 17 23 2017-01-01 Ladino Wikipedia 186 414 2017-01-01 Turkish Wikimedia Chapter 40 51 2017-01-01 Breton Wikimedia Chapter 9 10 2017-01-01 Interlingue Wikipedia 9 89 2017-01-01 Japanese Wikinews 55 63 2017-01-01 Vietnamese Wiktionary 1102 8651 2017-01-01 Armenian Wikiquote 33 120 2017-01-01 Indonesian Wikibooks 256 473 2017-01-01 Lingala Wikipedia 27 64 2017-01-01 Serbian Wikipedia 21044 119137 2017-01-01 Esperanto Wiktionary 232 856 2017-01-01 Pali Wikipedia 6 10 2017-01-01 Sakha Wikipedia 6 100 2017-01-01 Greek Wikivoyage 102 133 2017-01-01 Eastern Punjabi Wikipedia 1590 4164 2017-01-01 Lithuanian Wiktionary 66 210 2017-01-01 Udmurt Wikipedia 5 24 2017-01-01 Arabic Wiktionary 1250 3124 2017-01-01 Chuvash Wikipedia 53 182 2017-01-01 Lithuanian Wikiquote 111 196 2017-01-01 Korean Wikiversity 1 1 2017-01-01 Malagasy Wikibooks 7 8 2017-01-01 NA Test Wikipedia 115 294 2017-01-01 Belarusian Wiktionary 8 8 2017-01-01 Breton Wiktionary 184 450 2017-01-01 Faroese Wiktionary 3 3 2017-01-01 Fijian Wiktionary 1 10 2017-01-01 Hindi Wikiquote 271 310 2017-01-01 Greenlandic Wikipedia 33 96 2017-01-01 Luxembourgish Wiktionary 5 8 2017-01-01 Norwegian (Bokmal) Wikinews 0 2 2017-01-01 Palatinate German Wikipedia 46 115 2017-01-01 Northern Sami Wikimedia Chapter 6 26 2017-01-01 Danish Wikisource 3 6 2017-01-01 Ukrainian Wikibooks 13 22 2017-01-01 Estonian Wikimedia Chapter 8 8 2017-01-01 Lao Wiktionary 1 2 2017-01-01 Scots Wikipedia 268 1531 2017-01-01 Norwegian (Bokmal) Wiktionary 325 1630 2017-01-01 Faroese Wikipedia 141 478 2017-01-01 West Flemish Wikipedia 80 445 2017-01-01 Persian Wikisource 1103 1718 2017-01-01 NA Wikitech 236 460 2017-01-01 NA Historic wiki 64 76 2017-01-01 Tajik Wiktionary 71 137 2017-01-01 Turkish Wikiquote 972 3895 2017-01-01 Catalan Wikiquote 101 483 2017-01-01 Catalan Wikibooks 57 70 2017-01-01 English Wikisource 3984 12219 2017-01-01 Albanian Wikinews 1 1 2017-01-01 Azerbaijani Wikipedia 13851 58250 2017-01-01 Emilian-Romagnol Wikipedia 48 218 2017-01-01 Hebrew Wikinews 22 29 2017-01-01 Greek Wikinews 2 2 2017-01-01 Japanese Wikiversity 3 4 2017-01-01 Malay Wikipedia 13632 62846 2017-01-01 Basque Wikipedia 1635 9383 2017-01-01 Eastern Punjabi Wikibooks 2 2 2017-01-01 Gagauz Wikipedia 51 114 2017-01-01 Tagalog Wikibooks 675 1282 2017-01-01 German Wikivoyage 1143 5172 2017-01-01 Tatar Wiktionary 30 39 2017-01-01 Korean Wikibooks 43 57 2017-01-01 Portuguese Wikipedia 354282 2105200 2017-01-01 Twi Wikipedia 16 23 2017-01-01 Afar Wikipedia 4801 4810 2017-01-01 Portuguese Wikivoyage 50 205 2017-01-01 Dzongkha Wiktionary 1 1 2017-01-01 Slovak Wikiquote 83 300 2017-01-01 Tetum Wikipedia 4 25 2017-01-01 Georgian Wikibooks 9 17 2017-01-01 Khmer Wiktionary 71 348 2017-01-01 Basque Wiktionary 11 28 2017-01-01 Slovak Wikisource 17 22 2017-01-01 Simple English Wikibooks 52 58 2017-01-01 Volapuk Wiktionary 1 17 2017-01-01 North Frisian Wikipedia 55 153 2017-01-01 Wolof Wiktionary 20 30 2017-01-01 Estonian Wikiquote 2 7 2017-01-01 Gujarati Wiktionary 15 20 2017-01-01 Indonesian Wikisource 15 78 2017-01-01 Tongan Wikipedia 11 31 2017-01-01 Sundanese Wikibooks 1 1 2017-01-01 Venetian Wiktionary 49 135 2017-01-01 Buryat Wikipedia 18 64 2017-01-01 Greek Wikiquote 35 154 2017-01-01 Greek Wikisource 415 668 2017-01-01 Serbian Wiktionary 89 449 2017-01-01 Turkish Wikinews 5 14 2017-01-01 Zeelandic Wikipedia 76 153 2017-01-01 Estonian Wikibooks 0 2 2017-01-01 Moksha Wikipedia 14 20 2017-01-01 Romanian Wikivoyage 4 5 2017-01-01 Marathi Wikiquote 22 32 2017-01-01 Nahuatl Wiktionary 0 1 2017-01-01 Malayalam Wikibooks 22 36 2017-01-01 Vietnamese Wikibooks 52 95 2017-01-01 Marathi Wikibooks 76 92 2017-01-01 Croatian Wikiquote 20 43 2017-01-01 Occitan Wiktionary 37 134 ``` It took 15m 1s to generate this report. ### Report 21 of 44 _User-perceived load times when searching on Android and iOS apps_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/search/app_load_times.tsv**: ``` date platform Median 95th percentile 99th percentile 2014-12-05 Android 484 1268.12 2516.2 2014-12-06 Android 472 1178 2177.56 ... 2017-01-01 Android 392 1210 3384.86000000002 2017-01-01 iOS 672 1877 6864.72000000003 ... 2017-02-19 2017-02-20 ``` 1. Executing report "app_load_times" from the metrics/search module. 2. About to run the following command: `sh modules/metrics/search/app_load_times 2017-01-01 2017-01-02` **Output**: ``` date platform Median 95th percentile 99th percentile ``` It took 2s to generate this report. ### Report 22 of 44 _Clicks to Wikipedia mobile apps and list of apps_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/portal/app_link_clicks.tsv**: ``` date device clicked clicks 2016-11-01 Mobile iOS app link 1 2016-11-02 Desktop Android app link 3 ... 2017-01-01 Desktop Android app link 2 2017-01-01 Desktop iOS app link 1 2017-01-01 Desktop List of apps 2 2017-01-01 Mobile Android app link 1 2017-01-01 Mobile iOS app link 2 2017-01-01 Mobile List of apps 2 ... 2017-02-20 Mobile iOS app link 2 2017-02-20 Mobile List of apps 3 ``` 1. Executing report "app_link_clicks" from the metrics/portal module. 2. Filling in the timestamp placeholders in the SQL query. 3. About to run the following query: ```SQL SELECT DATE('20170101') AS `date`, CASE WHEN ( INSTR(userAgent, 'Android') > 0 OR INSTR(userAgent, 'Mobile') > 0 OR INSTR(userAgent, 'iOS') > 0 OR INSTR(userAgent, 'Phone') > 0 ) THEN 'Mobile' ELSE 'Desktop' END AS device, CASE WHEN INSTR(event_destination, 'itunes.apple.com') > 0 THEN 'iOS app link' WHEN INSTR(event_destination, 'play.google.com') > 0 THEN 'Android app link' ELSE 'List of apps' END AS clicked, COUNT(*) AS clicks FROM WikipediaPortal_15890769 WHERE timestamp >= '20170101' AND timestamp < '20170102' AND event_cohort = 'baseline' AND event_event_type = 'clickthrough' AND event_section_used = 'other projects' AND ( INSTR(event_destination, 'itunes.apple.com') > 0 OR INSTR(event_destination, 'play.google.com') > 0 OR event_destination = 'https://en.wikipedia.org/wiki/List_of_Wikipedia_mobile_applications' ) GROUP BY `date`, device, clicked; ``` **Output**: ``` date device clicked clicks 2017-01-01 Desktop Android app link 2 2017-01-01 Desktop iOS app link 1 2017-01-01 Desktop List of apps 2 2017-01-01 Mobile Android app link 1 2017-01-01 Mobile iOS app link 2 2017-01-01 Mobile List of apps 2 ``` It took 1s to generate this report. ### Report 23 of 44 _Wikipedia.org Portal visitors' browsers_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/portal/user_agent_data.tsv**: ``` date browser version percent 2016-01-20 IE 11 9.01 2016-01-20 Chrome 47 24.2 ... Warning: 26 parsing failures. row col expected actual 1709 version an integer Other 3350 version an integer Other 3699 version an integer Other 4534 version an integer Other 5309 version an integer Other .... ....... .......... ...... See problems(...) for more details. 2017-01-01 Mobile Safari 10 11.75 2017-01-01 Chrome 55 19.21 2017-01-01 Chrome 49 1.22 2017-01-01 Chrome Mobile 55 6.74 2017-01-01 Chrome Mobile 46 0.71 2017-01-01 Safari 10 2.93 2017-01-01 IE 11 4.28 2017-01-01 Android 4 2.61 2017-01-01 Chrome 41 3.15 2017-01-01 Firefox 50 6.07 2017-01-01 Firefox 24 1.53 2017-01-01 Edge 14 2.47 2017-01-01 Mobile Safari 8 0.81 2017-01-01 Mobile Safari 9 2.78 2017-01-01 Chrome Mobile 30 2.44 2017-01-01 Chrome Mobile 43 1.17 2017-01-01 Amazon Silk 54 0.58 2017-01-01 Chrome Mobile 38 0.61 2017-01-01 Firefox Mobile 50 0.76 2017-01-01 Samsung Internet 4 2.45 2017-01-01 IE Mobile 11 0.55 2017-01-01 IE Mobile 10 0.64 2017-01-01 Chrome 48 0.92 2017-01-01 Chrome 54 0.62 2017-01-01 Chrome Mobile 50 0.72 2017-01-01 Safari 9 1.2 2017-01-01 Chrome Mobile iOS 55 0.99 2017-01-01 Opera Mobile 37 0.66 2017-01-01 Chrome Mobile 54 0.96 2017-01-01 Firefox 44 0.7 ... 2017-02-20 IE 8 0.89 2017-02-20 Chrome Mobile 43 0.57 ``` 1. Executing report "user_agent_data" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/user_agent_data 2017-01-01 2017-01-02` **Output**: ``` date browser version percent 2017-01-01 Safari 10 3.88 2017-01-01 Mobile Safari 10 12.25 2017-01-01 IE 11 4.42 2017-01-01 Chrome 55 17.05 2017-01-01 Android 4 3.16 2017-01-01 Chrome 41 3.1 2017-01-01 Firefox 50 5.18 2017-01-01 Chrome Mobile 46 0.53 2017-01-01 Firefox 24 2.96 2017-01-01 Chrome 49 1.23 2017-01-01 Chrome Mobile 55 5.94 2017-01-01 Firefox 31 0.69 2017-01-01 Chrome Mobile 30 2.91 2017-01-01 Edge 14 2.26 2017-01-01 Mobile Safari 8 0.88 2017-01-01 Mobile Safari 9 2.71 2017-01-01 Chrome Mobile 43 0.74 2017-01-01 Samsung Internet 2 0.6 2017-01-01 Amazon Silk 54 0.51 2017-01-01 Chrome Mobile 38 0.55 2017-01-01 Firefox Mobile 50 0.74 2017-01-01 Samsung Internet 4 1.99 2017-01-01 IE Mobile 10 0.58 2017-01-01 Chrome 54 0.6 2017-01-01 Chrome Mobile 50 0.6 2017-01-01 Safari 9 1.29 2017-01-01 IE 8 0.74 2017-01-01 Chrome 17 0.67 2017-01-01 Chrome Mobile iOS 55 0.97 2017-01-01 Firefox 38 0.99 2017-01-01 Chrome 30 0.55 2017-01-01 Opera Mobile 37 0.62 2017-01-01 Chrome Mobile 54 0.88 ``` It took 17s to generate this report. ### Report 24 of 44 _Pageviews broken down by referrer class (e.g. internal vs external)_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/portal/referer_data.tsv**: ``` date is_search referer_class search_engine pageviews 2016-02-01 TRUE external (search engine) Yahoo 13161 2016-02-01 TRUE external (search engine) Baidu 8052 ... 2017-01-01 TRUE external (search engine) Baidu 6466 2017-01-01 TRUE external (search engine) Yandex 347 2017-01-01 TRUE external (search engine) Bing 13985 2017-01-01 FALSE none none 18225685 2017-01-01 FALSE external none 52434 2017-01-01 FALSE internal none 21571 2017-01-01 TRUE external (search engine) Google 94461 2017-01-01 TRUE external (search engine) Yahoo 8368 2017-01-01 TRUE external (search engine) DuckDuckGo 1369 ... 2017-01-26 TRUE external (search engine) DuckDuckGo 1702 2017-01-26 TRUE external (search engine) Baidu 4400 ``` 1. Executing report "referer_data" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/referer_data 2017-01-01 2017-01-02` **Output**: ``` date is_search referer_class search_engine pageviews 2017-01-01 FALSE internal none 21571 2017-01-01 TRUE external (search engine) Yandex 347 2017-01-01 TRUE external (search engine) Google 94461 2017-01-01 FALSE none none 18225685 2017-01-01 TRUE external (search engine) Yahoo 8368 2017-01-01 TRUE external (search engine) DuckDuckGo 1369 2017-01-01 TRUE external (search engine) Baidu 6466 2017-01-01 FALSE external none 52434 2017-01-01 TRUE external (search engine) Bing 13985 ``` It took 5m 39s to generate this report. ### Report 25 of 44 _Wikipedia.org Portal pageviews, broken down by high-volume clients vs. low-volume clients_ **Note**: this report is configured to have one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/portal/pageviews.tsv**: ``` date pageviews high_volume low_volume threshold 2016-01-29 15311472 NA NA NA 2016-01-30 13840927 NA NA NA ... 2017-01-01 18424688 3400587 15024101 7496 ... 2017-01-25 28069615 6855121 21214494 12532 2017-01-26 28452000 6999159 21452841 12763 ``` 1. Executing report "pageviews" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/pageviews 2017-01-01 2017-01-02` **Output**: ``` date pageviews high_volume low_volume threshold 2017-01-01 18424688 3400587 15024101 7496 ``` It took 6m 47s to generate this report. ### Report 26 of 44 _Most common action performed on Wikipedia.org Portal per user session_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/portal/most_common_per_visit.tsv**: ``` date section_used visits 2016-05-05 other projects 19 2016-05-05 primary links 387 ... 2017-01-01 other languages 1 2017-01-01 other projects 59 2017-01-01 primary links 807 2017-01-01 search 2933 2017-01-01 secondary links 21 ... 2017-02-20 search 4002 2017-02-20 secondary links 58 ``` 1. Executing report "most_common_per_visit" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/most_common_per_visit 2017-01-01 2017-01-02` **Output**: ``` date section_used visits 2017-01-01 other languages 1 2017-01-01 other projects 59 2017-01-01 primary links 822 2017-01-01 search 3001 2017-01-01 secondary links 21 ``` It took 7s to generate this report. ### Report 27 of 44 _Most common action performed on Wikipedia.org Portal per user session, broken down by country_ **Note**: this report is configured to allow more than one row per day. **Note**: this report is configured to be "rolling" -- 60 maximum number of days allowed in the final dataset. Some of the existing data in **/a/aggregate-datasets/discovery/portal/most_common_country.tsv**: ``` date section_used country visits proportion 2016-12-23 other projects Algeria 1 0.0172 2016-12-23 other projects Angola 4 0.069 ... 2017-01-01 other languages South Africa 1 1 2017-01-01 other projects Angola 3 0.0508 2017-01-01 other projects Bangladesh 2 0.0339 2017-01-01 other projects Cambodia 1 0.0169 2017-01-01 other projects Canada 1 0.0169 2017-01-01 other projects China 6 0.1017 2017-01-01 other projects France 1 0.0169 2017-01-01 other projects Greece 1 0.0169 2017-01-01 other projects Haiti 6 0.1017 2017-01-01 other projects India 6 0.1017 2017-01-01 other projects Indonesia 1 0.0169 2017-01-01 other projects Kenya 1 0.0169 2017-01-01 other projects Madagascar 1 0.0169 2017-01-01 other projects Mexico 3 0.0508 2017-01-01 other projects Morocco 6 0.1017 2017-01-01 other projects Myanmar 5 0.0847 2017-01-01 other projects Nigeria 1 0.0169 2017-01-01 other projects Pakistan 2 0.0339 2017-01-01 other projects Peru 1 0.0169 2017-01-01 other projects Russian Federation 2 0.0339 2017-01-01 other projects South Africa 1 0.0169 2017-01-01 other projects U.S. (Midwest) 1 0.0169 2017-01-01 other projects U.S. (Northeast) 3 0.0508 2017-01-01 other projects U.S. (Pacific) 2 0.0339 2017-01-01 other projects U.S. (South) 1 0.0169 2017-01-01 other projects Zimbabwe 1 0.0169 2017-01-01 primary links Algeria 8 0.0099 2017-01-01 primary links Angola 2 0.0025 2017-01-01 primary links Argentina 3 0.0037 2017-01-01 primary links Australia 8 0.0099 2017-01-01 primary links Austria 5 0.0062 2017-01-01 primary links Azerbaijan 1 0.0012 2017-01-01 primary links Bangladesh 1 0.0012 2017-01-01 primary links Belarus 2 0.0025 2017-01-01 primary links Belgium 8 0.0099 2017-01-01 primary links Belize 1 0.0012 2017-01-01 primary links Bosnia and Herzegovina 2 0.0025 2017-01-01 primary links Brazil 8 0.0099 2017-01-01 primary links Brunei Darussalam 1 0.0012 2017-01-01 primary links Bulgaria 2 0.0025 2017-01-01 primary links Canada 38 0.0471 2017-01-01 primary links Cayman Islands 1 0.0012 2017-01-01 primary links Chile 2 0.0025 2017-01-01 primary links China 26 0.0322 2017-01-01 primary links Colombia 1 0.0012 2017-01-01 primary links Croatia 2 0.0025 2017-01-01 primary links Czechia 8 0.0099 2017-01-01 primary links Denmark 3 0.0037 2017-01-01 primary links Dominican Republic 2 0.0025 2017-01-01 primary links Egypt 8 0.0099 2017-01-01 primary links Estonia 2 0.0025 2017-01-01 primary links Finland 9 0.0112 2017-01-01 primary links France 11 0.0136 2017-01-01 primary links Germany 43 0.0533 2017-01-01 primary links Greece 3 0.0037 2017-01-01 primary links Haiti 2 0.0025 2017-01-01 primary links Honduras 1 0.0012 2017-01-01 primary links Hong Kong 6 0.0074 2017-01-01 primary links Hungary 4 0.005 2017-01-01 primary links Iceland 1 0.0012 2017-01-01 primary links India 17 0.0211 2017-01-01 primary links Indonesia 3 0.0037 2017-01-01 primary links Iran, Islamic Republic of 2 0.0025 2017-01-01 primary links Iraq 2 0.0025 2017-01-01 primary links Ireland 2 0.0025 2017-01-01 primary links Israel 2 0.0025 2017-01-01 primary links Italy 22 0.0273 2017-01-01 primary links Japan 8 0.0099 2017-01-01 primary links Jordan 2 0.0025 2017-01-01 primary links Kazakhstan 1 0.0012 2017-01-01 primary links Korea, Republic of 5 0.0062 2017-01-01 primary links Kyrgyzstan 2 0.0025 2017-01-01 primary links Latvia 3 0.0037 2017-01-01 primary links Luxembourg 1 0.0012 2017-01-01 primary links Macedonia, Republic of 2 0.0025 2017-01-01 primary links Mexico 9 0.0112 2017-01-01 primary links Moldova, Republic of 2 0.0025 2017-01-01 primary links Morocco 4 0.005 2017-01-01 primary links Myanmar 2 0.0025 2017-01-01 primary links Netherlands 19 0.0235 2017-01-01 primary links New Zealand 2 0.0025 2017-01-01 primary links Nigeria 2 0.0025 2017-01-01 primary links Norway 5 0.0062 2017-01-01 primary links Oman 1 0.0012 2017-01-01 primary links Pakistan 9 0.0112 2017-01-01 primary links Peru 4 0.005 2017-01-01 primary links Philippines 6 0.0074 2017-01-01 primary links Poland 11 0.0136 2017-01-01 primary links Portugal 3 0.0037 2017-01-01 primary links Qatar 1 0.0012 2017-01-01 primary links Romania 5 0.0062 2017-01-01 primary links Russian Federation 19 0.0235 2017-01-01 primary links Saudi Arabia 1 0.0012 2017-01-01 primary links Serbia 2 0.0025 2017-01-01 primary links Singapore 6 0.0074 2017-01-01 primary links Slovakia 4 0.005 2017-01-01 primary links Slovenia 1 0.0012 2017-01-01 primary links Somalia 1 0.0012 2017-01-01 primary links South Africa 1 0.0012 2017-01-01 primary links Spain 16 0.0198 2017-01-01 primary links Sri Lanka 1 0.0012 2017-01-01 primary links Sweden 13 0.0161 2017-01-01 primary links Switzerland 10 0.0124 2017-01-01 primary links Syrian Arab Republic 1 0.0012 2017-01-01 primary links Thailand 2 0.0025 2017-01-01 primary links Tunisia 1 0.0012 2017-01-01 primary links Turkey 3 0.0037 2017-01-01 primary links Uganda 2 0.0025 2017-01-01 primary links Ukraine 7 0.0087 2017-01-01 primary links United Arab Emirates 2 0.0025 2017-01-01 primary links United Kingdom 63 0.0781 2017-01-01 primary links U.S. (Midwest) 58 0.0719 2017-01-01 primary links U.S. (Northeast) 63 0.0781 2017-01-01 primary links U.S. (Pacific) 45 0.0558 2017-01-01 primary links U.S. (South) 86 0.1066 2017-01-01 primary links U.S. (West) 8 0.0099 2017-01-01 primary links Venezuela, Bolivarian Republic of 1 0.0012 2017-01-01 primary links Viet Nam 4 0.005 2017-01-01 primary links Yemen 2 0.0025 2017-01-01 search Albania 2 7e-04 2017-01-01 search Algeria 14 0.0048 2017-01-01 search Angola 31 0.0106 2017-01-01 search Argentina 7 0.0024 2017-01-01 search Armenia 1 3e-04 2017-01-01 search Australia 44 0.015 2017-01-01 search Austria 17 0.0058 2017-01-01 search Bangladesh 14 0.0048 2017-01-01 search Belarus 5 0.0017 2017-01-01 search Belgium 15 0.0051 2017-01-01 search Bosnia and Herzegovina 2 7e-04 2017-01-01 search Brazil 11 0.0038 2017-01-01 search Bulgaria 1 3e-04 2017-01-01 search Canada 102 0.0348 2017-01-01 search Chile 1 3e-04 2017-01-01 search China 34 0.0116 2017-01-01 search Colombia 2 7e-04 2017-01-01 search Congo, The Democratic Republic of the 2 7e-04 2017-01-01 search Croatia 4 0.0014 2017-01-01 search Cyprus 2 7e-04 2017-01-01 search Czechia 13 0.0044 2017-01-01 search Denmark 4 0.0014 2017-01-01 search Dominican Republic 4 0.0014 2017-01-01 search Egypt 4 0.0014 2017-01-01 search Fiji 1 3e-04 2017-01-01 search Finland 12 0.0041 2017-01-01 search France 15 0.0051 2017-01-01 search Georgia 1 3e-04 2017-01-01 search Germany 63 0.0215 2017-01-01 search Ghana 1 3e-04 2017-01-01 search Greece 10 0.0034 2017-01-01 search Guatemala 1 3e-04 2017-01-01 search Haiti 4 0.0014 2017-01-01 search Hong Kong 2 7e-04 2017-01-01 search Hungary 10 0.0034 2017-01-01 search Iceland 2 7e-04 2017-01-01 search India 67 0.0228 2017-01-01 search Indonesia 6 0.002 2017-01-01 search Iran, Islamic Republic of 6 0.002 2017-01-01 search Iraq 1 3e-04 2017-01-01 search Ireland 13 0.0044 2017-01-01 search Isle of Man 2 7e-04 2017-01-01 search Israel 8 0.0027 2017-01-01 search Italy 8 0.0027 2017-01-01 search Jamaica 4 0.0014 2017-01-01 search Japan 11 0.0038 2017-01-01 search Jersey 1 3e-04 2017-01-01 search Jordan 1 3e-04 2017-01-01 search Kazakhstan 2 7e-04 2017-01-01 search Kenya 2 7e-04 2017-01-01 search Korea, Republic of 8 0.0027 2017-01-01 search Kuwait 1 3e-04 2017-01-01 search Lebanon 1 3e-04 2017-01-01 search Lithuania 1 3e-04 2017-01-01 search Macedonia, Republic of 2 7e-04 2017-01-01 search Malaysia 22 0.0075 2017-01-01 search Malta 1 3e-04 2017-01-01 search Mauritania 1 3e-04 2017-01-01 search Mexico 13 0.0044 2017-01-01 search Moldova, Republic of 2 7e-04 2017-01-01 search Mongolia 1 3e-04 2017-01-01 search Morocco 50 0.017 2017-01-01 search Myanmar 2 7e-04 2017-01-01 search Nepal 4 0.0014 2017-01-01 search Netherlands 74 0.0252 2017-01-01 search New Zealand 9 0.0031 2017-01-01 search Nigeria 7 0.0024 2017-01-01 search Norway 18 0.0061 2017-01-01 search Oman 6 0.002 2017-01-01 search Other 6 0.002 2017-01-01 search Pakistan 15 0.0051 2017-01-01 search Panama 1 3e-04 2017-01-01 search Philippines 39 0.0133 2017-01-01 search Poland 12 0.0041 2017-01-01 search Portugal 2 7e-04 2017-01-01 search Qatar 1 3e-04 2017-01-01 search Romania 2 7e-04 2017-01-01 search Russian Federation 21 0.0072 2017-01-01 search Saudi Arabia 5 0.0017 2017-01-01 search Senegal 1 3e-04 2017-01-01 search Serbia 2 7e-04 2017-01-01 search Singapore 6 0.002 2017-01-01 search Slovakia 7 0.0024 2017-01-01 search South Africa 11 0.0038 2017-01-01 search Spain 17 0.0058 2017-01-01 search Sri Lanka 1 3e-04 2017-01-01 search Sweden 18 0.0061 2017-01-01 search Switzerland 11 0.0038 2017-01-01 search Taiwan, Province of China 10 0.0034 2017-01-01 search Tajikistan 1 3e-04 2017-01-01 search Thailand 4 0.0014 2017-01-01 search Trinidad and Tobago 1 3e-04 2017-01-01 search Tunisia 5 0.0017 2017-01-01 search Turkey 6 0.002 2017-01-01 search Ukraine 15 0.0051 2017-01-01 search United Arab Emirates 6 0.002 2017-01-01 search United Kingdom 186 0.0634 2017-01-01 search Uruguay 1 3e-04 2017-01-01 search U.S. (Midwest) 310 0.1057 2017-01-01 search U.S. (Northeast) 378 0.1289 2017-01-01 search U.S. (Other) 4 0.0014 2017-01-01 search U.S. (Pacific) 311 0.106 2017-01-01 search U.S. (South) 595 0.2029 2017-01-01 search U.S. (West) 97 0.0331 2017-01-01 search Uzbekistan 2 7e-04 2017-01-01 search Viet Nam 4 0.0014 2017-01-01 search Yemen 1 3e-04 2017-01-01 search Zambia 1 3e-04 2017-01-01 search Zimbabwe 4 0.0014 2017-01-01 secondary links Algeria 1 0.0476 2017-01-01 secondary links Bangladesh 1 0.0476 2017-01-01 secondary links Belgium 1 0.0476 2017-01-01 secondary links China 1 0.0476 2017-01-01 secondary links Greece 1 0.0476 2017-01-01 secondary links India 5 0.2381 2017-01-01 secondary links Morocco 2 0.0952 2017-01-01 secondary links Pakistan 2 0.0952 2017-01-01 secondary links Russian Federation 1 0.0476 2017-01-01 secondary links Singapore 1 0.0476 2017-01-01 secondary links South Africa 1 0.0476 2017-01-01 secondary links Sweden 1 0.0476 2017-01-01 secondary links Thailand 1 0.0476 2017-01-01 secondary links Tunisia 1 0.0476 2017-01-01 secondary links Yemen 1 0.0476 ... 2017-02-20 secondary links U.S. (Midwest) 1 0.0172 2017-02-20 secondary links U.S. (South) 2 0.0345 ``` 1. Executing report "most_common_country" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/most_common_country 2017-01-01 2017-01-02` **Output**: ``` date section_used country visits proportion 2017-01-01 other languages South Africa 1 1 2017-01-01 other projects Angola 3 0.0508 2017-01-01 other projects Bangladesh 2 0.0339 2017-01-01 other projects Cambodia 1 0.0169 2017-01-01 other projects Canada 1 0.0169 2017-01-01 other projects China 6 0.1017 2017-01-01 other projects France 1 0.0169 2017-01-01 other projects Greece 1 0.0169 2017-01-01 other projects Haiti 6 0.1017 2017-01-01 other projects India 6 0.1017 2017-01-01 other projects Indonesia 1 0.0169 2017-01-01 other projects Kenya 1 0.0169 2017-01-01 other projects Madagascar 1 0.0169 2017-01-01 other projects Mexico 3 0.0508 2017-01-01 other projects Morocco 6 0.1017 2017-01-01 other projects Myanmar 5 0.0847 2017-01-01 other projects Nigeria 1 0.0169 2017-01-01 other projects Pakistan 2 0.0339 2017-01-01 other projects Peru 1 0.0169 2017-01-01 other projects Russian Federation 2 0.0339 2017-01-01 other projects South Africa 1 0.0169 2017-01-01 other projects U.S. (Midwest) 1 0.0169 2017-01-01 other projects U.S. (Northeast) 3 0.0508 2017-01-01 other projects U.S. (Pacific) 2 0.0339 2017-01-01 other projects U.S. (South) 1 0.0169 2017-01-01 other projects Zimbabwe 1 0.0169 2017-01-01 primary links Algeria 8 0.0097 2017-01-01 primary links Angola 2 0.0024 2017-01-01 primary links Argentina 3 0.0036 2017-01-01 primary links Australia 8 0.0097 2017-01-01 primary links Austria 5 0.0061 2017-01-01 primary links Azerbaijan 1 0.0012 2017-01-01 primary links Bangladesh 1 0.0012 2017-01-01 primary links Belarus 2 0.0024 2017-01-01 primary links Belgium 9 0.0109 2017-01-01 primary links Belize 1 0.0012 2017-01-01 primary links Bosnia and Herzegovina 2 0.0024 2017-01-01 primary links Brazil 8 0.0097 2017-01-01 primary links Brunei Darussalam 1 0.0012 2017-01-01 primary links Bulgaria 2 0.0024 2017-01-01 primary links Canada 38 0.0462 2017-01-01 primary links Cayman Islands 1 0.0012 2017-01-01 primary links Chile 2 0.0024 2017-01-01 primary links China 27 0.0328 2017-01-01 primary links Colombia 1 0.0012 2017-01-01 primary links Croatia 2 0.0024 2017-01-01 primary links Czechia 8 0.0097 2017-01-01 primary links Denmark 4 0.0049 2017-01-01 primary links Dominican Republic 2 0.0024 2017-01-01 primary links Egypt 8 0.0097 2017-01-01 primary links Estonia 2 0.0024 2017-01-01 primary links Finland 9 0.0109 2017-01-01 primary links France 11 0.0134 2017-01-01 primary links Germany 44 0.0535 2017-01-01 primary links Greece 3 0.0036 2017-01-01 primary links Greenland 1 0.0012 2017-01-01 primary links Haiti 2 0.0024 2017-01-01 primary links Honduras 1 0.0012 2017-01-01 primary links Hong Kong 6 0.0073 2017-01-01 primary links Hungary 4 0.0049 2017-01-01 primary links Iceland 1 0.0012 2017-01-01 primary links India 17 0.0207 2017-01-01 primary links Indonesia 3 0.0036 2017-01-01 primary links Iran, Islamic Republic of 2 0.0024 2017-01-01 primary links Iraq 2 0.0024 2017-01-01 primary links Ireland 2 0.0024 2017-01-01 primary links Israel 2 0.0024 2017-01-01 primary links Italy 23 0.028 2017-01-01 primary links Japan 8 0.0097 2017-01-01 primary links Jordan 2 0.0024 2017-01-01 primary links Kazakhstan 1 0.0012 2017-01-01 primary links Korea, Republic of 5 0.0061 2017-01-01 primary links Kyrgyzstan 2 0.0024 2017-01-01 primary links Latvia 3 0.0036 2017-01-01 primary links Luxembourg 1 0.0012 2017-01-01 primary links Macedonia, Republic of 2 0.0024 2017-01-01 primary links Mexico 9 0.0109 2017-01-01 primary links Moldova, Republic of 2 0.0024 2017-01-01 primary links Morocco 5 0.0061 2017-01-01 primary links Myanmar 2 0.0024 2017-01-01 primary links Netherlands 19 0.0231 2017-01-01 primary links New Zealand 2 0.0024 2017-01-01 primary links Nigeria 2 0.0024 2017-01-01 primary links Norway 5 0.0061 2017-01-01 primary links Oman 1 0.0012 2017-01-01 primary links Pakistan 9 0.0109 2017-01-01 primary links Peru 4 0.0049 2017-01-01 primary links Philippines 6 0.0073 2017-01-01 primary links Poland 11 0.0134 2017-01-01 primary links Portugal 3 0.0036 2017-01-01 primary links Qatar 1 0.0012 2017-01-01 primary links Romania 5 0.0061 2017-01-01 primary links Russian Federation 19 0.0231 2017-01-01 primary links Saudi Arabia 1 0.0012 2017-01-01 primary links Serbia 2 0.0024 2017-01-01 primary links Singapore 6 0.0073 2017-01-01 primary links Slovakia 4 0.0049 2017-01-01 primary links Slovenia 1 0.0012 2017-01-01 primary links Somalia 1 0.0012 2017-01-01 primary links South Africa 1 0.0012 2017-01-01 primary links Spain 16 0.0195 2017-01-01 primary links Sri Lanka 1 0.0012 2017-01-01 primary links Sweden 13 0.0158 2017-01-01 primary links Switzerland 10 0.0122 2017-01-01 primary links Syrian Arab Republic 1 0.0012 2017-01-01 primary links Thailand 2 0.0024 2017-01-01 primary links Tunisia 1 0.0012 2017-01-01 primary links Turkey 3 0.0036 2017-01-01 primary links Uganda 2 0.0024 2017-01-01 primary links Ukraine 7 0.0085 2017-01-01 primary links United Arab Emirates 2 0.0024 2017-01-01 primary links United Kingdom 64 0.0779 2017-01-01 primary links U.S. (Midwest) 60 0.073 2017-01-01 primary links U.S. (Northeast) 64 0.0779 2017-01-01 primary links U.S. (Pacific) 46 0.056 2017-01-01 primary links U.S. (South) 88 0.1071 2017-01-01 primary links U.S. (West) 8 0.0097 2017-01-01 primary links Venezuela, Bolivarian Republic of 1 0.0012 2017-01-01 primary links Viet Nam 5 0.0061 2017-01-01 primary links Yemen 2 0.0024 2017-01-01 search Albania 2 7e-04 2017-01-01 search Algeria 14 0.0047 2017-01-01 search Angola 31 0.0103 2017-01-01 search Argentina 8 0.0027 2017-01-01 search Armenia 1 3e-04 2017-01-01 search Australia 46 0.0153 2017-01-01 search Austria 17 0.0057 2017-01-01 search Bangladesh 14 0.0047 2017-01-01 search Belarus 5 0.0017 2017-01-01 search Belgium 15 0.005 2017-01-01 search Bosnia and Herzegovina 2 7e-04 2017-01-01 search Brazil 11 0.0037 2017-01-01 search Bulgaria 1 3e-04 2017-01-01 search Canada 104 0.0347 2017-01-01 search Chile 3 0.001 2017-01-01 search China 34 0.0113 2017-01-01 search Colombia 2 7e-04 2017-01-01 search Congo, The Democratic Republic of the 2 7e-04 2017-01-01 search Croatia 4 0.0013 2017-01-01 search Cyprus 2 7e-04 2017-01-01 search Czechia 13 0.0043 2017-01-01 search Denmark 4 0.0013 2017-01-01 search Dominican Republic 4 0.0013 2017-01-01 search Egypt 4 0.0013 2017-01-01 search Fiji 1 3e-04 2017-01-01 search Finland 12 0.004 2017-01-01 search France 15 0.005 2017-01-01 search Georgia 1 3e-04 2017-01-01 search Germany 64 0.0213 2017-01-01 search Ghana 1 3e-04 2017-01-01 search Greece 10 0.0033 2017-01-01 search Guatemala 1 3e-04 2017-01-01 search Haiti 4 0.0013 2017-01-01 search Hong Kong 2 7e-04 2017-01-01 search Hungary 10 0.0033 2017-01-01 search Iceland 2 7e-04 2017-01-01 search India 68 0.0227 2017-01-01 search Indonesia 6 0.002 2017-01-01 search Iran, Islamic Republic of 6 0.002 2017-01-01 search Iraq 1 3e-04 2017-01-01 search Ireland 13 0.0043 2017-01-01 search Isle of Man 2 7e-04 2017-01-01 search Israel 8 0.0027 2017-01-01 search Italy 9 0.003 2017-01-01 search Jamaica 4 0.0013 2017-01-01 search Japan 11 0.0037 2017-01-01 search Jersey 1 3e-04 2017-01-01 search Jordan 1 3e-04 2017-01-01 search Kazakhstan 3 0.001 2017-01-01 search Kenya 3 0.001 2017-01-01 search Korea, Republic of 8 0.0027 2017-01-01 search Kuwait 1 3e-04 2017-01-01 search Lebanon 1 3e-04 2017-01-01 search Lithuania 1 3e-04 2017-01-01 search Macedonia, Republic of 2 7e-04 2017-01-01 search Malaysia 22 0.0073 2017-01-01 search Malta 1 3e-04 2017-01-01 search Mauritania 1 3e-04 2017-01-01 search Mexico 13 0.0043 2017-01-01 search Moldova, Republic of 2 7e-04 2017-01-01 search Mongolia 1 3e-04 2017-01-01 search Morocco 51 0.017 2017-01-01 search Myanmar 2 7e-04 2017-01-01 search Nepal 4 0.0013 2017-01-01 search Netherlands 83 0.0277 2017-01-01 search New Zealand 9 0.003 2017-01-01 search Nigeria 8 0.0027 2017-01-01 search Norway 18 0.006 2017-01-01 search Oman 6 0.002 2017-01-01 search Other 6 0.002 2017-01-01 search Pakistan 15 0.005 2017-01-01 search Panama 1 3e-04 2017-01-01 search Philippines 40 0.0133 2017-01-01 search Poland 13 0.0043 2017-01-01 search Portugal 2 7e-04 2017-01-01 search Qatar 1 3e-04 2017-01-01 search Romania 2 7e-04 2017-01-01 search Russian Federation 22 0.0073 2017-01-01 search Saudi Arabia 5 0.0017 2017-01-01 search Senegal 1 3e-04 2017-01-01 search Serbia 2 7e-04 2017-01-01 search Singapore 6 0.002 2017-01-01 search Slovakia 7 0.0023 2017-01-01 search South Africa 11 0.0037 2017-01-01 search Spain 17 0.0057 2017-01-01 search Sri Lanka 1 3e-04 2017-01-01 search Sweden 19 0.0063 2017-01-01 search Switzerland 12 0.004 2017-01-01 search Taiwan, Province of China 10 0.0033 2017-01-01 search Tajikistan 1 3e-04 2017-01-01 search Thailand 4 0.0013 2017-01-01 search Trinidad and Tobago 1 3e-04 2017-01-01 search Tunisia 5 0.0017 2017-01-01 search Turkey 6 0.002 2017-01-01 search Ukraine 15 0.005 2017-01-01 search United Arab Emirates 6 0.002 2017-01-01 search United Kingdom 189 0.063 2017-01-01 search Uruguay 1 3e-04 2017-01-01 search U.S. (Midwest) 323 0.1076 2017-01-01 search U.S. (Northeast) 385 0.1283 2017-01-01 search U.S. (Other) 4 0.0013 2017-01-01 search U.S. (Pacific) 314 0.1046 2017-01-01 search U.S. (South) 605 0.2016 2017-01-01 search U.S. (West) 99 0.033 2017-01-01 search Uzbekistan 2 7e-04 2017-01-01 search Viet Nam 6 0.002 2017-01-01 search Yemen 1 3e-04 2017-01-01 search Zambia 1 3e-04 2017-01-01 search Zimbabwe 4 0.0013 2017-01-01 secondary links Algeria 1 0.0476 2017-01-01 secondary links Bangladesh 1 0.0476 2017-01-01 secondary links Belgium 1 0.0476 2017-01-01 secondary links China 1 0.0476 2017-01-01 secondary links Greece 1 0.0476 2017-01-01 secondary links India 5 0.2381 2017-01-01 secondary links Morocco 2 0.0952 2017-01-01 secondary links Pakistan 2 0.0952 2017-01-01 secondary links Russian Federation 1 0.0476 2017-01-01 secondary links Singapore 1 0.0476 2017-01-01 secondary links South Africa 1 0.0476 2017-01-01 secondary links Sweden 1 0.0476 2017-01-01 secondary links Thailand 1 0.0476 2017-01-01 secondary links Tunisia 1 0.0476 2017-01-01 secondary links Yemen 1 0.0476 ``` It took 4s to generate this report. ### Report 28 of 44 **Note**: this report is configured to allow more than one row per day. **Note**: this report is configured to be "rolling" -- 60 maximum number of days allowed in the final dataset. Some of the existing data in **/a/aggregate-datasets/discovery/portal/last_action_country.tsv**: ``` date section_used country events proportion 2016-12-23 no action Afghanistan 2 8e-4 2016-12-23 no action Albania 2 8e-4 ... 2017-01-01 no action Albania 1 4e-04 2017-01-01 no action Algeria 16 0.0061 2017-01-01 no action Angola 34 0.013 2017-01-01 no action Argentina 5 0.0019 2017-01-01 no action Armenia 2 8e-04 2017-01-01 no action Australia 36 0.0137 2017-01-01 no action Austria 16 0.0061 2017-01-01 no action Bahamas 1 4e-04 2017-01-01 no action Bahrain 1 4e-04 2017-01-01 no action Bangladesh 17 0.0065 2017-01-01 no action Barbados 1 4e-04 2017-01-01 no action Belarus 6 0.0023 2017-01-01 no action Belgium 10 0.0038 2017-01-01 no action Bolivia, Plurinational State of 2 8e-04 2017-01-01 no action Brazil 19 0.0072 2017-01-01 no action Brunei Darussalam 2 8e-04 2017-01-01 no action Bulgaria 6 0.0023 2017-01-01 no action Burkina Faso 1 4e-04 2017-01-01 no action Cambodia 7 0.0027 2017-01-01 no action Cameroon 1 4e-04 2017-01-01 no action Canada 103 0.0393 2017-01-01 no action Central African Republic 1 4e-04 2017-01-01 no action Chile 5 0.0019 2017-01-01 no action China 24 0.0092 2017-01-01 no action Colombia 19 0.0072 2017-01-01 no action Costa Rica 1 4e-04 2017-01-01 no action Cote d'Ivoire 1 4e-04 2017-01-01 no action Croatia 1 4e-04 2017-01-01 no action Cuba 1 4e-04 2017-01-01 no action Cyprus 2 8e-04 2017-01-01 no action Czechia 58 0.0221 2017-01-01 no action Denmark 7 0.0027 2017-01-01 no action Dominican Republic 2 8e-04 2017-01-01 no action Ecuador 2 8e-04 2017-01-01 no action Egypt 15 0.0057 2017-01-01 no action El Salvador 1 4e-04 2017-01-01 no action Estonia 2 8e-04 2017-01-01 no action Ethiopia 1 4e-04 2017-01-01 no action Fiji 2 8e-04 2017-01-01 no action Finland 2 8e-04 2017-01-01 no action France 75 0.0286 2017-01-01 no action Georgia 2 8e-04 2017-01-01 no action Germany 160 0.061 2017-01-01 no action Ghana 4 0.0015 2017-01-01 no action Greece 8 0.0031 2017-01-01 no action Greenland 1 4e-04 2017-01-01 no action Guatemala 2 8e-04 2017-01-01 no action Haiti 1 4e-04 2017-01-01 no action Honduras 1 4e-04 2017-01-01 no action Hong Kong 16 0.0061 2017-01-01 no action Hungary 7 0.0027 2017-01-01 no action Iceland 1 4e-04 2017-01-01 no action India 110 0.042 2017-01-01 no action Indonesia 35 0.0134 2017-01-01 no action Iran, Islamic Republic of 13 0.005 2017-01-01 no action Iraq 4 0.0015 2017-01-01 no action Ireland 5 0.0019 2017-01-01 no action Israel 18 0.0069 2017-01-01 no action Italy 44 0.0168 2017-01-01 no action Jamaica 3 0.0011 2017-01-01 no action Japan 20 0.0076 2017-01-01 no action Jersey 1 4e-04 2017-01-01 no action Jordan 2 8e-04 2017-01-01 no action Kazakhstan 6 0.0023 2017-01-01 no action Kenya 2 8e-04 2017-01-01 no action Korea, Republic of 13 0.005 2017-01-01 no action Kuwait 1 4e-04 2017-01-01 no action Kyrgyzstan 1 4e-04 2017-01-01 no action Latvia 1 4e-04 2017-01-01 no action Liberia 1 4e-04 2017-01-01 no action Lithuania 1 4e-04 2017-01-01 no action Luxembourg 2 8e-04 2017-01-01 no action Macedonia, Republic of 1 4e-04 2017-01-01 no action Malaysia 14 0.0053 2017-01-01 no action Mali 1 4e-04 2017-01-01 no action Malta 2 8e-04 2017-01-01 no action Mexico 33 0.0126 2017-01-01 no action Moldova, Republic of 6 0.0023 2017-01-01 no action Mongolia 1 4e-04 2017-01-01 no action Montserrat 1 4e-04 2017-01-01 no action Morocco 25 0.0095 2017-01-01 no action Mozambique 1 4e-04 2017-01-01 no action Myanmar 8 0.0031 2017-01-01 no action Nepal 4 0.0015 2017-01-01 no action Netherlands 33 0.0126 2017-01-01 no action New Zealand 6 0.0023 2017-01-01 no action Nicaragua 2 8e-04 2017-01-01 no action Nigeria 13 0.005 2017-01-01 no action Norway 2 8e-04 2017-01-01 no action Oman 8 0.0031 2017-01-01 no action Other 8 0.0031 2017-01-01 no action Pakistan 19 0.0072 2017-01-01 no action Palestine, State of 2 8e-04 2017-01-01 no action Panama 1 4e-04 2017-01-01 no action Paraguay 3 0.0011 2017-01-01 no action Peru 7 0.0027 2017-01-01 no action Philippines 17 0.0065 2017-01-01 no action Poland 15 0.0057 2017-01-01 no action Portugal 4 0.0015 2017-01-01 no action Qatar 2 8e-04 2017-01-01 no action Romania 14 0.0053 2017-01-01 no action Russian Federation 61 0.0233 2017-01-01 no action Rwanda 1 4e-04 2017-01-01 no action Saudi Arabia 4 0.0015 2017-01-01 no action Senegal 2 8e-04 2017-01-01 no action Serbia 4 0.0015 2017-01-01 no action Singapore 16 0.0061 2017-01-01 no action Slovakia 6 0.0023 2017-01-01 no action Somalia 1 4e-04 2017-01-01 no action South Africa 21 0.008 2017-01-01 no action Spain 43 0.0164 2017-01-01 no action Sri Lanka 2 8e-04 2017-01-01 no action Sudan 2 8e-04 2017-01-01 no action Suriname 1 4e-04 2017-01-01 no action Swaziland 1 4e-04 2017-01-01 no action Sweden 11 0.0042 2017-01-01 no action Switzerland 22 0.0084 2017-01-01 no action Taiwan, Province of China 11 0.0042 2017-01-01 no action Tanzania, United Republic of 3 0.0011 2017-01-01 no action Thailand 17 0.0065 2017-01-01 no action Trinidad and Tobago 1 4e-04 2017-01-01 no action Tunisia 4 0.0015 2017-01-01 no action Turkey 19 0.0072 2017-01-01 no action Ukraine 28 0.0107 2017-01-01 no action United Arab Emirates 8 0.0031 2017-01-01 no action United Kingdom 295 0.1126 2017-01-01 no action Uruguay 4 0.0015 2017-01-01 no action U.S. (Midwest) 115 0.0439 2017-01-01 no action U.S. (Northeast) 171 0.0652 2017-01-01 no action U.S. (Other) 3 0.0011 2017-01-01 no action U.S. (Pacific) 172 0.0656 2017-01-01 no action U.S. (South) 247 0.0942 2017-01-01 no action U.S. (West) 44 0.0168 2017-01-01 no action Uzbekistan 1 4e-04 2017-01-01 no action Venezuela, Bolivarian Republic of 5 0.0019 2017-01-01 no action Viet Nam 19 0.0072 2017-01-01 no action Yemen 3 0.0011 2017-01-01 no action Zambia 1 4e-04 2017-01-01 no action Zimbabwe 4 0.0015 2017-01-01 other languages South Africa 1 1 2017-01-01 other projects Angola 2 0.0588 2017-01-01 other projects Bangladesh 2 0.0588 2017-01-01 other projects Canada 1 0.0294 2017-01-01 other projects China 2 0.0588 2017-01-01 other projects France 1 0.0294 2017-01-01 other projects Greece 1 0.0294 2017-01-01 other projects Haiti 1 0.0294 2017-01-01 other projects India 6 0.1765 2017-01-01 other projects Indonesia 2 0.0588 2017-01-01 other projects Kenya 1 0.0294 2017-01-01 other projects Madagascar 1 0.0294 2017-01-01 other projects Mexico 1 0.0294 2017-01-01 other projects Morocco 3 0.0882 2017-01-01 other projects Myanmar 2 0.0588 2017-01-01 other projects Pakistan 1 0.0294 2017-01-01 other projects Peru 1 0.0294 2017-01-01 other projects Russian Federation 1 0.0294 2017-01-01 other projects U.S. (Midwest) 1 0.0294 2017-01-01 other projects U.S. (Northeast) 2 0.0588 2017-01-01 other projects U.S. (Pacific) 1 0.0294 2017-01-01 other projects U.S. (South) 1 0.0294 2017-01-01 primary links Algeria 7 0.0108 2017-01-01 primary links Angola 1 0.0015 2017-01-01 primary links Argentina 3 0.0046 2017-01-01 primary links Australia 7 0.0108 2017-01-01 primary links Austria 4 0.0062 2017-01-01 primary links Azerbaijan 1 0.0015 2017-01-01 primary links Bangladesh 1 0.0015 2017-01-01 primary links Belarus 2 0.0031 2017-01-01 primary links Belgium 7 0.0108 2017-01-01 primary links Belize 1 0.0015 2017-01-01 primary links Bosnia and Herzegovina 2 0.0031 2017-01-01 primary links Brazil 5 0.0077 2017-01-01 primary links Bulgaria 1 0.0015 2017-01-01 primary links Canada 26 0.04 2017-01-01 primary links Cayman Islands 1 0.0015 2017-01-01 primary links Chile 1 0.0015 2017-01-01 primary links China 17 0.0262 2017-01-01 primary links Colombia 1 0.0015 2017-01-01 primary links Croatia 2 0.0031 2017-01-01 primary links Czechia 6 0.0092 2017-01-01 primary links Denmark 3 0.0046 2017-01-01 primary links Dominican Republic 2 0.0031 2017-01-01 primary links Egypt 3 0.0046 2017-01-01 primary links Estonia 2 0.0031 2017-01-01 primary links Finland 9 0.0138 2017-01-01 primary links France 10 0.0154 2017-01-01 primary links Germany 41 0.0631 2017-01-01 primary links Greece 2 0.0031 2017-01-01 primary links Haiti 1 0.0015 2017-01-01 primary links Honduras 1 0.0015 2017-01-01 primary links Hong Kong 4 0.0062 2017-01-01 primary links Hungary 4 0.0062 2017-01-01 primary links Iceland 1 0.0015 2017-01-01 primary links India 13 0.02 2017-01-01 primary links Indonesia 2 0.0031 2017-01-01 primary links Iran, Islamic Republic of 2 0.0031 2017-01-01 primary links Iraq 2 0.0031 2017-01-01 primary links Ireland 2 0.0031 2017-01-01 primary links Israel 2 0.0031 2017-01-01 primary links Italy 17 0.0262 2017-01-01 primary links Japan 6 0.0092 2017-01-01 primary links Jordan 2 0.0031 2017-01-01 primary links Kazakhstan 1 0.0015 2017-01-01 primary links Korea, Republic of 5 0.0077 2017-01-01 primary links Kyrgyzstan 2 0.0031 2017-01-01 primary links Latvia 3 0.0046 2017-01-01 primary links Luxembourg 1 0.0015 2017-01-01 primary links Macedonia, Republic of 2 0.0031 2017-01-01 primary links Mexico 7 0.0108 2017-01-01 primary links Moldova, Republic of 1 0.0015 2017-01-01 primary links Morocco 2 0.0031 2017-01-01 primary links Myanmar 2 0.0031 2017-01-01 primary links Netherlands 11 0.0169 2017-01-01 primary links New Zealand 2 0.0031 2017-01-01 primary links Nigeria 2 0.0031 2017-01-01 primary links Norway 5 0.0077 2017-01-01 primary links Pakistan 7 0.0108 2017-01-01 primary links Peru 3 0.0046 2017-01-01 primary links Philippines 4 0.0062 2017-01-01 primary links Poland 9 0.0138 2017-01-01 primary links Portugal 3 0.0046 2017-01-01 primary links Qatar 1 0.0015 2017-01-01 primary links Romania 3 0.0046 2017-01-01 primary links Russian Federation 13 0.02 2017-01-01 primary links Saudi Arabia 1 0.0015 2017-01-01 primary links Serbia 2 0.0031 2017-01-01 primary links Singapore 6 0.0092 2017-01-01 primary links Slovakia 2 0.0031 2017-01-01 primary links Slovenia 1 0.0015 2017-01-01 primary links Somalia 1 0.0015 2017-01-01 primary links South Africa 1 0.0015 2017-01-01 primary links Spain 13 0.02 2017-01-01 primary links Sri Lanka 1 0.0015 2017-01-01 primary links Sweden 11 0.0169 2017-01-01 primary links Switzerland 10 0.0154 2017-01-01 primary links Syrian Arab Republic 1 0.0015 2017-01-01 primary links Tunisia 1 0.0015 2017-01-01 primary links Turkey 2 0.0031 2017-01-01 primary links Uganda 2 0.0031 2017-01-01 primary links Ukraine 3 0.0046 2017-01-01 primary links United Arab Emirates 1 0.0015 2017-01-01 primary links United Kingdom 50 0.0769 2017-01-01 primary links U.S. (Midwest) 52 0.08 2017-01-01 primary links U.S. (Northeast) 53 0.0815 2017-01-01 primary links U.S. (Pacific) 36 0.0554 2017-01-01 primary links U.S. (South) 74 0.1138 2017-01-01 primary links U.S. (West) 6 0.0092 2017-01-01 primary links Venezuela, Bolivarian Republic of 1 0.0015 2017-01-01 primary links Viet Nam 2 0.0031 2017-01-01 primary links Yemen 1 0.0015 2017-01-01 search Albania 2 9e-04 2017-01-01 search Algeria 9 0.0039 2017-01-01 search Angola 25 0.011 2017-01-01 search Argentina 7 0.0031 2017-01-01 search Armenia 1 4e-04 2017-01-01 search Australia 35 0.0154 2017-01-01 search Austria 12 0.0053 2017-01-01 search Bangladesh 11 0.0048 2017-01-01 search Belarus 5 0.0022 2017-01-01 search Belgium 12 0.0053 2017-01-01 search Bosnia and Herzegovina 1 4e-04 2017-01-01 search Brazil 9 0.0039 2017-01-01 search Bulgaria 1 4e-04 2017-01-01 search Canada 87 0.0382 2017-01-01 search Chile 1 4e-04 2017-01-01 search China 31 0.0136 2017-01-01 search Colombia 2 9e-04 2017-01-01 search Congo, The Democratic Republic of the 1 4e-04 2017-01-01 search Croatia 1 4e-04 2017-01-01 search Cyprus 1 4e-04 2017-01-01 search Czechia 11 0.0048 2017-01-01 search Denmark 3 0.0013 2017-01-01 search Dominican Republic 2 9e-04 2017-01-01 search Egypt 3 0.0013 2017-01-01 search Finland 12 0.0053 2017-01-01 search France 10 0.0044 2017-01-01 search Georgia 1 4e-04 2017-01-01 search Germany 55 0.0241 2017-01-01 search Greece 7 0.0031 2017-01-01 search Guatemala 1 4e-04 2017-01-01 search Haiti 1 4e-04 2017-01-01 search Hong Kong 2 9e-04 2017-01-01 search Hungary 9 0.0039 2017-01-01 search Iceland 2 9e-04 2017-01-01 search India 48 0.0211 2017-01-01 search Indonesia 6 0.0026 2017-01-01 search Iran, Islamic Republic of 5 0.0022 2017-01-01 search Iraq 1 4e-04 2017-01-01 search Ireland 12 0.0053 2017-01-01 search Isle of Man 2 9e-04 2017-01-01 search Israel 6 0.0026 2017-01-01 search Italy 8 0.0035 2017-01-01 search Jamaica 2 9e-04 2017-01-01 search Japan 10 0.0044 2017-01-01 search Jersey 1 4e-04 2017-01-01 search Jordan 1 4e-04 2017-01-01 search Kazakhstan 2 9e-04 2017-01-01 search Kenya 2 9e-04 2017-01-01 search Korea, Republic of 8 0.0035 2017-01-01 search Lebanon 1 4e-04 2017-01-01 search Lithuania 1 4e-04 2017-01-01 search Macedonia, Republic of 2 9e-04 2017-01-01 search Malaysia 17 0.0075 2017-01-01 search Malta 1 4e-04 2017-01-01 search Mauritania 1 4e-04 2017-01-01 search Mexico 9 0.0039 2017-01-01 search Moldova, Republic of 1 4e-04 2017-01-01 search Morocco 19 0.0083 2017-01-01 search Myanmar 1 4e-04 2017-01-01 search Nepal 3 0.0013 2017-01-01 search Netherlands 15 0.0066 2017-01-01 search New Zealand 9 0.0039 2017-01-01 search Nigeria 4 0.0018 2017-01-01 search Norway 14 0.0061 2017-01-01 search Oman 2 9e-04 2017-01-01 search Other 4 0.0018 2017-01-01 search Pakistan 10 0.0044 2017-01-01 search Panama 1 4e-04 2017-01-01 search Philippines 26 0.0114 2017-01-01 search Poland 10 0.0044 2017-01-01 search Portugal 2 9e-04 2017-01-01 search Qatar 1 4e-04 2017-01-01 search Romania 2 9e-04 2017-01-01 search Russian Federation 20 0.0088 2017-01-01 search Saudi Arabia 3 0.0013 2017-01-01 search Senegal 1 4e-04 2017-01-01 search Serbia 2 9e-04 2017-01-01 search Singapore 5 0.0022 2017-01-01 search Slovakia 4 0.0018 2017-01-01 search South Africa 11 0.0048 2017-01-01 search Spain 12 0.0053 2017-01-01 search Sri Lanka 1 4e-04 2017-01-01 search Sweden 14 0.0061 2017-01-01 search Switzerland 10 0.0044 2017-01-01 search Taiwan, Province of China 6 0.0026 2017-01-01 search Tajikistan 1 4e-04 2017-01-01 search Thailand 3 0.0013 2017-01-01 search Trinidad and Tobago 1 4e-04 2017-01-01 search Tunisia 3 0.0013 2017-01-01 search Turkey 5 0.0022 2017-01-01 search Ukraine 9 0.0039 2017-01-01 search United Arab Emirates 6 0.0026 2017-01-01 search United Kingdom 157 0.0689 2017-01-01 search U.S. (Midwest) 266 0.1167 2017-01-01 search U.S. (Northeast) 306 0.1343 2017-01-01 search U.S. (Other) 4 0.0018 2017-01-01 search U.S. (Pacific) 235 0.1031 2017-01-01 search U.S. (South) 462 0.2027 2017-01-01 search U.S. (West) 82 0.036 2017-01-01 search Viet Nam 3 0.0013 2017-01-01 search Yemen 1 4e-04 2017-01-01 search Zambia 1 4e-04 2017-01-01 search Zimbabwe 2 9e-04 2017-01-01 secondary links Bangladesh 1 0.0714 2017-01-01 secondary links Belgium 1 0.0714 2017-01-01 secondary links China 1 0.0714 2017-01-01 secondary links Greece 1 0.0714 2017-01-01 secondary links India 1 0.0714 2017-01-01 secondary links Morocco 2 0.1429 2017-01-01 secondary links Pakistan 1 0.0714 2017-01-01 secondary links Russian Federation 1 0.0714 2017-01-01 secondary links Singapore 1 0.0714 2017-01-01 secondary links South Africa 1 0.0714 2017-01-01 secondary links Sweden 1 0.0714 2017-01-01 secondary links Thailand 1 0.0714 2017-01-01 secondary links Tunisia 1 0.0714 ... 2017-02-20 secondary links United Kingdom 1 0.025 2017-02-20 secondary links U.S. (South) 1 0.025 ``` 1. Executing report "last_action_country" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/last_action_country 2017-01-01 2017-01-02` **Output**: ``` date section_used country events proportion 2017-01-01 no action Albania 2 8e-04 2017-01-01 no action Algeria 16 0.006 2017-01-01 no action Angola 34 0.0128 2017-01-01 no action Argentina 4 0.0015 2017-01-01 no action Armenia 2 8e-04 2017-01-01 no action Australia 36 0.0136 2017-01-01 no action Austria 16 0.006 2017-01-01 no action Bahamas 1 4e-04 2017-01-01 no action Bahrain 1 4e-04 2017-01-01 no action Bangladesh 17 0.0064 2017-01-01 no action Barbados 1 4e-04 2017-01-01 no action Belarus 6 0.0023 2017-01-01 no action Belgium 9 0.0034 2017-01-01 no action Bolivia, Plurinational State of 2 8e-04 2017-01-01 no action Brazil 19 0.0072 2017-01-01 no action Brunei Darussalam 2 8e-04 2017-01-01 no action Bulgaria 6 0.0023 2017-01-01 no action Burkina Faso 1 4e-04 2017-01-01 no action Cambodia 7 0.0026 2017-01-01 no action Cameroon 1 4e-04 2017-01-01 no action Canada 103 0.0388 2017-01-01 no action Central African Republic 1 4e-04 2017-01-01 no action Chile 4 0.0015 2017-01-01 no action China 24 0.009 2017-01-01 no action Colombia 19 0.0072 2017-01-01 no action Costa Rica 2 8e-04 2017-01-01 no action Cote d'Ivoire 1 4e-04 2017-01-01 no action Croatia 1 4e-04 2017-01-01 no action Cuba 1 4e-04 2017-01-01 no action Cyprus 2 8e-04 2017-01-01 no action Czechia 58 0.0219 2017-01-01 no action Denmark 7 0.0026 2017-01-01 no action Dominican Republic 2 8e-04 2017-01-01 no action Ecuador 2 8e-04 2017-01-01 no action Egypt 16 0.006 2017-01-01 no action El Salvador 1 4e-04 2017-01-01 no action Estonia 2 8e-04 2017-01-01 no action Ethiopia 1 4e-04 2017-01-01 no action Fiji 2 8e-04 2017-01-01 no action Finland 2 8e-04 2017-01-01 no action France 77 0.029 2017-01-01 no action Georgia 2 8e-04 2017-01-01 no action Germany 164 0.0618 2017-01-01 no action Ghana 4 0.0015 2017-01-01 no action Greece 8 0.003 2017-01-01 no action Guatemala 2 8e-04 2017-01-01 no action Haiti 1 4e-04 2017-01-01 no action Honduras 1 4e-04 2017-01-01 no action Hong Kong 16 0.006 2017-01-01 no action Hungary 7 0.0026 2017-01-01 no action Iceland 1 4e-04 2017-01-01 no action India 115 0.0433 2017-01-01 no action Indonesia 36 0.0136 2017-01-01 no action Iran, Islamic Republic of 13 0.0049 2017-01-01 no action Iraq 4 0.0015 2017-01-01 no action Ireland 5 0.0019 2017-01-01 no action Israel 18 0.0068 2017-01-01 no action Italy 46 0.0173 2017-01-01 no action Jamaica 3 0.0011 2017-01-01 no action Japan 21 0.0079 2017-01-01 no action Jersey 1 4e-04 2017-01-01 no action Jordan 2 8e-04 2017-01-01 no action Kazakhstan 6 0.0023 2017-01-01 no action Kenya 1 4e-04 2017-01-01 no action Korea, Republic of 13 0.0049 2017-01-01 no action Kuwait 1 4e-04 2017-01-01 no action Kyrgyzstan 1 4e-04 2017-01-01 no action Latvia 2 8e-04 2017-01-01 no action Liberia 1 4e-04 2017-01-01 no action Lithuania 1 4e-04 2017-01-01 no action Luxembourg 2 8e-04 2017-01-01 no action Macedonia, Republic of 1 4e-04 2017-01-01 no action Malaysia 14 0.0053 2017-01-01 no action Mali 1 4e-04 2017-01-01 no action Malta 2 8e-04 2017-01-01 no action Mexico 34 0.0128 2017-01-01 no action Moldova, Republic of 6 0.0023 2017-01-01 no action Mongolia 1 4e-04 2017-01-01 no action Montserrat 1 4e-04 2017-01-01 no action Morocco 25 0.0094 2017-01-01 no action Mozambique 1 4e-04 2017-01-01 no action Myanmar 8 0.003 2017-01-01 no action Nepal 4 0.0015 2017-01-01 no action Netherlands 33 0.0124 2017-01-01 no action New Zealand 6 0.0023 2017-01-01 no action Nicaragua 2 8e-04 2017-01-01 no action Nigeria 14 0.0053 2017-01-01 no action Norway 3 0.0011 2017-01-01 no action Oman 8 0.003 2017-01-01 no action Other 8 0.003 2017-01-01 no action Pakistan 21 0.0079 2017-01-01 no action Palestine, State of 2 8e-04 2017-01-01 no action Panama 1 4e-04 2017-01-01 no action Paraguay 3 0.0011 2017-01-01 no action Peru 8 0.003 2017-01-01 no action Philippines 18 0.0068 2017-01-01 no action Poland 15 0.0057 2017-01-01 no action Portugal 4 0.0015 2017-01-01 no action Qatar 2 8e-04 2017-01-01 no action Romania 14 0.0053 2017-01-01 no action Russian Federation 60 0.0226 2017-01-01 no action Rwanda 1 4e-04 2017-01-01 no action Saudi Arabia 4 0.0015 2017-01-01 no action Senegal 3 0.0011 2017-01-01 no action Serbia 5 0.0019 2017-01-01 no action Singapore 17 0.0064 2017-01-01 no action Slovakia 6 0.0023 2017-01-01 no action Somalia 1 4e-04 2017-01-01 no action South Africa 22 0.0083 2017-01-01 no action Spain 44 0.0166 2017-01-01 no action Sri Lanka 2 8e-04 2017-01-01 no action Sudan 3 0.0011 2017-01-01 no action Suriname 1 4e-04 2017-01-01 no action Swaziland 1 4e-04 2017-01-01 no action Sweden 11 0.0041 2017-01-01 no action Switzerland 23 0.0087 2017-01-01 no action Taiwan, Province of China 11 0.0041 2017-01-01 no action Tanzania, United Republic of 3 0.0011 2017-01-01 no action Thailand 18 0.0068 2017-01-01 no action Trinidad and Tobago 1 4e-04 2017-01-01 no action Tunisia 4 0.0015 2017-01-01 no action Turkey 19 0.0072 2017-01-01 no action Ukraine 28 0.0106 2017-01-01 no action United Arab Emirates 8 0.003 2017-01-01 no action United Kingdom 305 0.1149 2017-01-01 no action Uruguay 4 0.0015 2017-01-01 no action U.S. (Midwest) 111 0.0418 2017-01-01 no action U.S. (Northeast) 169 0.0637 2017-01-01 no action U.S. (Other) 3 0.0011 2017-01-01 no action U.S. (Pacific) 172 0.0648 2017-01-01 no action U.S. (South) 250 0.0942 2017-01-01 no action U.S. (West) 44 0.0166 2017-01-01 no action Uzbekistan 1 4e-04 2017-01-01 no action Venezuela, Bolivarian Republic of 5 0.0019 2017-01-01 no action Viet Nam 17 0.0064 2017-01-01 no action Yemen 3 0.0011 2017-01-01 no action Zambia 1 4e-04 2017-01-01 no action Zimbabwe 4 0.0015 2017-01-01 other languages South Africa 1 1 2017-01-01 other projects Angola 2 0.0588 2017-01-01 other projects Bangladesh 2 0.0588 2017-01-01 other projects Canada 1 0.0294 2017-01-01 other projects China 2 0.0588 2017-01-01 other projects France 1 0.0294 2017-01-01 other projects Greece 1 0.0294 2017-01-01 other projects Haiti 1 0.0294 2017-01-01 other projects India 6 0.1765 2017-01-01 other projects Indonesia 2 0.0588 2017-01-01 other projects Kenya 1 0.0294 2017-01-01 other projects Madagascar 1 0.0294 2017-01-01 other projects Mexico 1 0.0294 2017-01-01 other projects Morocco 3 0.0882 2017-01-01 other projects Myanmar 2 0.0588 2017-01-01 other projects Pakistan 1 0.0294 2017-01-01 other projects Peru 1 0.0294 2017-01-01 other projects Russian Federation 1 0.0294 2017-01-01 other projects U.S. (Midwest) 1 0.0294 2017-01-01 other projects U.S. (Northeast) 2 0.0588 2017-01-01 other projects U.S. (Pacific) 1 0.0294 2017-01-01 other projects U.S. (South) 1 0.0294 2017-01-01 primary links Algeria 7 0.0106 2017-01-01 primary links Angola 1 0.0015 2017-01-01 primary links Argentina 3 0.0045 2017-01-01 primary links Australia 7 0.0106 2017-01-01 primary links Austria 4 0.0061 2017-01-01 primary links Azerbaijan 1 0.0015 2017-01-01 primary links Bangladesh 1 0.0015 2017-01-01 primary links Belarus 2 0.003 2017-01-01 primary links Belgium 8 0.0121 2017-01-01 primary links Belize 1 0.0015 2017-01-01 primary links Bosnia and Herzegovina 2 0.003 2017-01-01 primary links Brazil 5 0.0076 2017-01-01 primary links Bulgaria 1 0.0015 2017-01-01 primary links Canada 26 0.0393 2017-01-01 primary links Cayman Islands 1 0.0015 2017-01-01 primary links Chile 1 0.0015 2017-01-01 primary links China 18 0.0272 2017-01-01 primary links Colombia 1 0.0015 2017-01-01 primary links Croatia 2 0.003 2017-01-01 primary links Czechia 6 0.0091 2017-01-01 primary links Denmark 4 0.0061 2017-01-01 primary links Dominican Republic 2 0.003 2017-01-01 primary links Egypt 3 0.0045 2017-01-01 primary links Estonia 2 0.003 2017-01-01 primary links Finland 9 0.0136 2017-01-01 primary links France 10 0.0151 2017-01-01 primary links Germany 42 0.0635 2017-01-01 primary links Greece 2 0.003 2017-01-01 primary links Greenland 1 0.0015 2017-01-01 primary links Haiti 1 0.0015 2017-01-01 primary links Honduras 1 0.0015 2017-01-01 primary links Hong Kong 4 0.0061 2017-01-01 primary links Hungary 4 0.0061 2017-01-01 primary links Iceland 1 0.0015 2017-01-01 primary links India 12 0.0182 2017-01-01 primary links Indonesia 2 0.003 2017-01-01 primary links Iran, Islamic Republic of 2 0.003 2017-01-01 primary links Iraq 2 0.003 2017-01-01 primary links Ireland 2 0.003 2017-01-01 primary links Israel 2 0.003 2017-01-01 primary links Italy 18 0.0272 2017-01-01 primary links Japan 6 0.0091 2017-01-01 primary links Jordan 2 0.003 2017-01-01 primary links Kazakhstan 1 0.0015 2017-01-01 primary links Korea, Republic of 5 0.0076 2017-01-01 primary links Kyrgyzstan 2 0.003 2017-01-01 primary links Latvia 3 0.0045 2017-01-01 primary links Luxembourg 1 0.0015 2017-01-01 primary links Macedonia, Republic of 2 0.003 2017-01-01 primary links Mexico 7 0.0106 2017-01-01 primary links Moldova, Republic of 1 0.0015 2017-01-01 primary links Morocco 3 0.0045 2017-01-01 primary links Myanmar 2 0.003 2017-01-01 primary links Netherlands 11 0.0166 2017-01-01 primary links New Zealand 2 0.003 2017-01-01 primary links Nigeria 2 0.003 2017-01-01 primary links Norway 5 0.0076 2017-01-01 primary links Pakistan 7 0.0106 2017-01-01 primary links Peru 3 0.0045 2017-01-01 primary links Philippines 4 0.0061 2017-01-01 primary links Poland 9 0.0136 2017-01-01 primary links Portugal 3 0.0045 2017-01-01 primary links Qatar 1 0.0015 2017-01-01 primary links Romania 3 0.0045 2017-01-01 primary links Russian Federation 13 0.0197 2017-01-01 primary links Saudi Arabia 1 0.0015 2017-01-01 primary links Serbia 2 0.003 2017-01-01 primary links Singapore 5 0.0076 2017-01-01 primary links Slovakia 2 0.003 2017-01-01 primary links Slovenia 1 0.0015 2017-01-01 primary links Somalia 1 0.0015 2017-01-01 primary links South Africa 1 0.0015 2017-01-01 primary links Spain 13 0.0197 2017-01-01 primary links Sri Lanka 1 0.0015 2017-01-01 primary links Sweden 11 0.0166 2017-01-01 primary links Switzerland 10 0.0151 2017-01-01 primary links Syrian Arab Republic 1 0.0015 2017-01-01 primary links Tunisia 1 0.0015 2017-01-01 primary links Turkey 2 0.003 2017-01-01 primary links Uganda 2 0.003 2017-01-01 primary links Ukraine 3 0.0045 2017-01-01 primary links United Arab Emirates 1 0.0015 2017-01-01 primary links United Kingdom 51 0.0772 2017-01-01 primary links U.S. (Midwest) 53 0.0802 2017-01-01 primary links U.S. (Northeast) 53 0.0802 2017-01-01 primary links U.S. (Pacific) 37 0.056 2017-01-01 primary links U.S. (South) 76 0.115 2017-01-01 primary links U.S. (West) 6 0.0091 2017-01-01 primary links Venezuela, Bolivarian Republic of 1 0.0015 2017-01-01 primary links Viet Nam 3 0.0045 2017-01-01 primary links Yemen 1 0.0015 2017-01-01 search Albania 2 9e-04 2017-01-01 search Algeria 9 0.0039 2017-01-01 search Angola 25 0.0108 2017-01-01 search Argentina 8 0.0035 2017-01-01 search Armenia 1 4e-04 2017-01-01 search Australia 37 0.016 2017-01-01 search Austria 12 0.0052 2017-01-01 search Bangladesh 11 0.0048 2017-01-01 search Belarus 5 0.0022 2017-01-01 search Belgium 12 0.0052 2017-01-01 search Bosnia and Herzegovina 1 4e-04 2017-01-01 search Brazil 9 0.0039 2017-01-01 search Bulgaria 1 4e-04 2017-01-01 search Canada 89 0.0384 2017-01-01 search Chile 3 0.0013 2017-01-01 search China 31 0.0134 2017-01-01 search Colombia 2 9e-04 2017-01-01 search Congo, The Democratic Republic of the 1 4e-04 2017-01-01 search Croatia 1 4e-04 2017-01-01 search Cyprus 1 4e-04 2017-01-01 search Czechia 11 0.0048 2017-01-01 search Denmark 3 0.0013 2017-01-01 search Dominican Republic 2 9e-04 2017-01-01 search Egypt 3 0.0013 2017-01-01 search Finland 12 0.0052 2017-01-01 search France 10 0.0043 2017-01-01 search Georgia 1 4e-04 2017-01-01 search Germany 55 0.0238 2017-01-01 search Greece 7 0.003 2017-01-01 search Guatemala 1 4e-04 2017-01-01 search Haiti 1 4e-04 2017-01-01 search Hong Kong 2 9e-04 2017-01-01 search Hungary 9 0.0039 2017-01-01 search Iceland 2 9e-04 2017-01-01 search India 46 0.0199 2017-01-01 search Indonesia 6 0.0026 2017-01-01 search Iran, Islamic Republic of 5 0.0022 2017-01-01 search Iraq 1 4e-04 2017-01-01 search Ireland 12 0.0052 2017-01-01 search Isle of Man 2 9e-04 2017-01-01 search Israel 6 0.0026 2017-01-01 search Italy 8 0.0035 2017-01-01 search Jamaica 2 9e-04 2017-01-01 search Japan 10 0.0043 2017-01-01 search Jersey 1 4e-04 2017-01-01 search Jordan 1 4e-04 2017-01-01 search Kazakhstan 2 9e-04 2017-01-01 search Kenya 3 0.0013 2017-01-01 search Korea, Republic of 8 0.0035 2017-01-01 search Lebanon 1 4e-04 2017-01-01 search Lithuania 1 4e-04 2017-01-01 search Macedonia, Republic of 2 9e-04 2017-01-01 search Malaysia 17 0.0073 2017-01-01 search Malta 1 4e-04 2017-01-01 search Mauritania 1 4e-04 2017-01-01 search Mexico 9 0.0039 2017-01-01 search Moldova, Republic of 1 4e-04 2017-01-01 search Morocco 20 0.0086 2017-01-01 search Myanmar 1 4e-04 2017-01-01 search Nepal 3 0.0013 2017-01-01 search Netherlands 16 0.0069 2017-01-01 search New Zealand 9 0.0039 2017-01-01 search Nigeria 4 0.0017 2017-01-01 search Norway 14 0.006 2017-01-01 search Oman 2 9e-04 2017-01-01 search Other 4 0.0017 2017-01-01 search Pakistan 10 0.0043 2017-01-01 search Panama 1 4e-04 2017-01-01 search Philippines 27 0.0117 2017-01-01 search Poland 11 0.0048 2017-01-01 search Portugal 2 9e-04 2017-01-01 search Qatar 1 4e-04 2017-01-01 search Romania 2 9e-04 2017-01-01 search Russian Federation 21 0.0091 2017-01-01 search Saudi Arabia 3 0.0013 2017-01-01 search Senegal 1 4e-04 2017-01-01 search Serbia 2 9e-04 2017-01-01 search Singapore 5 0.0022 2017-01-01 search Slovakia 4 0.0017 2017-01-01 search South Africa 11 0.0048 2017-01-01 search Spain 12 0.0052 2017-01-01 search Sri Lanka 1 4e-04 2017-01-01 search Sweden 15 0.0065 2017-01-01 search Switzerland 9 0.0039 2017-01-01 search Taiwan, Province of China 6 0.0026 2017-01-01 search Tajikistan 1 4e-04 2017-01-01 search Thailand 3 0.0013 2017-01-01 search Trinidad and Tobago 1 4e-04 2017-01-01 search Tunisia 3 0.0013 2017-01-01 search Turkey 5 0.0022 2017-01-01 search Ukraine 9 0.0039 2017-01-01 search United Arab Emirates 6 0.0026 2017-01-01 search United Kingdom 157 0.0678 2017-01-01 search U.S. (Midwest) 275 0.1188 2017-01-01 search U.S. (Northeast) 311 0.1343 2017-01-01 search U.S. (Other) 4 0.0017 2017-01-01 search U.S. (Pacific) 237 0.1024 2017-01-01 search U.S. (South) 469 0.2026 2017-01-01 search U.S. (West) 82 0.0354 2017-01-01 search Viet Nam 5 0.0022 2017-01-01 search Yemen 1 4e-04 2017-01-01 search Zambia 1 4e-04 2017-01-01 search Zimbabwe 2 9e-04 2017-01-01 secondary links Bangladesh 1 0.0714 2017-01-01 secondary links Belgium 1 0.0714 2017-01-01 secondary links China 1 0.0714 2017-01-01 secondary links Greece 1 0.0714 2017-01-01 secondary links India 1 0.0714 2017-01-01 secondary links Morocco 2 0.1429 2017-01-01 secondary links Pakistan 1 0.0714 2017-01-01 secondary links Russian Federation 1 0.0714 2017-01-01 secondary links Singapore 1 0.0714 2017-01-01 secondary links South Africa 1 0.0714 2017-01-01 secondary links Sweden 1 0.0714 2017-01-01 secondary links Thailand 1 0.0714 2017-01-01 secondary links Tunisia 1 0.0714 ``` It took 3s to generate this report. ### Report 29 of 44 _Number of times users switched the language of the search box on Wikipedia.org Portal_ **Note**: this report is configured to have one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/portal/language_switching.tsv**: ``` date sessions switched 2016-09-13 170 3 2016-09-14 4904 47 ... 2017-01-01 5537 64 ... 2017-02-19 6894 88 2017-02-20 7657 100 ``` 1. Executing report "language_switching" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/language_switching 2017-01-01 2017-01-02` **Output**: ``` date sessions switched 2017-01-01 5670 66 ``` It took 3s to generate this report. ### Report 30 of 44 _The language of the Wikipedia that the Portal visitors went to_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/portal/language_destination.tsv**: ``` date prefix clicks sessions search primary secondary 2015-11-16 it 1 1 0 1 0 2015-11-17 ... 2017-01-01 ar 64 39 46 13 5 2017-01-01 arc 1 1 0 0 1 2017-01-01 as 2 2 0 0 2 2017-01-01 az 1 1 0 1 0 2017-01-01 bn 3 3 0 0 3 2017-01-01 cs 13 12 9 4 0 2017-01-01 da 1 1 1 0 0 2017-01-01 de 134 120 71 63 0 2017-01-01 el 5 4 4 0 1 2017-01-01 en 3195 2713 2629 562 1 2017-01-01 es 60 55 31 29 0 2017-01-01 fa 5 4 3 2 0 2017-01-01 fi 9 9 7 2 0 2017-01-01 fr 79 53 52 27 0 2017-01-01 gl 1 1 1 0 0 2017-01-01 he 2 2 2 0 0 2017-01-01 hi 4 3 3 1 0 2017-01-01 hr 7 3 7 0 0 2017-01-01 hu 4 4 4 0 0 2017-01-01 id 3 2 0 3 0 2017-01-01 it 34 30 8 26 0 2017-01-01 ja 10 9 0 10 0 2017-01-01 ko 1 1 1 0 0 2017-01-01 lv 1 1 0 1 0 2017-01-01 ml 2 1 0 0 2 2017-01-01 ms 2 1 2 0 0 2017-01-01 my 1 1 1 0 0 2017-01-01 nl 17 15 12 4 1 2017-01-01 nn 1 1 1 0 0 2017-01-01 no 3 3 3 0 0 2017-01-01 pdc 2 1 0 0 2 2017-01-01 pl 17 17 7 10 0 2017-01-01 pt 51 40 40 11 0 2017-01-01 ro 2 2 0 2 0 2017-01-01 ru 77 69 41 34 2 2017-01-01 sk 2 2 1 1 0 2017-01-01 sv 14 13 8 5 1 2017-01-01 tr 5 5 3 2 0 2017-01-01 uk 1 1 0 1 0 2017-01-01 ur 1 1 0 0 1 2017-01-01 vi 5 4 3 2 0 2017-01-01 zh 69 40 38 31 0 ... 2017-02-20 zh-classical 1 1 0 0 1 2017-02-20 zh-yue 1 1 0 0 1 ``` 1. Executing report "language_destination" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/language_destination 2017-01-01 2017-01-02` **Output**: ``` date prefix clicks sessions search primary secondary 2017-01-01 ar 66 39 48 13 5 2017-01-01 arc 1 1 0 0 1 2017-01-01 as 2 2 0 0 2 2017-01-01 az 1 1 0 1 0 2017-01-01 bn 3 3 0 0 3 2017-01-01 cs 13 12 9 4 0 2017-01-01 da 2 2 1 1 0 2017-01-01 de 135 121 71 64 0 2017-01-01 el 5 4 4 0 1 2017-01-01 en 3260 2755 2683 573 1 2017-01-01 es 62 57 33 29 0 2017-01-01 fa 5 4 3 2 0 2017-01-01 fi 9 9 7 2 0 2017-01-01 fr 82 54 54 28 0 2017-01-01 gl 1 1 1 0 0 2017-01-01 he 2 2 2 0 0 2017-01-01 hi 4 3 3 1 0 2017-01-01 hr 7 3 7 0 0 2017-01-01 hu 4 4 4 0 0 2017-01-01 id 3 2 0 3 0 2017-01-01 it 36 32 9 27 0 2017-01-01 ja 10 9 0 10 0 2017-01-01 ko 1 1 1 0 0 2017-01-01 lv 1 1 0 1 0 2017-01-01 ml 2 1 0 0 2 2017-01-01 ms 2 1 2 0 0 2017-01-01 my 1 1 1 0 0 2017-01-01 nl 18 16 13 4 1 2017-01-01 nn 1 1 1 0 0 2017-01-01 no 3 3 3 0 0 2017-01-01 pdc 2 1 0 0 2 2017-01-01 pl 17 17 7 10 0 2017-01-01 pt 51 40 40 11 0 2017-01-01 ro 2 2 0 2 0 2017-01-01 ru 80 72 43 35 2 2017-01-01 sk 2 2 1 1 0 2017-01-01 sv 15 14 9 5 1 2017-01-01 tr 5 5 3 2 0 2017-01-01 uk 1 1 0 1 0 2017-01-01 ur 1 1 0 0 1 2017-01-01 vi 6 5 4 2 0 2017-01-01 zh 69 40 38 31 0 ``` It took 7s to generate this report. ### Report 31 of 44 _Action performed on Wikipedia.org Portal on each user's initial visit, broken down by country_ **Note**: this report is configured to allow more than one row per day. **Note**: this report is configured to be "rolling" -- 60 maximum number of days allowed in the final dataset. Some of the existing data in **/a/aggregate-datasets/discovery/portal/first_visits_country.tsv**: ``` date section_used country sessions proportion 2016-12-23 no action Afghanistan 2 4e-4 2016-12-23 no action Albania 4 7e-4 ... 2017-01-01 no action Albania 3 5e-04 2017-01-01 no action Algeria 32 0.0058 2017-01-01 no action Angola 62 0.0112 2017-01-01 no action Argentina 14 0.0025 2017-01-01 no action Armenia 3 5e-04 2017-01-01 no action Australia 77 0.0139 2017-01-01 no action Austria 32 0.0058 2017-01-01 no action Azerbaijan 1 2e-04 2017-01-01 no action Bahamas 1 2e-04 2017-01-01 no action Bahrain 1 2e-04 2017-01-01 no action Bangladesh 31 0.0056 2017-01-01 no action Barbados 1 2e-04 2017-01-01 no action Belarus 13 0.0023 2017-01-01 no action Belgium 30 0.0054 2017-01-01 no action Belize 1 2e-04 2017-01-01 no action Bolivia, Plurinational State of 2 4e-04 2017-01-01 no action Bosnia and Herzegovina 3 5e-04 2017-01-01 no action Brazil 33 0.006 2017-01-01 no action Brunei Darussalam 2 4e-04 2017-01-01 no action Bulgaria 8 0.0014 2017-01-01 no action Burkina Faso 1 2e-04 2017-01-01 no action Cambodia 7 0.0013 2017-01-01 no action Cameroon 1 2e-04 2017-01-01 no action Canada 217 0.0392 2017-01-01 no action Cayman Islands 1 2e-04 2017-01-01 no action Central African Republic 1 2e-04 2017-01-01 no action Chile 7 0.0013 2017-01-01 no action China 73 0.0132 2017-01-01 no action Colombia 22 0.004 2017-01-01 no action Congo, The Democratic Republic of the 1 2e-04 2017-01-01 no action Costa Rica 1 2e-04 2017-01-01 no action Cote d'Ivoire 1 2e-04 2017-01-01 no action Croatia 4 7e-04 2017-01-01 no action Cuba 1 2e-04 2017-01-01 no action Cyprus 3 5e-04 2017-01-01 no action Czechia 74 0.0134 2017-01-01 no action Denmark 13 0.0023 2017-01-01 no action Dominican Republic 6 0.0011 2017-01-01 no action Ecuador 2 4e-04 2017-01-01 no action Egypt 21 0.0038 2017-01-01 no action El Salvador 1 2e-04 2017-01-01 no action Estonia 4 7e-04 2017-01-01 no action Ethiopia 1 2e-04 2017-01-01 no action Fiji 2 4e-04 2017-01-01 no action Finland 22 0.004 2017-01-01 no action France 96 0.0173 2017-01-01 no action Georgia 3 5e-04 2017-01-01 no action Germany 254 0.0459 2017-01-01 no action Ghana 4 7e-04 2017-01-01 no action Greece 19 0.0034 2017-01-01 no action Greenland 1 2e-04 2017-01-01 no action Guatemala 3 5e-04 2017-01-01 no action Haiti 4 7e-04 2017-01-01 no action Honduras 2 4e-04 2017-01-01 no action Hong Kong 22 0.004 2017-01-01 no action Hungary 19 0.0034 2017-01-01 no action Iceland 4 7e-04 2017-01-01 no action India 176 0.0318 2017-01-01 no action Indonesia 44 0.0079 2017-01-01 no action Iran, Islamic Republic of 19 0.0034 2017-01-01 no action Iraq 7 0.0013 2017-01-01 no action Ireland 19 0.0034 2017-01-01 no action Isle of Man 2 4e-04 2017-01-01 no action Israel 25 0.0045 2017-01-01 no action Italy 69 0.0125 2017-01-01 no action Jamaica 5 9e-04 2017-01-01 no action Japan 36 0.0065 2017-01-01 no action Jersey 2 4e-04 2017-01-01 no action Jordan 5 9e-04 2017-01-01 no action Kazakhstan 9 0.0016 2017-01-01 no action Kenya 5 9e-04 2017-01-01 no action Korea, Republic of 26 0.0047 2017-01-01 no action Kuwait 1 2e-04 2017-01-01 no action Kyrgyzstan 3 5e-04 2017-01-01 no action Latvia 4 7e-04 2017-01-01 no action Lebanon 1 2e-04 2017-01-01 no action Liberia 1 2e-04 2017-01-01 no action Lithuania 2 4e-04 2017-01-01 no action Luxembourg 3 5e-04 2017-01-01 no action Macedonia, Republic of 5 9e-04 2017-01-01 no action Madagascar 1 2e-04 2017-01-01 no action Malaysia 31 0.0056 2017-01-01 no action Mali 1 2e-04 2017-01-01 no action Malta 3 5e-04 2017-01-01 no action Mauritania 1 2e-04 2017-01-01 no action Mexico 50 0.009 2017-01-01 no action Moldova, Republic of 8 0.0014 2017-01-01 no action Mongolia 1 2e-04 2017-01-01 no action Montserrat 1 2e-04 2017-01-01 no action Morocco 50 0.009 2017-01-01 no action Mozambique 1 2e-04 2017-01-01 no action Myanmar 13 0.0023 2017-01-01 no action Nepal 7 0.0013 2017-01-01 no action Netherlands 58 0.0105 2017-01-01 no action New Zealand 17 0.0031 2017-01-01 no action Nicaragua 2 4e-04 2017-01-01 no action Nigeria 19 0.0034 2017-01-01 no action Norway 20 0.0036 2017-01-01 no action Oman 10 0.0018 2017-01-01 no action Other 10 0.0018 2017-01-01 no action Pakistan 38 0.0069 2017-01-01 no action Palestine, State of 2 4e-04 2017-01-01 no action Panama 2 4e-04 2017-01-01 no action Paraguay 3 5e-04 2017-01-01 no action Peru 11 0.002 2017-01-01 no action Philippines 47 0.0085 2017-01-01 no action Poland 32 0.0058 2017-01-01 no action Portugal 8 0.0014 2017-01-01 no action Qatar 4 7e-04 2017-01-01 no action Romania 19 0.0034 2017-01-01 no action Russian Federation 96 0.0173 2017-01-01 no action Rwanda 1 2e-04 2017-01-01 no action Saudi Arabia 8 0.0014 2017-01-01 no action Senegal 3 5e-04 2017-01-01 no action Serbia 7 0.0013 2017-01-01 no action Singapore 28 0.0051 2017-01-01 no action Slovakia 12 0.0022 2017-01-01 no action Slovenia 1 2e-04 2017-01-01 no action Somalia 2 4e-04 2017-01-01 no action South Africa 34 0.0061 2017-01-01 no action Spain 67 0.0121 2017-01-01 no action Sri Lanka 4 7e-04 2017-01-01 no action Sudan 2 4e-04 2017-01-01 no action Suriname 1 2e-04 2017-01-01 no action Swaziland 1 2e-04 2017-01-01 no action Sweden 36 0.0065 2017-01-01 no action Switzerland 41 0.0074 2017-01-01 no action Syrian Arab Republic 1 2e-04 2017-01-01 no action Taiwan, Province of China 16 0.0029 2017-01-01 no action Tajikistan 1 2e-04 2017-01-01 no action Tanzania, United Republic of 3 5e-04 2017-01-01 no action Thailand 21 0.0038 2017-01-01 no action Trinidad and Tobago 2 4e-04 2017-01-01 no action Tunisia 9 0.0016 2017-01-01 no action Turkey 26 0.0047 2017-01-01 no action Uganda 2 4e-04 2017-01-01 no action Ukraine 40 0.0072 2017-01-01 no action United Arab Emirates 15 0.0027 2017-01-01 no action United Kingdom 500 0.0903 2017-01-01 no action Uruguay 4 7e-04 2017-01-01 no action U.S. (Midwest) 424 0.0766 2017-01-01 no action U.S. (Northeast) 527 0.0952 2017-01-01 no action U.S. (Other) 7 0.0013 2017-01-01 no action U.S. (Pacific) 439 0.0793 2017-01-01 no action U.S. (South) 775 0.14 2017-01-01 no action U.S. (West) 130 0.0235 2017-01-01 no action Uzbekistan 1 2e-04 2017-01-01 no action Venezuela, Bolivarian Republic of 6 0.0011 2017-01-01 no action Viet Nam 24 0.0043 2017-01-01 no action Yemen 5 9e-04 2017-01-01 no action Zambia 2 4e-04 2017-01-01 no action Zimbabwe 6 0.0011 2017-01-01 other languages South Africa 1 1 2017-01-01 other projects Angola 2 0.0513 2017-01-01 other projects Bangladesh 2 0.0513 2017-01-01 other projects Cambodia 1 0.0256 2017-01-01 other projects Canada 1 0.0256 2017-01-01 other projects China 2 0.0513 2017-01-01 other projects France 2 0.0513 2017-01-01 other projects Greece 1 0.0256 2017-01-01 other projects Haiti 2 0.0513 2017-01-01 other projects India 7 0.1795 2017-01-01 other projects Indonesia 1 0.0256 2017-01-01 other projects Kenya 1 0.0256 2017-01-01 other projects Madagascar 1 0.0256 2017-01-01 other projects Mexico 3 0.0769 2017-01-01 other projects Morocco 3 0.0769 2017-01-01 other projects Myanmar 2 0.0513 2017-01-01 other projects Nigeria 1 0.0256 2017-01-01 other projects Peru 1 0.0256 2017-01-01 other projects Russian Federation 1 0.0256 2017-01-01 other projects South Africa 1 0.0256 2017-01-01 other projects U.S. (Midwest) 1 0.0256 2017-01-01 other projects U.S. (Northeast) 1 0.0256 2017-01-01 other projects U.S. (Pacific) 1 0.0256 2017-01-01 other projects Zimbabwe 1 0.0256 2017-01-01 primary links Algeria 9 0.0127 2017-01-01 primary links Argentina 3 0.0042 2017-01-01 primary links Australia 7 0.0099 2017-01-01 primary links Austria 4 0.0056 2017-01-01 primary links Azerbaijan 1 0.0014 2017-01-01 primary links Bangladesh 1 0.0014 2017-01-01 primary links Belarus 2 0.0028 2017-01-01 primary links Belgium 8 0.0113 2017-01-01 primary links Belize 1 0.0014 2017-01-01 primary links Bosnia and Herzegovina 2 0.0028 2017-01-01 primary links Brazil 8 0.0113 2017-01-01 primary links Bulgaria 1 0.0014 2017-01-01 primary links Canada 31 0.0438 2017-01-01 primary links Cayman Islands 1 0.0014 2017-01-01 primary links Chile 2 0.0028 2017-01-01 primary links China 21 0.0297 2017-01-01 primary links Colombia 1 0.0014 2017-01-01 primary links Croatia 2 0.0028 2017-01-01 primary links Czechia 6 0.0085 2017-01-01 primary links Denmark 3 0.0042 2017-01-01 primary links Dominican Republic 1 0.0014 2017-01-01 primary links Egypt 5 0.0071 2017-01-01 primary links Estonia 2 0.0028 2017-01-01 primary links Finland 9 0.0127 2017-01-01 primary links France 10 0.0141 2017-01-01 primary links Germany 42 0.0593 2017-01-01 primary links Greece 3 0.0042 2017-01-01 primary links Haiti 1 0.0014 2017-01-01 primary links Honduras 1 0.0014 2017-01-01 primary links Hong Kong 8 0.0113 2017-01-01 primary links Hungary 4 0.0056 2017-01-01 primary links Iceland 1 0.0014 2017-01-01 primary links India 17 0.024 2017-01-01 primary links Indonesia 2 0.0028 2017-01-01 primary links Iran, Islamic Republic of 1 0.0014 2017-01-01 primary links Iraq 2 0.0028 2017-01-01 primary links Ireland 2 0.0028 2017-01-01 primary links Israel 1 0.0014 2017-01-01 primary links Italy 19 0.0268 2017-01-01 primary links Japan 8 0.0113 2017-01-01 primary links Jordan 6 0.0085 2017-01-01 primary links Kazakhstan 1 0.0014 2017-01-01 primary links Korea, Republic of 5 0.0071 2017-01-01 primary links Kyrgyzstan 2 0.0028 2017-01-01 primary links Latvia 3 0.0042 2017-01-01 primary links Luxembourg 1 0.0014 2017-01-01 primary links Macedonia, Republic of 1 0.0014 2017-01-01 primary links Mexico 7 0.0099 2017-01-01 primary links Moldova, Republic of 1 0.0014 2017-01-01 primary links Morocco 2 0.0028 2017-01-01 primary links Myanmar 2 0.0028 2017-01-01 primary links Netherlands 13 0.0184 2017-01-01 primary links New Zealand 2 0.0028 2017-01-01 primary links Nigeria 2 0.0028 2017-01-01 primary links Norway 4 0.0056 2017-01-01 primary links Pakistan 10 0.0141 2017-01-01 primary links Peru 3 0.0042 2017-01-01 primary links Philippines 6 0.0085 2017-01-01 primary links Poland 7 0.0099 2017-01-01 primary links Portugal 2 0.0028 2017-01-01 primary links Qatar 1 0.0014 2017-01-01 primary links Romania 3 0.0042 2017-01-01 primary links Russian Federation 16 0.0226 2017-01-01 primary links Saudi Arabia 2 0.0028 2017-01-01 primary links Serbia 2 0.0028 2017-01-01 primary links Singapore 6 0.0085 2017-01-01 primary links Slovakia 3 0.0042 2017-01-01 primary links Slovenia 1 0.0014 2017-01-01 primary links Somalia 1 0.0014 2017-01-01 primary links South Africa 1 0.0014 2017-01-01 primary links Spain 14 0.0198 2017-01-01 primary links Sri Lanka 1 0.0014 2017-01-01 primary links Sweden 10 0.0141 2017-01-01 primary links Switzerland 8 0.0113 2017-01-01 primary links Thailand 1 0.0014 2017-01-01 primary links Tunisia 1 0.0014 2017-01-01 primary links Turkey 3 0.0042 2017-01-01 primary links Uganda 2 0.0028 2017-01-01 primary links Ukraine 5 0.0071 2017-01-01 primary links United Arab Emirates 2 0.0028 2017-01-01 primary links United Kingdom 58 0.0819 2017-01-01 primary links U.S. (Midwest) 49 0.0692 2017-01-01 primary links U.S. (Northeast) 57 0.0805 2017-01-01 primary links U.S. (Pacific) 38 0.0537 2017-01-01 primary links U.S. (South) 76 0.1073 2017-01-01 primary links U.S. (West) 8 0.0113 2017-01-01 primary links Venezuela, Bolivarian Republic of 1 0.0014 2017-01-01 primary links Viet Nam 2 0.0028 2017-01-01 primary links Yemen 3 0.0042 2017-01-01 search Albania 2 8e-04 2017-01-01 search Algeria 7 0.0029 2017-01-01 search Angola 31 0.0127 2017-01-01 search Argentina 6 0.0025 2017-01-01 search Armenia 1 4e-04 2017-01-01 search Australia 35 0.0144 2017-01-01 search Austria 16 0.0066 2017-01-01 search Bangladesh 11 0.0045 2017-01-01 search Belarus 5 0.0021 2017-01-01 search Belgium 12 0.0049 2017-01-01 search Bosnia and Herzegovina 1 4e-04 2017-01-01 search Brazil 11 0.0045 2017-01-01 search Bulgaria 1 4e-04 2017-01-01 search Canada 88 0.0362 2017-01-01 search Chile 1 4e-04 2017-01-01 search China 44 0.0181 2017-01-01 search Colombia 2 8e-04 2017-01-01 search Croatia 1 4e-04 2017-01-01 search Cyprus 2 8e-04 2017-01-01 search Czechia 11 0.0045 2017-01-01 search Denmark 4 0.0016 2017-01-01 search Dominican Republic 3 0.0012 2017-01-01 search Egypt 5 0.0021 2017-01-01 search Fiji 1 4e-04 2017-01-01 search Finland 10 0.0041 2017-01-01 search France 11 0.0045 2017-01-01 search Georgia 1 4e-04 2017-01-01 search Germany 58 0.0238 2017-01-01 search Ghana 1 4e-04 2017-01-01 search Greece 7 0.0029 2017-01-01 search Guatemala 1 4e-04 2017-01-01 search Hong Kong 2 8e-04 2017-01-01 search Hungary 9 0.0037 2017-01-01 search Iceland 2 8e-04 2017-01-01 search India 62 0.0255 2017-01-01 search Indonesia 6 0.0025 2017-01-01 search Iran, Islamic Republic of 5 0.0021 2017-01-01 search Iraq 1 4e-04 2017-01-01 search Ireland 12 0.0049 2017-01-01 search Isle of Man 2 8e-04 2017-01-01 search Israel 8 0.0033 2017-01-01 search Italy 8 0.0033 2017-01-01 search Jamaica 2 8e-04 2017-01-01 search Japan 8 0.0033 2017-01-01 search Jersey 1 4e-04 2017-01-01 search Jordan 1 4e-04 2017-01-01 search Kazakhstan 2 8e-04 2017-01-01 search Kenya 2 8e-04 2017-01-01 search Korea, Republic of 8 0.0033 2017-01-01 search Kuwait 1 4e-04 2017-01-01 search Lebanon 1 4e-04 2017-01-01 search Lithuania 1 4e-04 2017-01-01 search Macedonia, Republic of 2 8e-04 2017-01-01 search Malaysia 21 0.0086 2017-01-01 search Malta 1 4e-04 2017-01-01 search Mauritania 1 4e-04 2017-01-01 search Mexico 13 0.0053 2017-01-01 search Moldova, Republic of 1 4e-04 2017-01-01 search Mongolia 1 4e-04 2017-01-01 search Morocco 22 0.009 2017-01-01 search Myanmar 2 8e-04 2017-01-01 search Nepal 4 0.0016 2017-01-01 search Netherlands 21 0.0086 2017-01-01 search New Zealand 9 0.0037 2017-01-01 search Nigeria 5 0.0021 2017-01-01 search Norway 14 0.0058 2017-01-01 search Oman 2 8e-04 2017-01-01 search Other 3 0.0012 2017-01-01 search Pakistan 10 0.0041 2017-01-01 search Panama 1 4e-04 2017-01-01 search Philippines 28 0.0115 2017-01-01 search Poland 9 0.0037 2017-01-01 search Portugal 2 8e-04 2017-01-01 search Qatar 1 4e-04 2017-01-01 search Romania 2 8e-04 2017-01-01 search Russian Federation 22 0.009 2017-01-01 search Saudi Arabia 3 0.0012 2017-01-01 search Senegal 1 4e-04 2017-01-01 search Serbia 1 4e-04 2017-01-01 search Singapore 6 0.0025 2017-01-01 search Slovakia 4 0.0016 2017-01-01 search South Africa 10 0.0041 2017-01-01 search Spain 12 0.0049 2017-01-01 search Sri Lanka 1 4e-04 2017-01-01 search Sweden 13 0.0053 2017-01-01 search Switzerland 11 0.0045 2017-01-01 search Taiwan, Province of China 6 0.0025 2017-01-01 search Tajikistan 1 4e-04 2017-01-01 search Thailand 4 0.0016 2017-01-01 search Trinidad and Tobago 1 4e-04 2017-01-01 search Tunisia 4 0.0016 2017-01-01 search Turkey 6 0.0025 2017-01-01 search Ukraine 10 0.0041 2017-01-01 search United Arab Emirates 6 0.0025 2017-01-01 search United Kingdom 162 0.0666 2017-01-01 search Uruguay 1 4e-04 2017-01-01 search U.S. (Midwest) 278 0.1142 2017-01-01 search U.S. (Northeast) 315 0.1294 2017-01-01 search U.S. (Other) 4 0.0016 2017-01-01 search U.S. (Pacific) 257 0.1056 2017-01-01 search U.S. (South) 494 0.203 2017-01-01 search U.S. (West) 84 0.0345 2017-01-01 search Uzbekistan 1 4e-04 2017-01-01 search Viet Nam 4 0.0016 2017-01-01 search Yemen 1 4e-04 2017-01-01 search Zambia 1 4e-04 2017-01-01 search Zimbabwe 1 4e-04 2017-01-01 secondary links Bangladesh 1 0.0625 2017-01-01 secondary links Belgium 1 0.0625 2017-01-01 secondary links China 1 0.0625 2017-01-01 secondary links Greece 1 0.0625 2017-01-01 secondary links India 3 0.1875 2017-01-01 secondary links Morocco 1 0.0625 2017-01-01 secondary links Pakistan 2 0.125 2017-01-01 secondary links Singapore 1 0.0625 2017-01-01 secondary links South Africa 2 0.125 2017-01-01 secondary links Sweden 1 0.0625 2017-01-01 secondary links Thailand 1 0.0625 2017-01-01 secondary links Tunisia 1 0.0625 ... 2017-02-20 secondary links U.S. (Midwest) 1 0.0139 2017-02-20 secondary links U.S. (South) 4 0.0556 ``` 1. Executing report "first_visits_country" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/first_visits_country 2017-01-01 2017-01-02` **Output**: ``` date section_used country sessions proportion 2017-01-01 no action Albania 4 7e-04 2017-01-01 no action Algeria 32 0.0056 2017-01-01 no action Angola 62 0.0109 2017-01-01 no action Argentina 15 0.0026 2017-01-01 no action Armenia 3 5e-04 2017-01-01 no action Australia 80 0.0141 2017-01-01 no action Austria 32 0.0056 2017-01-01 no action Azerbaijan 1 2e-04 2017-01-01 no action Bahamas 1 2e-04 2017-01-01 no action Bahrain 1 2e-04 2017-01-01 no action Bangladesh 32 0.0056 2017-01-01 no action Barbados 1 2e-04 2017-01-01 no action Belarus 13 0.0023 2017-01-01 no action Belgium 30 0.0053 2017-01-01 no action Belize 1 2e-04 2017-01-01 no action Bolivia, Plurinational State of 2 4e-04 2017-01-01 no action Bosnia and Herzegovina 3 5e-04 2017-01-01 no action Brazil 33 0.0058 2017-01-01 no action Brunei Darussalam 2 4e-04 2017-01-01 no action Bulgaria 8 0.0014 2017-01-01 no action Burkina Faso 1 2e-04 2017-01-01 no action Cambodia 7 0.0012 2017-01-01 no action Cameroon 1 2e-04 2017-01-01 no action Canada 219 0.0386 2017-01-01 no action Cayman Islands 1 2e-04 2017-01-01 no action Central African Republic 1 2e-04 2017-01-01 no action Chile 8 0.0014 2017-01-01 no action China 75 0.0132 2017-01-01 no action Colombia 22 0.0039 2017-01-01 no action Congo, The Democratic Republic of the 1 2e-04 2017-01-01 no action Costa Rica 2 4e-04 2017-01-01 no action Cote d'Ivoire 1 2e-04 2017-01-01 no action Croatia 4 7e-04 2017-01-01 no action Cuba 1 2e-04 2017-01-01 no action Cyprus 3 5e-04 2017-01-01 no action Czechia 74 0.0131 2017-01-01 no action Denmark 14 0.0025 2017-01-01 no action Dominican Republic 6 0.0011 2017-01-01 no action Ecuador 2 4e-04 2017-01-01 no action Egypt 22 0.0039 2017-01-01 no action El Salvador 1 2e-04 2017-01-01 no action Estonia 4 7e-04 2017-01-01 no action Ethiopia 1 2e-04 2017-01-01 no action Fiji 2 4e-04 2017-01-01 no action Finland 23 0.0041 2017-01-01 no action France 98 0.0173 2017-01-01 no action Georgia 3 5e-04 2017-01-01 no action Germany 261 0.046 2017-01-01 no action Ghana 4 7e-04 2017-01-01 no action Greece 19 0.0034 2017-01-01 no action Greenland 1 2e-04 2017-01-01 no action Guatemala 3 5e-04 2017-01-01 no action Haiti 4 7e-04 2017-01-01 no action Honduras 2 4e-04 2017-01-01 no action Hong Kong 22 0.0039 2017-01-01 no action Hungary 20 0.0035 2017-01-01 no action Iceland 4 7e-04 2017-01-01 no action India 179 0.0316 2017-01-01 no action Indonesia 45 0.0079 2017-01-01 no action Iran, Islamic Republic of 20 0.0035 2017-01-01 no action Iraq 7 0.0012 2017-01-01 no action Ireland 19 0.0034 2017-01-01 no action Isle of Man 2 4e-04 2017-01-01 no action Israel 26 0.0046 2017-01-01 no action Italy 72 0.0127 2017-01-01 no action Jamaica 5 9e-04 2017-01-01 no action Japan 37 0.0065 2017-01-01 no action Jersey 2 4e-04 2017-01-01 no action Jordan 5 9e-04 2017-01-01 no action Kazakhstan 9 0.0016 2017-01-01 no action Kenya 5 9e-04 2017-01-01 no action Korea, Republic of 26 0.0046 2017-01-01 no action Kuwait 1 2e-04 2017-01-01 no action Kyrgyzstan 3 5e-04 2017-01-01 no action Latvia 5 9e-04 2017-01-01 no action Lebanon 1 2e-04 2017-01-01 no action Liberia 1 2e-04 2017-01-01 no action Lithuania 2 4e-04 2017-01-01 no action Luxembourg 3 5e-04 2017-01-01 no action Macedonia, Republic of 5 9e-04 2017-01-01 no action Madagascar 1 2e-04 2017-01-01 no action Malaysia 31 0.0055 2017-01-01 no action Mali 1 2e-04 2017-01-01 no action Malta 3 5e-04 2017-01-01 no action Mauritania 1 2e-04 2017-01-01 no action Mexico 51 0.009 2017-01-01 no action Moldova, Republic of 8 0.0014 2017-01-01 no action Mongolia 1 2e-04 2017-01-01 no action Montserrat 1 2e-04 2017-01-01 no action Morocco 52 0.0092 2017-01-01 no action Mozambique 1 2e-04 2017-01-01 no action Myanmar 13 0.0023 2017-01-01 no action Nepal 7 0.0012 2017-01-01 no action Netherlands 60 0.0106 2017-01-01 no action New Zealand 17 0.003 2017-01-01 no action Nicaragua 2 4e-04 2017-01-01 no action Nigeria 20 0.0035 2017-01-01 no action Norway 22 0.0039 2017-01-01 no action Oman 10 0.0018 2017-01-01 no action Other 12 0.0021 2017-01-01 no action Pakistan 40 0.0071 2017-01-01 no action Palestine, State of 2 4e-04 2017-01-01 no action Panama 2 4e-04 2017-01-01 no action Paraguay 3 5e-04 2017-01-01 no action Peru 12 0.0021 2017-01-01 no action Philippines 49 0.0086 2017-01-01 no action Poland 35 0.0062 2017-01-01 no action Portugal 8 0.0014 2017-01-01 no action Qatar 4 7e-04 2017-01-01 no action Romania 19 0.0034 2017-01-01 no action Russian Federation 96 0.0169 2017-01-01 no action Rwanda 1 2e-04 2017-01-01 no action Saudi Arabia 8 0.0014 2017-01-01 no action Senegal 4 7e-04 2017-01-01 no action Serbia 9 0.0016 2017-01-01 no action Singapore 28 0.0049 2017-01-01 no action Slovakia 12 0.0021 2017-01-01 no action Slovenia 1 2e-04 2017-01-01 no action Somalia 2 4e-04 2017-01-01 no action South Africa 36 0.0063 2017-01-01 no action Spain 69 0.0122 2017-01-01 no action Sri Lanka 4 7e-04 2017-01-01 no action Sudan 3 5e-04 2017-01-01 no action Suriname 1 2e-04 2017-01-01 no action Swaziland 1 2e-04 2017-01-01 no action Sweden 38 0.0067 2017-01-01 no action Switzerland 42 0.0074 2017-01-01 no action Syrian Arab Republic 1 2e-04 2017-01-01 no action Taiwan, Province of China 17 0.003 2017-01-01 no action Tajikistan 1 2e-04 2017-01-01 no action Tanzania, United Republic of 3 5e-04 2017-01-01 no action Thailand 22 0.0039 2017-01-01 no action Trinidad and Tobago 2 4e-04 2017-01-01 no action Tunisia 9 0.0016 2017-01-01 no action Turkey 26 0.0046 2017-01-01 no action Uganda 2 4e-04 2017-01-01 no action Ukraine 40 0.0071 2017-01-01 no action United Arab Emirates 15 0.0026 2017-01-01 no action United Kingdom 513 0.0905 2017-01-01 no action Uruguay 4 7e-04 2017-01-01 no action U.S. (Midwest) 440 0.0776 2017-01-01 no action U.S. (Northeast) 534 0.0942 2017-01-01 no action U.S. (Other) 7 0.0012 2017-01-01 no action U.S. (Pacific) 446 0.0787 2017-01-01 no action U.S. (South) 796 0.1404 2017-01-01 no action U.S. (West) 131 0.0231 2017-01-01 no action Uzbekistan 1 2e-04 2017-01-01 no action Venezuela, Bolivarian Republic of 6 0.0011 2017-01-01 no action Viet Nam 25 0.0044 2017-01-01 no action Yemen 5 9e-04 2017-01-01 no action Zambia 2 4e-04 2017-01-01 no action Zimbabwe 6 0.0011 2017-01-01 other languages South Africa 1 1 2017-01-01 other projects Angola 2 0.0513 2017-01-01 other projects Bangladesh 2 0.0513 2017-01-01 other projects Cambodia 1 0.0256 2017-01-01 other projects Canada 1 0.0256 2017-01-01 other projects China 2 0.0513 2017-01-01 other projects France 2 0.0513 2017-01-01 other projects Greece 1 0.0256 2017-01-01 other projects Haiti 2 0.0513 2017-01-01 other projects India 7 0.1795 2017-01-01 other projects Indonesia 1 0.0256 2017-01-01 other projects Kenya 1 0.0256 2017-01-01 other projects Madagascar 1 0.0256 2017-01-01 other projects Mexico 3 0.0769 2017-01-01 other projects Morocco 3 0.0769 2017-01-01 other projects Myanmar 2 0.0513 2017-01-01 other projects Nigeria 1 0.0256 2017-01-01 other projects Peru 1 0.0256 2017-01-01 other projects Russian Federation 1 0.0256 2017-01-01 other projects South Africa 1 0.0256 2017-01-01 other projects U.S. (Midwest) 1 0.0256 2017-01-01 other projects U.S. (Northeast) 1 0.0256 2017-01-01 other projects U.S. (Pacific) 1 0.0256 2017-01-01 other projects Zimbabwe 1 0.0256 2017-01-01 primary links Algeria 9 0.0122 2017-01-01 primary links Angola 1 0.0014 2017-01-01 primary links Argentina 3 0.0041 2017-01-01 primary links Australia 7 0.0095 2017-01-01 primary links Austria 4 0.0054 2017-01-01 primary links Azerbaijan 1 0.0014 2017-01-01 primary links Bangladesh 1 0.0014 2017-01-01 primary links Belarus 2 0.0027 2017-01-01 primary links Belgium 9 0.0122 2017-01-01 primary links Belize 1 0.0014 2017-01-01 primary links Bosnia and Herzegovina 2 0.0027 2017-01-01 primary links Brazil 8 0.0109 2017-01-01 primary links Bulgaria 1 0.0014 2017-01-01 primary links Canada 31 0.0422 2017-01-01 primary links Cayman Islands 1 0.0014 2017-01-01 primary links Chile 2 0.0027 2017-01-01 primary links China 23 0.0313 2017-01-01 primary links Colombia 1 0.0014 2017-01-01 primary links Croatia 2 0.0027 2017-01-01 primary links Czechia 6 0.0082 2017-01-01 primary links Denmark 4 0.0054 2017-01-01 primary links Dominican Republic 1 0.0014 2017-01-01 primary links Egypt 5 0.0068 2017-01-01 primary links Estonia 2 0.0027 2017-01-01 primary links Finland 9 0.0122 2017-01-01 primary links France 10 0.0136 2017-01-01 primary links Germany 44 0.0599 2017-01-01 primary links Greece 3 0.0041 2017-01-01 primary links Greenland 1 0.0014 2017-01-01 primary links Haiti 1 0.0014 2017-01-01 primary links Honduras 1 0.0014 2017-01-01 primary links Hong Kong 8 0.0109 2017-01-01 primary links Hungary 4 0.0054 2017-01-01 primary links Iceland 1 0.0014 2017-01-01 primary links India 17 0.0231 2017-01-01 primary links Indonesia 2 0.0027 2017-01-01 primary links Iran, Islamic Republic of 4 0.0054 2017-01-01 primary links Iraq 2 0.0027 2017-01-01 primary links Ireland 2 0.0027 2017-01-01 primary links Israel 2 0.0027 2017-01-01 primary links Italy 20 0.0272 2017-01-01 primary links Japan 8 0.0109 2017-01-01 primary links Jordan 6 0.0082 2017-01-01 primary links Kazakhstan 1 0.0014 2017-01-01 primary links Korea, Republic of 5 0.0068 2017-01-01 primary links Kyrgyzstan 2 0.0027 2017-01-01 primary links Latvia 3 0.0041 2017-01-01 primary links Luxembourg 1 0.0014 2017-01-01 primary links Macedonia, Republic of 1 0.0014 2017-01-01 primary links Mexico 7 0.0095 2017-01-01 primary links Moldova, Republic of 1 0.0014 2017-01-01 primary links Morocco 3 0.0041 2017-01-01 primary links Myanmar 2 0.0027 2017-01-01 primary links Netherlands 13 0.0177 2017-01-01 primary links New Zealand 2 0.0027 2017-01-01 primary links Nigeria 2 0.0027 2017-01-01 primary links Norway 5 0.0068 2017-01-01 primary links Pakistan 10 0.0136 2017-01-01 primary links Peru 3 0.0041 2017-01-01 primary links Philippines 6 0.0082 2017-01-01 primary links Poland 8 0.0109 2017-01-01 primary links Portugal 2 0.0027 2017-01-01 primary links Qatar 1 0.0014 2017-01-01 primary links Romania 3 0.0041 2017-01-01 primary links Russian Federation 16 0.0218 2017-01-01 primary links Saudi Arabia 2 0.0027 2017-01-01 primary links Serbia 2 0.0027 2017-01-01 primary links Singapore 6 0.0082 2017-01-01 primary links Slovakia 3 0.0041 2017-01-01 primary links Slovenia 1 0.0014 2017-01-01 primary links Somalia 1 0.0014 2017-01-01 primary links South Africa 1 0.0014 2017-01-01 primary links Spain 14 0.019 2017-01-01 primary links Sri Lanka 1 0.0014 2017-01-01 primary links Sweden 10 0.0136 2017-01-01 primary links Switzerland 9 0.0122 2017-01-01 primary links Thailand 1 0.0014 2017-01-01 primary links Tunisia 1 0.0014 2017-01-01 primary links Turkey 3 0.0041 2017-01-01 primary links Uganda 2 0.0027 2017-01-01 primary links Ukraine 5 0.0068 2017-01-01 primary links United Arab Emirates 2 0.0027 2017-01-01 primary links United Kingdom 59 0.0803 2017-01-01 primary links U.S. (Midwest) 53 0.0721 2017-01-01 primary links U.S. (Northeast) 57 0.0776 2017-01-01 primary links U.S. (Pacific) 38 0.0517 2017-01-01 primary links U.S. (South) 80 0.1088 2017-01-01 primary links U.S. (West) 8 0.0109 2017-01-01 primary links Venezuela, Bolivarian Republic of 1 0.0014 2017-01-01 primary links Viet Nam 3 0.0041 2017-01-01 primary links Yemen 3 0.0041 2017-01-01 search Albania 2 8e-04 2017-01-01 search Algeria 7 0.0028 2017-01-01 search Angola 31 0.0122 2017-01-01 search Argentina 8 0.0032 2017-01-01 search Armenia 1 4e-04 2017-01-01 search Australia 37 0.0146 2017-01-01 search Austria 16 0.0063 2017-01-01 search Bangladesh 12 0.0047 2017-01-01 search Belarus 5 0.002 2017-01-01 search Belgium 12 0.0047 2017-01-01 search Bosnia and Herzegovina 1 4e-04 2017-01-01 search Brazil 11 0.0043 2017-01-01 search Bulgaria 1 4e-04 2017-01-01 search Canada 90 0.0356 2017-01-01 search Chile 2 8e-04 2017-01-01 search China 44 0.0174 2017-01-01 search Colombia 2 8e-04 2017-01-01 search Croatia 1 4e-04 2017-01-01 search Cyprus 2 8e-04 2017-01-01 search Czechia 11 0.0043 2017-01-01 search Denmark 4 0.0016 2017-01-01 search Dominican Republic 3 0.0012 2017-01-01 search Egypt 5 0.002 2017-01-01 search Fiji 1 4e-04 2017-01-01 search Finland 11 0.0043 2017-01-01 search France 11 0.0043 2017-01-01 search Georgia 1 4e-04 2017-01-01 search Germany 59 0.0233 2017-01-01 search Ghana 1 4e-04 2017-01-01 search Greece 7 0.0028 2017-01-01 search Guatemala 1 4e-04 2017-01-01 search Hong Kong 2 8e-04 2017-01-01 search Hungary 10 0.004 2017-01-01 search Iceland 2 8e-04 2017-01-01 search India 72 0.0284 2017-01-01 search Indonesia 6 0.0024 2017-01-01 search Iran, Islamic Republic of 5 0.002 2017-01-01 search Iraq 1 4e-04 2017-01-01 search Ireland 12 0.0047 2017-01-01 search Isle of Man 2 8e-04 2017-01-01 search Israel 8 0.0032 2017-01-01 search Italy 9 0.0036 2017-01-01 search Jamaica 3 0.0012 2017-01-01 search Japan 8 0.0032 2017-01-01 search Jersey 1 4e-04 2017-01-01 search Jordan 1 4e-04 2017-01-01 search Kazakhstan 3 0.0012 2017-01-01 search Kenya 3 0.0012 2017-01-01 search Korea, Republic of 8 0.0032 2017-01-01 search Kuwait 1 4e-04 2017-01-01 search Lebanon 1 4e-04 2017-01-01 search Lithuania 1 4e-04 2017-01-01 search Macedonia, Republic of 2 8e-04 2017-01-01 search Malaysia 21 0.0083 2017-01-01 search Malta 1 4e-04 2017-01-01 search Mauritania 1 4e-04 2017-01-01 search Mexico 13 0.0051 2017-01-01 search Moldova, Republic of 1 4e-04 2017-01-01 search Mongolia 1 4e-04 2017-01-01 search Morocco 24 0.0095 2017-01-01 search Myanmar 2 8e-04 2017-01-01 search Nepal 4 0.0016 2017-01-01 search Netherlands 24 0.0095 2017-01-01 search New Zealand 9 0.0036 2017-01-01 search Nigeria 5 0.002 2017-01-01 search Norway 14 0.0055 2017-01-01 search Oman 2 8e-04 2017-01-01 search Other 6 0.0024 2017-01-01 search Pakistan 10 0.004 2017-01-01 search Panama 1 4e-04 2017-01-01 search Philippines 29 0.0115 2017-01-01 search Poland 11 0.0043 2017-01-01 search Portugal 2 8e-04 2017-01-01 search Qatar 1 4e-04 2017-01-01 search Romania 2 8e-04 2017-01-01 search Russian Federation 23 0.0091 2017-01-01 search Saudi Arabia 3 0.0012 2017-01-01 search Senegal 1 4e-04 2017-01-01 search Serbia 2 8e-04 2017-01-01 search Singapore 6 0.0024 2017-01-01 search Slovakia 4 0.0016 2017-01-01 search South Africa 11 0.0043 2017-01-01 search Spain 13 0.0051 2017-01-01 search Sri Lanka 1 4e-04 2017-01-01 search Sweden 15 0.0059 2017-01-01 search Switzerland 11 0.0043 2017-01-01 search Taiwan, Province of China 7 0.0028 2017-01-01 search Tajikistan 1 4e-04 2017-01-01 search Thailand 4 0.0016 2017-01-01 search Trinidad and Tobago 1 4e-04 2017-01-01 search Tunisia 4 0.0016 2017-01-01 search Turkey 6 0.0024 2017-01-01 search Ukraine 10 0.004 2017-01-01 search United Arab Emirates 6 0.0024 2017-01-01 search United Kingdom 166 0.0656 2017-01-01 search Uruguay 1 4e-04 2017-01-01 search U.S. (Midwest) 292 0.1154 2017-01-01 search U.S. (Northeast) 326 0.1288 2017-01-01 search U.S. (Other) 4 0.0016 2017-01-01 search U.S. (Pacific) 263 0.1039 2017-01-01 search U.S. (South) 509 0.2011 2017-01-01 search U.S. (West) 86 0.034 2017-01-01 search Uzbekistan 1 4e-04 2017-01-01 search Viet Nam 6 0.0024 2017-01-01 search Yemen 1 4e-04 2017-01-01 search Zambia 1 4e-04 2017-01-01 search Zimbabwe 1 4e-04 2017-01-01 secondary links Bangladesh 1 0.0625 2017-01-01 secondary links Belgium 1 0.0625 2017-01-01 secondary links China 1 0.0625 2017-01-01 secondary links Greece 1 0.0625 2017-01-01 secondary links India 3 0.1875 2017-01-01 secondary links Morocco 1 0.0625 2017-01-01 secondary links Pakistan 2 0.125 2017-01-01 secondary links Singapore 1 0.0625 2017-01-01 secondary links South Africa 2 0.125 2017-01-01 secondary links Sweden 1 0.0625 2017-01-01 secondary links Thailand 1 0.0625 2017-01-01 secondary links Tunisia 1 0.0625 ``` It took 3s to generate this report. ### Report 32 of 44 _Wikipedia.org Portal visitors' dwell-time metrics_ **Note**: this report is configured to have one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/portal/dwell_metrics.tsv**: ``` date Median 95th percentile 99th percentile 2015-11-22 8 47.8999999999996 162.359999999997 2015-11-23 7 51 353.730000000002 ... 2017-01-01 10 249.1 765.280000000001 ... 2017-02-19 9 254.3 813.3 2017-02-20 8 221.349999999999 755 ``` 1. Executing report "dwell_metrics" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/dwell_metrics 2017-01-01 2017-01-02` **Output**: ``` date Median 95th percentile 99th percentile 2017-01-01 10 228.9 759.579999999997 ``` It took 3s to generate this report. ### Report 33 of 44 _Sampled traffic to Wikipedia.org Portal from top 10 countries_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/portal/country_data.tsv**: ``` date country events 2015-12-23 United States 2738 2015-12-23 Russia 122 ... 2017-01-01 U.S. (West) 262 2017-01-01 U.S. (South) 1676 2017-01-01 U.S. (Pacific) 930 2017-01-01 U.S. (Other) 11 2017-01-01 U.S. (Northeast) 1128 2017-01-01 U.S. (Midwest) 887 2017-01-01 United Kingdom 827 2017-01-01 Russia 157 2017-01-01 Philippines 114 2017-01-01 Other 3382 2017-01-01 India 337 2017-01-01 Germany 427 2017-01-01 France 152 2017-01-01 China 195 2017-01-01 Canada 431 2017-01-01 Australia 146 ... 2017-02-20 Canada 549 2017-02-20 Australia 195 ``` 1. Executing report "country_data" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/country_data 2017-01-01 2017-01-02` **Output**: ``` date country events 2017-01-01 U.S. (West) 268 2017-01-01 U.S. (South) 1714 2017-01-01 U.S. (Pacific) 943 2017-01-01 U.S. (Other) 11 2017-01-01 U.S. (Northeast) 1147 2017-01-01 U.S. (Midwest) 921 2017-01-01 United Kingdom 847 2017-01-01 Russia 158 2017-01-01 Philippines 118 2017-01-01 Other 3472 2017-01-01 India 353 2017-01-01 Germany 437 2017-01-01 France 154 2017-01-01 China 199 2017-01-01 Canada 436 2017-01-01 Australia 151 ``` It took 3s to generate this report. ### Report 34 of 44 _Clicks to Wikimedia projects from Wikipedia.org Portal_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/portal/clickthrough_sisterprojects.tsv**: ``` date destination users clicks 2016-10-01 commons.wikimedia.org 7 14 2016-10-01 https://wikimediafoundation.org/wiki/Privacy_policy 1 1 ... 2017-01-01 commons.wikimedia.org 11 11 2017-01-01 mediawiki.org 4 4 2017-01-01 meta.wikimedia.org 2 3 2017-01-01 species.wikimedia.org 2 3 2017-01-01 wikibooks.org 4 5 2017-01-01 wikidata.org 4 4 2017-01-01 wikimediafoundation.org 5 7 2017-01-01 wikinews.org 3 3 2017-01-01 wikiquote.org 6 7 2017-01-01 wikisource.org 3 3 2017-01-01 wikivoyage.org 5 6 2017-01-01 wiktionary.org 5 7 ... 2017-02-20 wikivoyage.org 8 8 2017-02-20 wiktionary.org 13 13 ``` 1. Executing report "clickthrough_sisterprojects" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/clickthrough_sisterprojects 2017-01-01 2017-01-02` **Output**: ``` date destination users clicks 2017-01-01 commons.wikimedia.org 11 11 2017-01-01 mediawiki.org 4 4 2017-01-01 meta.wikimedia.org 2 3 2017-01-01 species.wikimedia.org 2 3 2017-01-01 wikibooks.org 4 5 2017-01-01 wikidata.org 4 4 2017-01-01 wikimediafoundation.org 5 7 2017-01-01 wikinews.org 3 3 2017-01-01 wikiquote.org 6 7 2017-01-01 wikisource.org 3 3 2017-01-01 wikivoyage.org 5 6 2017-01-01 wiktionary.org 5 7 ``` It took 3s to generate this report. ### Report 35 of 44 _Last action (no action vs clickthrough) by Wikipedia.org Portal visitors_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/portal/clickthrough_rate.tsv**: ``` date type events 2015-11-18 landing 238 2015-11-18 clickthrough 111 ... 2017-01-01 clickthrough 3983 2017-01-01 landing 7079 ... 2017-02-20 clickthrough 5675 2017-02-20 landing 9623 ``` 1. Executing report "clickthrough_rate" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/clickthrough_rate 2017-01-01 2017-01-02` **Output**: ``` date type events 2017-01-01 clickthrough 4065 2017-01-01 landing 7264 ``` It took 3s to generate this report. ### Report 36 of 44 _Action performed on Wikipedia.org Portal on each user's initial visit_ **Note**: this report is configured to have one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/portal/clickthrough_firstvisit.tsv**: ``` date no action primary links search secondary links other languages other projects 2015-12-31 0.6929 0.0645 0.2386 0.0023 0 0.0014 2016-01-01 0.6883 0.0664 0.2258 0.0032 0 0.0162 ... 2017-01-01 0.6339 0.0811 0.2786 0.0018 1e-04 0.0045 ... 2017-02-19 0.6471 0.0835 0.2565 0.005 4e-04 0.0075 2017-02-20 0.6309 0.092 0.2662 0.0059 2e-04 0.0047 ``` 1. Executing report "clickthrough_firstvisit" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/clickthrough_firstvisit 2017-01-01 2017-01-02` **Output**: ``` date no action primary links search secondary links other languages other projects 2017-01-01 0.6306 0.0817 0.2815 0.0018 1e-04 0.0043 ``` It took 3s to generate this report. ### Report 37 of 44 _Last action (no action vs clickthrough) by Wikipedia.org Portal visitors, broken down by section_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/portal/clickthrough_breakdown.tsv**: ``` date section_used events 2015-11-18 search 82 2015-11-18 primary links 23 ... 2017-01-01 no action 2621 2017-01-01 other languages 1 2017-01-01 other projects 34 2017-01-01 primary links 650 2017-01-01 search 2279 2017-01-01 secondary links 14 ... 2017-02-20 search 3026 2017-02-20 secondary links 40 ``` 1. Executing report "clickthrough_breakdown" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/clickthrough_breakdown 2017-01-01 2017-01-02` **Output**: ``` date section_used events 2017-01-01 no action 2654 2017-01-01 other languages 1 2017-01-01 other projects 34 2017-01-01 primary links 661 2017-01-01 search 2315 2017-01-01 secondary links 14 ``` It took 3s to generate this report. ### Report 38 of 44 _Sampled traffic to Wikipedia.org Portal, broken down by country_ **Note**: this report is configured to allow more than one row per day. **Note**: this report is configured to be "rolling" -- 60 maximum number of days allowed in the final dataset. Some of the existing data in **/a/aggregate-datasets/discovery/portal/all_country_data.tsv**: ``` date country events ctr n_visit ctr_visit n_session ctr_session 2016-12-23 Zimbabwe 2 0.0 2 0.0 2 0.0 2016-12-23 Yemen 12 0.4167 7 0.5714 5 0.6 ... 2017-01-01 Zimbabwe 15 0.4 10 0.5 6 0.5 2017-01-01 Zambia 3 0.3333 2 0.5 2 0.5 2017-01-01 Yemen 14 0.3571 9 0.4444 5 0.6 2017-01-01 Viet Nam 37 0.2162 29 0.2759 24 0.2917 2017-01-01 Venezuela, Bolivarian Republic of 7 0.1429 6 0.1667 6 0.1667 2017-01-01 Uzbekistan 5 0.4 3 0.6667 1 1 2017-01-01 U.S. (West) 262 0.4046 159 0.6604 132 0.7348 2017-01-01 U.S. (South) 1676 0.4153 993 0.6868 784 0.7436 2017-01-01 U.S. (Pacific) 930 0.3892 579 0.6183 444 0.6914 2017-01-01 U.S. (Other) 11 0.3636 7 0.5714 7 0.5714 2017-01-01 U.S. (Northeast) 1128 0.3972 690 0.642 532 0.7368 2017-01-01 U.S. (Midwest) 887 0.4216 523 0.7055 434 0.788 2017-01-01 Uruguay 7 0.1429 6 0.1667 4 0.25 2017-01-01 United Kingdom 827 0.3071 577 0.4315 502 0.4502 2017-01-01 United Arab Emirates 24 0.3333 16 0.5 15 0.5333 2017-01-01 Ukraine 75 0.2933 53 0.4151 40 0.375 2017-01-01 Uganda 4 0.5 2 1 2 1 2017-01-01 Turkey 38 0.2368 29 0.3103 26 0.3462 2017-01-01 Tunisia 20 0.45 11 0.6364 9 0.5556 2017-01-01 Trinidad and Tobago 3 0.3333 2 0.5 2 0.5 2017-01-01 Thailand 31 0.2258 25 0.28 21 0.3333 2017-01-01 Tanzania, United Republic of 4 0 4 0 3 0 2017-01-01 Tajikistan 2 0.5 1 1 1 1 2017-01-01 Taiwan, Province of China 42 0.2381 33 0.303 17 0.4118 2017-01-01 Syrian Arab Republic 3 0.3333 2 0.5 1 1 2017-01-01 Switzerland 73 0.3014 52 0.4038 42 0.5 2017-01-01 Sweden 81 0.4074 49 0.6531 37 0.7297 2017-01-01 Swaziland 1 0 1 0 1 0 2017-01-01 Suriname 1 0 1 0 1 0 2017-01-01 Sudan 6 0 6 0 2 0 2017-01-01 Sri Lanka 6 0.3333 4 0.5 4 0.5 2017-01-01 Spain 110 0.3 78 0.4231 68 0.3971 2017-01-01 South Africa 53 0.3019 38 0.3947 35 0.4286 2017-01-01 Somalia 3 0.3333 2 0.5 2 0.5 2017-01-01 Slovenia 2 0.5 1 1 1 1 2017-01-01 Slovakia 29 0.3793 18 0.6111 12 0.6667 2017-01-01 Singapore 43 0.3256 29 0.4483 28 0.4286 2017-01-01 Serbia 14 0.2857 11 0.3636 8 0.5 2017-01-01 Senegal 5 0.2 4 0.25 3 0.3333 2017-01-01 Saudi Arabia 17 0.4118 10 0.6 8 0.5 2017-01-01 Rwanda 1 0 1 0 1 0 2017-01-01 Russian Federation 157 0.2866 112 0.375 96 0.3854 2017-01-01 Romania 34 0.2059 29 0.2414 19 0.3684 2017-01-01 Qatar 6 0.3333 4 0.5 4 0.5 2017-01-01 Portugal 14 0.3571 10 0.5 9 0.5556 2017-01-01 Poland 61 0.377 40 0.575 34 0.5588 2017-01-01 Philippines 114 0.4298 66 0.6667 47 0.7234 2017-01-01 Peru 19 0.2632 15 0.3333 11 0.4545 2017-01-01 Paraguay 3 0 3 0 3 0 2017-01-01 Panama 3 0.3333 2 0.5 2 0.5 2017-01-01 Palestine, State of 2 0 2 0 2 0 2017-01-01 Pakistan 82 0.3537 53 0.5283 38 0.5789 2017-01-01 Other 20 0.35 15 0.4 12 0.4167 2017-01-01 Oman 27 0.2593 20 0.35 10 0.3 2017-01-01 Norway 51 0.4706 28 0.8214 21 0.9048 2017-01-01 Nigeria 37 0.2703 27 0.3704 19 0.4211 2017-01-01 Nicaragua 2 0 2 0 2 0 2017-01-01 New Zealand 29 0.3793 18 0.6111 17 0.6471 2017-01-01 Netherlands 239 0.4728 136 0.6765 59 0.678 2017-01-01 Nepal 13 0.3846 8 0.5 7 0.4286 2017-01-01 Myanmar 27 0.3333 18 0.5 13 0.4615 2017-01-01 Mozambique 3 0 3 0 1 0 2017-01-01 Morocco 163 0.3865 101 0.604 51 0.5882 2017-01-01 Montserrat 1 0 1 0 1 0 2017-01-01 Mongolia 3 0.3333 2 0.5 1 1 2017-01-01 Moldova, Republic of 17 0.2353 13 0.3077 8 0.5 2017-01-01 Mexico 89 0.3034 63 0.3968 50 0.46 2017-01-01 Mauritania 2 0.5 1 1 1 1 2017-01-01 Malta 4 0.25 3 0.3333 3 0.3333 2017-01-01 Mali 1 0 1 0 1 0 2017-01-01 Malaysia 69 0.4058 41 0.5366 31 0.5484 2017-01-01 Madagascar 2 0.5 1 1 1 1 2017-01-01 Macedonia, Republic of 11 0.4545 6 0.6667 5 0.8 2017-01-01 Luxembourg 6 0.1667 5 0.2 3 0.3333 2017-01-01 Lithuania 4 0.25 3 0.3333 2 0.5 2017-01-01 Liberia 1 0 1 0 1 0 2017-01-01 Lebanon 2 0.5 1 1 1 1 2017-01-01 Latvia 7 0.4286 4 0.75 4 0.75 2017-01-01 Kyrgyzstan 5 0.4 3 0.6667 3 0.6667 2017-01-01 Kuwait 3 0.3333 2 0.5 1 1 2017-01-01 Korea, Republic of 41 0.3171 28 0.4643 26 0.5 2017-01-01 Kenya 8 0.375 5 0.6 5 0.6 2017-01-01 Kazakhstan 12 0.25 9 0.3333 9 0.3333 2017-01-01 Jordan 12 0.5833 5 0.6 5 0.6 2017-01-01 Jersey 3 0.3333 2 0.5 2 0.5 2017-01-01 Japan 62 0.3065 43 0.4419 36 0.4722 2017-01-01 Jamaica 12 0.4167 8 0.5 5 0.6 2017-01-01 Italy 127 0.252 95 0.3158 69 0.3768 2017-01-01 Israel 38 0.2632 29 0.3448 26 0.3846 2017-01-01 Isle of Man 4 0.5 2 1 2 1 2017-01-01 Ireland 37 0.4054 22 0.6818 19 0.7368 2017-01-01 Iraq 10 0.3 7 0.4286 7 0.4286 2017-01-01 Iran, Islamic Republic of 35 0.2571 27 0.2963 20 0.4 2017-01-01 Indonesia 73 0.1781 61 0.1639 45 0.2222 2017-01-01 India 337 0.3264 229 0.4148 178 0.4663 2017-01-01 Iceland 7 0.4286 4 0.75 4 0.75 2017-01-01 Hungary 34 0.4118 21 0.6667 20 0.7 2017-01-01 Hong Kong 36 0.3056 25 0.32 22 0.3182 2017-01-01 Honduras 3 0.3333 2 0.5 2 0.5 2017-01-01 Haiti 32 0.4688 17 0.7059 4 0.75 2017-01-01 Guatemala 4 0.25 3 0.3333 3 0.3333 2017-01-01 Greenland 1 0 1 0 1 0 2017-01-01 Greece 41 0.3659 26 0.5769 19 0.6316 2017-01-01 Ghana 6 0.1667 5 0.2 4 0.25 2017-01-01 Germany 427 0.2553 320 0.3312 256 0.4023 2017-01-01 Georgia 4 0.25 3 0.3333 3 0.3333 2017-01-01 France 152 0.1842 125 0.216 96 0.2396 2017-01-01 Finland 44 0.4773 24 0.875 23 0.913 2017-01-01 Fiji 4 0.25 3 0.3333 2 0.5 2017-01-01 Ethiopia 1 0 1 0 1 0 2017-01-01 Estonia 6 0.3333 4 0.5 4 0.5 2017-01-01 El Salvador 1 0 1 0 1 0 2017-01-01 Egypt 40 0.325 27 0.4444 21 0.4286 2017-01-01 Ecuador 2 0 2 0 2 0 2017-01-01 Dominican Republic 17 0.3529 11 0.5455 6 0.6667 2017-01-01 Denmark 21 0.3333 14 0.5 13 0.5385 2017-01-01 Czechia 153 0.1438 132 0.1591 75 0.2533 2017-01-01 Cyprus 7 0.2857 5 0.4 3 0.6667 2017-01-01 Cuba 1 0 1 0 1 0 2017-01-01 Croatia 13 0.4615 7 0.8571 4 0.75 2017-01-01 Cote d'Ivoire 1 0 1 0 1 0 2017-01-01 Costa Rica 1 0 1 0 1 0 2017-01-01 Congo, The Democratic Republic of the 6 0.3333 4 0.5 1 1 2017-01-01 Colombia 26 0.1154 23 0.1304 22 0.1364 2017-01-01 China 195 0.5077 98 0.6735 75 0.7067 2017-01-01 Chile 12 0.25 9 0.3333 7 0.4286 2017-01-01 Central African Republic 1 0 1 0 1 0 2017-01-01 Cayman Islands 2 0.5 1 1 1 1 2017-01-01 Canada 431 0.3318 294 0.4796 217 0.5853 2017-01-01 Cameroon 2 0 2 0 1 0 2017-01-01 Cambodia 10 0.1 9 0.1111 7 0.1429 2017-01-01 Burkina Faso 1 0 1 0 1 0 2017-01-01 Bulgaria 14 0.2143 11 0.2727 8 0.25 2017-01-01 Brunei Darussalam 4 0.25 4 0.25 2 0.5 2017-01-01 Brazil 62 0.3387 41 0.4634 33 0.5152 2017-01-01 Bosnia and Herzegovina 8 0.5 4 1 3 1 2017-01-01 Bolivia, Plurinational State of 2 0 2 0 2 0 2017-01-01 Belize 2 0.5 1 1 1 1 2017-01-01 Belgium 59 0.4068 35 0.6857 30 0.7 2017-01-01 Belarus 21 0.3333 14 0.5 13 0.5385 2017-01-01 Barbados 1 0 1 0 1 0 2017-01-01 Bangladesh 55 0.3273 38 0.4737 32 0.5625 2017-01-01 Bahrain 1 0 1 0 1 0 2017-01-01 Bahamas 2 0 2 0 1 0 2017-01-01 Azerbaijan 2 0.5 1 1 1 1 2017-01-01 Austria 62 0.3548 40 0.55 32 0.625 2017-01-01 Australia 146 0.3562 95 0.5474 78 0.5641 2017-01-01 Armenia 5 0.2 4 0.25 3 0.3333 2017-01-01 Argentina 24 0.4167 15 0.6667 15 0.6667 2017-01-01 Angola 129 0.3178 89 0.4045 62 0.4839 2017-01-01 Algeria 69 0.3478 45 0.5111 32 0.5625 2017-01-01 Albania 5 0.4 3 0.6667 3 0.6667 ... 2017-02-20 Albania 17 0.4118 10 0.7 7 0.7143 2017-02-20 Afghanistan 11 0.2727 8 0.375 6 0.3333 ``` 1. Executing report "all_country_data" from the metrics/portal module. 2. About to run the following command: `sh modules/metrics/portal/all_country_data 2017-01-01 2017-01-02` **Output**: ``` date country events ctr n_visit ctr_visit n_session ctr_session 2017-01-01 Zimbabwe 15 0.4 10 0.5 6 0.5 2017-01-01 Zambia 3 0.3333 2 0.5 2 0.5 2017-01-01 Yemen 14 0.3571 9 0.4444 5 0.6 2017-01-01 Viet Nam 41 0.2683 30 0.3667 25 0.4 2017-01-01 Venezuela, Bolivarian Republic of 7 0.1429 6 0.1667 6 0.1667 2017-01-01 Uzbekistan 5 0.4 3 0.6667 1 1 2017-01-01 U.S. (West) 268 0.403 161 0.6646 132 0.7348 2017-01-01 U.S. (South) 1714 0.4131 1009 0.6878 796 0.7437 2017-01-01 U.S. (Pacific) 943 0.3871 584 0.6199 447 0.6935 2017-01-01 U.S. (Other) 11 0.3636 7 0.5714 7 0.5714 2017-01-01 U.S. (Northeast) 1147 0.3976 694 0.6499 535 0.7421 2017-01-01 U.S. (Midwest) 921 0.4191 535 0.7178 440 0.8 2017-01-01 Uruguay 7 0.1429 6 0.1667 4 0.25 2017-01-01 United Kingdom 847 0.3034 591 0.4281 513 0.4464 2017-01-01 United Arab Emirates 24 0.3333 16 0.5 15 0.5333 2017-01-01 Ukraine 75 0.2933 53 0.4151 40 0.375 2017-01-01 Uganda 4 0.5 2 1 2 1 2017-01-01 Turkey 38 0.2368 29 0.3103 26 0.3462 2017-01-01 Tunisia 20 0.45 11 0.6364 9 0.5556 2017-01-01 Trinidad and Tobago 3 0.3333 2 0.5 2 0.5 2017-01-01 Thailand 32 0.2188 26 0.2692 22 0.3182 2017-01-01 Tanzania, United Republic of 4 0 4 0 3 0 2017-01-01 Tajikistan 2 0.5 1 1 1 1 2017-01-01 Taiwan, Province of China 43 0.2326 33 0.303 17 0.4118 2017-01-01 Syrian Arab Republic 3 0.3333 2 0.5 1 1 2017-01-01 Switzerland 77 0.2987 54 0.4074 42 0.5 2017-01-01 Sweden 84 0.4048 50 0.66 38 0.7368 2017-01-01 Swaziland 1 0 1 0 1 0 2017-01-01 Suriname 1 0 1 0 1 0 2017-01-01 Sudan 7 0 7 0 3 0 2017-01-01 Sri Lanka 6 0.3333 4 0.5 4 0.5 2017-01-01 Spain 112 0.2946 79 0.4177 69 0.3913 2017-01-01 South Africa 55 0.2909 39 0.3846 36 0.4167 2017-01-01 Somalia 3 0.3333 2 0.5 2 0.5 2017-01-01 Slovenia 2 0.5 1 1 1 1 2017-01-01 Slovakia 29 0.3793 18 0.6111 12 0.6667 2017-01-01 Singapore 44 0.3182 30 0.4333 28 0.4286 2017-01-01 Serbia 17 0.2353 13 0.3077 9 0.4444 2017-01-01 Senegal 6 0.1667 5 0.2 4 0.25 2017-01-01 Saudi Arabia 17 0.4118 10 0.6 8 0.5 2017-01-01 Rwanda 1 0 1 0 1 0 2017-01-01 Russian Federation 158 0.2911 112 0.3839 96 0.3958 2017-01-01 Romania 34 0.2059 29 0.2414 19 0.3684 2017-01-01 Qatar 6 0.3333 4 0.5 4 0.5 2017-01-01 Portugal 14 0.3571 10 0.5 9 0.5556 2017-01-01 Poland 65 0.3692 41 0.5854 35 0.5714 2017-01-01 Philippines 118 0.4237 69 0.6522 49 0.7143 2017-01-01 Peru 20 0.25 16 0.3125 12 0.4167 2017-01-01 Paraguay 3 0 3 0 3 0 2017-01-01 Panama 3 0.3333 2 0.5 2 0.5 2017-01-01 Palestine, State of 2 0 2 0 2 0 2017-01-01 Pakistan 84 0.3452 55 0.5091 40 0.55 2017-01-01 Other 22 0.3182 15 0.4 12 0.4167 2017-01-01 Oman 27 0.2593 20 0.35 10 0.3 2017-01-01 Norway 53 0.4528 29 0.7931 22 0.8636 2017-01-01 Nigeria 39 0.2821 28 0.3929 20 0.4 2017-01-01 Nicaragua 2 0 2 0 2 0 2017-01-01 New Zealand 29 0.3793 18 0.6111 17 0.6471 2017-01-01 Netherlands 252 0.4524 147 0.6871 60 0.6833 2017-01-01 Nepal 13 0.3846 8 0.5 7 0.4286 2017-01-01 Myanmar 27 0.3333 18 0.5 13 0.4615 2017-01-01 Mozambique 3 0 3 0 1 0 2017-01-01 Morocco 169 0.3964 103 0.6117 53 0.5849 2017-01-01 Montserrat 1 0 1 0 1 0 2017-01-01 Mongolia 3 0.3333 2 0.5 1 1 2017-01-01 Moldova, Republic of 17 0.2353 13 0.3077 8 0.5 2017-01-01 Mexico 90 0.3 64 0.3906 51 0.451 2017-01-01 Mauritania 2 0.5 1 1 1 1 2017-01-01 Malta 4 0.25 3 0.3333 3 0.3333 2017-01-01 Mali 1 0 1 0 1 0 2017-01-01 Malaysia 69 0.4058 41 0.5366 31 0.5484 2017-01-01 Madagascar 2 0.5 1 1 1 1 2017-01-01 Macedonia, Republic of 11 0.4545 6 0.6667 5 0.8 2017-01-01 Luxembourg 6 0.1667 5 0.2 3 0.3333 2017-01-01 Lithuania 4 0.25 3 0.3333 2 0.5 2017-01-01 Liberia 1 0 1 0 1 0 2017-01-01 Lebanon 2 0.5 1 1 1 1 2017-01-01 Latvia 8 0.375 5 0.6 5 0.6 2017-01-01 Kyrgyzstan 5 0.4 3 0.6667 3 0.6667 2017-01-01 Kuwait 3 0.3333 2 0.5 1 1 2017-01-01 Korea, Republic of 41 0.3171 28 0.4643 26 0.5 2017-01-01 Kenya 9 0.4444 5 0.8 5 0.8 2017-01-01 Kazakhstan 14 0.2857 10 0.4 9 0.4444 2017-01-01 Jordan 12 0.5833 5 0.6 5 0.6 2017-01-01 Jersey 3 0.3333 2 0.5 2 0.5 2017-01-01 Japan 63 0.3016 44 0.4318 37 0.4595 2017-01-01 Jamaica 14 0.3571 9 0.4444 5 0.6 2017-01-01 Italy 134 0.2537 100 0.32 72 0.3889 2017-01-01 Israel 39 0.2564 29 0.3448 26 0.3846 2017-01-01 Isle of Man 4 0.5 2 1 2 1 2017-01-01 Ireland 37 0.4054 22 0.6818 19 0.7368 2017-01-01 Iraq 10 0.3 7 0.4286 7 0.4286 2017-01-01 Iran, Islamic Republic of 37 0.2703 27 0.2963 20 0.4 2017-01-01 Indonesia 74 0.1757 62 0.1613 46 0.2174 2017-01-01 India 353 0.3399 234 0.4103 180 0.4611 2017-01-01 Iceland 7 0.4286 4 0.75 4 0.75 2017-01-01 Hungary 35 0.4 21 0.6667 20 0.7 2017-01-01 Hong Kong 36 0.3056 25 0.32 22 0.3182 2017-01-01 Honduras 3 0.3333 2 0.5 2 0.5 2017-01-01 Haiti 32 0.4688 17 0.7059 4 0.75 2017-01-01 Guatemala 4 0.25 3 0.3333 3 0.3333 2017-01-01 Greenland 2 0.5 1 1 1 1 2017-01-01 Greece 41 0.3659 26 0.5769 19 0.6316 2017-01-01 Ghana 6 0.1667 5 0.2 4 0.25 2017-01-01 Germany 437 0.254 326 0.3313 261 0.3985 2017-01-01 Georgia 4 0.25 3 0.3333 3 0.3333 2017-01-01 France 154 0.1818 127 0.2126 98 0.2347 2017-01-01 Finland 45 0.4667 24 0.875 23 0.913 2017-01-01 Fiji 4 0.25 3 0.3333 2 0.5 2017-01-01 Ethiopia 1 0 1 0 1 0 2017-01-01 Estonia 6 0.3333 4 0.5 4 0.5 2017-01-01 El Salvador 1 0 1 0 1 0 2017-01-01 Egypt 41 0.3171 28 0.4286 22 0.4091 2017-01-01 Ecuador 2 0 2 0 2 0 2017-01-01 Dominican Republic 17 0.3529 11 0.5455 6 0.6667 2017-01-01 Denmark 23 0.3478 15 0.5333 14 0.5714 2017-01-01 Czechia 153 0.1438 132 0.1591 75 0.2533 2017-01-01 Cyprus 7 0.2857 5 0.4 3 0.6667 2017-01-01 Cuba 1 0 1 0 1 0 2017-01-01 Croatia 13 0.4615 7 0.8571 4 0.75 2017-01-01 Cote d'Ivoire 1 0 1 0 1 0 2017-01-01 Costa Rica 2 0 2 0 2 0 2017-01-01 Congo, The Democratic Republic of the 6 0.3333 4 0.5 1 1 2017-01-01 Colombia 26 0.1154 23 0.1304 22 0.1364 2017-01-01 China 199 0.5025 100 0.67 76 0.7105 2017-01-01 Chile 15 0.3333 10 0.5 8 0.625 2017-01-01 Central African Republic 1 0 1 0 1 0 2017-01-01 Cayman Islands 2 0.5 1 1 1 1 2017-01-01 Canada 436 0.3326 296 0.4831 219 0.589 2017-01-01 Cameroon 2 0 2 0 1 0 2017-01-01 Cambodia 10 0.1 9 0.1111 7 0.1429 2017-01-01 Burkina Faso 1 0 1 0 1 0 2017-01-01 Bulgaria 14 0.2143 11 0.2727 8 0.25 2017-01-01 Brunei Darussalam 4 0.25 4 0.25 2 0.5 2017-01-01 Brazil 62 0.3387 41 0.4634 33 0.5152 2017-01-01 Bosnia and Herzegovina 8 0.5 4 1 3 1 2017-01-01 Bolivia, Plurinational State of 2 0 2 0 2 0 2017-01-01 Belize 2 0.5 1 1 1 1 2017-01-01 Belgium 60 0.4167 35 0.7143 30 0.7333 2017-01-01 Belarus 21 0.3333 14 0.5 13 0.5385 2017-01-01 Barbados 1 0 1 0 1 0 2017-01-01 Bangladesh 56 0.3214 38 0.4737 32 0.5625 2017-01-01 Bahrain 1 0 1 0 1 0 2017-01-01 Bahamas 2 0 2 0 1 0 2017-01-01 Azerbaijan 2 0.5 1 1 1 1 2017-01-01 Austria 62 0.3548 40 0.55 32 0.625 2017-01-01 Australia 151 0.3576 97 0.5567 80 0.5625 2017-01-01 Armenia 5 0.2 4 0.25 3 0.3333 2017-01-01 Argentina 26 0.4231 15 0.7333 15 0.7333 2017-01-01 Angola 130 0.3154 89 0.4045 62 0.4839 2017-01-01 Algeria 69 0.3478 45 0.5111 32 0.5625 2017-01-01 Albania 6 0.3333 4 0.5 4 0.5 ``` It took 3s to generate this report. ### Report 39 of 44 _Counts of users broken down by feature (e.g. GeoHack)_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/maps/users_per_feature.tsv**: ``` date feature users 2015-08-04 GeoHack 4829400 2015-08-04 Wikivoyage 58900 ... 2017-01-01 GeoHack 3545100 2017-01-01 WikiMiniAtlas 119300 2017-01-01 WIWOSM 133000 2017-01-01 Wikivoyage 11000 ... 2017-02-20 WikiMiniAtlas 221500 2017-02-20 Wikivoyage 21400 ``` 1. Executing report "users_per_feature" from the metrics/maps module. 2. Filling in the timestamp placeholders in the SQL query. 3. About to run the following query: ```SQL SELECT DATE('20170101') AS date, event_feature AS feature, COUNT(DISTINCT(event_userToken))*100 AS users FROM GeoFeatures_12914994 WHERE timestamp >= '20170101' AND timestamp < '20170102' GROUP BY date, feature; ``` **Output**: ``` date feature users 2017-01-01 GeoHack 3587100 2017-01-01 WIWOSM 134400 2017-01-01 WikiMiniAtlas 119300 2017-01-01 Wikivoyage 11000 ``` It took 5m 35s to generate this report. ### Report 40 of 44 _Actions broken down by feature (e.g. GeoHack)_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/maps/actions_per_tool.tsv**: ``` date feature action events 2015-08-04 GeoHack open 66022 2015-08-04 Wikivoyage interaction 489 ... 2017-01-01 GeoHack open 44050 2017-01-01 WikiMiniAtlas interaction 523 2017-01-01 WIWOSM open 344 2017-01-01 WIWOSM close 808 2017-01-01 WikiMiniAtlas open 1346 2017-01-01 Wikivoyage interaction 87 2017-01-01 WikiMiniAtlas close 927 2017-01-01 WIWOSM interaction 517 2017-01-01 Wikivoyage view 29 ... 2017-02-20 Wikivoyage interaction 172 2017-02-20 Wikivoyage view 48 ``` 1. Executing report "actions_per_tool" from the metrics/maps module. 2. Filling in the timestamp placeholders in the SQL query. 3. About to run the following query: ```SQL SELECT DATE('20170101') AS date, event_feature AS feature, event_action AS action, COUNT(*) AS events FROM GeoFeatures_12914994 WHERE timestamp >= '20170101' AND timestamp < '20170102' GROUP BY date, feature, action; ``` **Output**: ``` date feature action events 2017-01-01 GeoHack open 44613 2017-01-01 WIWOSM close 818 2017-01-01 WIWOSM interaction 523 2017-01-01 WIWOSM open 347 2017-01-01 WikiMiniAtlas close 937 2017-01-01 WikiMiniAtlas interaction 527 2017-01-01 WikiMiniAtlas open 1366 2017-01-01 Wikivoyage interaction 87 2017-01-01 Wikivoyage view 29 ``` It took 26s to generate this report. ### Report 41 of 44 _Counts of users broken down by top 10 countries_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/maps/users_by_country.tsv**: ``` date country users 2016-02-06 RU 0.33 2016-02-06 IT 0.13 ... 2017-01-01 US 0.05 2017-01-01 ES 0.03 2017-01-01 DE 0.03 2017-01-01 RU 0.02 2017-01-01 IT 0.02 2017-01-01 IN 0.02 2017-01-01 GB 0.02 2017-01-01 FR 0.02 2017-01-01 UA 0 2017-01-01 Other 0.8 ... 2017-02-20 UA 0.007 2017-02-20 US 0.083 ``` 1. Executing report "users_by_country" from the metrics/maps module. 2. About to run the following command: `sh modules/metrics/maps/users_by_country 2017-01-01 2017-01-02` **Output**: ``` date country users 2017-01-01 DE 0.025 2017-01-01 ES 0.031 2017-01-01 FR 0.016 2017-01-01 GB 0.016 2017-01-01 IN 0.016 2017-01-01 IT 0.017 2017-01-01 Other 0.802 2017-01-01 RU 0.019 2017-01-01 UA 0.005 2017-01-01 US 0.053 ``` It took 7m 9s to generate this report. ### Report 42 of 44 _Tile counts by style, zoom level, etc._ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/maps/tile_aggregates_with_automata.tsv**: ``` date style zoom scale format cache users total average median percentile95 percentile99 2015-08-28 osm 3 1 png miss 1 33 33 33 33 33 2015-08-28 osm 4 1 pbf miss 1 84 84 84 84 84 ... 2017-01-01 osm-intl 0 1 png hit 583 772 1 1 2 10 2017-01-01 osm-intl 0 1.5 png hit 7 9 1 1 2 2 2017-01-01 osm-intl 0 2 png hit 19 19 1 1 1 1 2017-01-01 osm-intl 1 1 png hit 2648 13476 5 4 12 24 2017-01-01 osm-intl 1 1.5 png hit 15 62 4 4 7 7 2017-01-01 osm-intl 1 2 png hit 28 121 4 4 4 13 2017-01-01 osm-intl 1 2 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 10 1 png hit 7774 165096 21 10 64 170 2017-01-01 osm-intl 10 1 png pass 33 43 1 1 3 3 2017-01-01 osm-intl 10 1 png miss 4735 93708 20 4 29 93 2017-01-01 osm-intl 10 1.3 png miss 43 694 16 6 78 84 2017-01-01 osm-intl 10 1.3 png hit 14 132 9 3 33 34 2017-01-01 osm-intl 10 1.5 png hit 26 240 9 6 25 37 2017-01-01 osm-intl 10 2 png miss 175 1569 9 6 23 40 2017-01-01 osm-intl 10 2 png hit 139 1504 11 8 23 61 2017-01-01 osm-intl 10 3 png miss 68 699 10 9 20 60 2017-01-01 osm-intl 10 3 png hit 29 276 10 9 17 27 2017-01-01 osm-intl 11 1 png hit 12009 222904 19 9 56 160 2017-01-01 osm-intl 11 1 png miss 7611 147866 19 5 31 80 2017-01-01 osm-intl 11 1 png pass 38 45 1 1 3 4 2017-01-01 osm-intl 11 1.3 png hit 16 127 8 7 17 18 2017-01-01 osm-intl 11 1.3 png miss 53 1277 24 9 102 175 2017-01-01 osm-intl 11 1.5 png miss 64 1116 17 9 60 123 2017-01-01 osm-intl 11 1.5 png hit 24 209 9 6 29 34 2017-01-01 osm-intl 11 2 png hit 180 1832 10 7 27 64 2017-01-01 osm-intl 11 2 png miss 252 2643 10 8 29 61 2017-01-01 osm-intl 11 3 png miss 95 1010 11 8 23 45 2017-01-01 osm-intl 11 3 png hit 52 493 9 8 23 27 2017-01-01 osm-intl 12 1 png miss 11103 179351 16 6 37 118 2017-01-01 osm-intl 12 1 png hit 52565 2192874 42 15 159 390 2017-01-01 osm-intl 12 1 png pass 94 104 1 1 2 3 2017-01-01 osm-intl 12 1.3 png hit 11 280 25 9 108 185 2017-01-01 osm-intl 12 1.3 png miss 75 1640 22 9 45 304 2017-01-01 osm-intl 12 1.5 png miss 90 1221 14 8 32 95 2017-01-01 osm-intl 12 1.5 png hit 31 225 7 6 16 20 2017-01-01 osm-intl 12 2 png miss 344 3712 11 8 26 53 2017-01-01 osm-intl 12 2 png hit 272 2827 10 8 28 55 2017-01-01 osm-intl 12 2.6 png miss 7 106 15 18 29 30 2017-01-01 osm-intl 12 3 png miss 155 1814 12 9 30 73 2017-01-01 osm-intl 12 3 png hit 86 821 10 8 24 31 2017-01-01 osm-intl 13 1 png miss 9146 207650 23 8 47 144 2017-01-01 osm-intl 13 1 png hit 88782 7872090 89 28 336 941 2017-01-01 osm-intl 13 1 png pass 131 145 1 1 2 3 2017-01-01 osm-intl 13 1.3 png miss 141 2301 16 6 44 119 2017-01-01 osm-intl 13 1.3 png hit 33 296 9 6 22 53 2017-01-01 osm-intl 13 1.5 png hit 68 308 5 4 14 17 2017-01-01 osm-intl 13 1.5 png miss 178 2321 13 6 34 120 2017-01-01 osm-intl 13 2 png miss 621 6370 10 6 29 65 2017-01-01 osm-intl 13 2 png hit 535 5361 10 6 28 54 2017-01-01 osm-intl 13 3 png miss 253 3234 13 9 31 113 2017-01-01 osm-intl 13 3 png hit 131 1347 10 9 22 38 2017-01-01 osm-intl 14 1 png miss 12042 500752 42 9 58 182 2017-01-01 osm-intl 14 1 png hit 122831 14657298 119 42 480 1150 2017-01-01 osm-intl 14 1 png pass 299 329 1 1 2 3 2017-01-01 osm-intl 14 1.3 png miss 85 1339 16 9 38 99 2017-01-01 osm-intl 14 1.3 png hit 28 191 7 6 22 28 2017-01-01 osm-intl 14 1.5 png miss 120 1345 11 9 27 57 2017-01-01 osm-intl 14 1.5 png hit 41 221 5 3 17 31 2017-01-01 osm-intl 14 2 png miss 389 3880 10 6 30 53 2017-01-01 osm-intl 14 2 png hit 388 3540 9 6 26 40 2017-01-01 osm-intl 14 2.6 png miss 9 120 13 10 27 32 2017-01-01 osm-intl 14 3 png hit 76 714 9 9 21 34 2017-01-01 osm-intl 14 3 png miss 157 1583 10 8 23 48 2017-01-01 osm-intl 15 1 png miss 17935 501814 28 6 41 132 2017-01-01 osm-intl 15 1 png hit 165080 21761174 132 46 533 1261 2017-01-01 osm-intl 15 1 png pass 483 527 1 1 2 3 2017-01-01 osm-intl 15 1.3 png miss 73 1393 19 9 60 122 2017-01-01 osm-intl 15 1.3 png hit 27 166 6 5 12 23 2017-01-01 osm-intl 15 1.5 png hit 17 103 6 4 15 18 2017-01-01 osm-intl 15 2 png hit 232 2381 10 7 24 69 2017-01-01 osm-intl 15 2 png miss 268 3068 11 7 36 62 2017-01-01 osm-intl 15 2.6 png miss 9 79 9 10 12 12 2017-01-01 osm-intl 15 3 png hit 59 658 11 9 26 62 2017-01-01 osm-intl 15 3 png miss 112 1040 9 8 18 39 2017-01-01 osm-intl 16 1 png miss 13622 192030 14 4 45 131 2017-01-01 osm-intl 16 1 png hit 132692 13704320 103 38 411 943 2017-01-01 osm-intl 16 1 png pass 645 700 1 1 2 3 2017-01-01 osm-intl 16 1.3 png miss 34 993 29 24 78 94 2017-01-01 osm-intl 16 2 png hit 72 919 13 8 50 72 2017-01-01 osm-intl 16 2 png miss 128 2285 18 12 41 68 2017-01-01 osm-intl 16 3 png miss 48 522 11 10 24 33 2017-01-01 osm-intl 16 3 png hit 16 158 10 8 24 24 2017-01-01 osm-intl 17 1 png miss 20100 184817 9 3 33 93 2017-01-01 osm-intl 17 1 png hit 108298 8326328 77 32 291 658 2017-01-01 osm-intl 17 1 png pass 804 860 1 1 2 2 2017-01-01 osm-intl 17 1.3 png hit 6 85 14 17 21 21 2017-01-01 osm-intl 17 1.3 png miss 30 933 31 28 74 92 2017-01-01 osm-intl 17 2 png miss 96 1793 19 16 44 60 2017-01-01 osm-intl 17 2 png hit 31 535 17 12 51 61 2017-01-01 osm-intl 17 3 png miss 33 506 15 11 35 51 2017-01-01 osm-intl 18 1 png hit 70328 3717868 53 24 188 415 2017-01-01 osm-intl 18 1 png miss 28555 288238 10 4 32 92 2017-01-01 osm-intl 18 1 png pass 867 963 1 1 2 3 2017-01-01 osm-intl 18 1.3 png miss 11 437 40 24 94 102 2017-01-01 osm-intl 18 2 png miss 35 595 17 12 40 46 2017-01-01 osm-intl 18 3 png miss 18 354 20 12 40 101 2017-01-01 osm-intl 2 1 png hit 20686 454572 22 16 53 112 2017-01-01 osm-intl 2 1.5 png hit 16 138 9 7 18 18 2017-01-01 osm-intl 2 2 png hit 31 266 9 6 17 27 2017-01-01 osm-intl 2 2 png miss 9 12 1 1 3 3 2017-01-01 osm-intl 3 1 png hit 5531 185057 33 17 96 240 2017-01-01 osm-intl 3 1 png miss 7 7 1 1 1 1 2017-01-01 osm-intl 3 2 png hit 42 478 11 8 29 42 2017-01-01 osm-intl 3 3 png hit 13 107 8 7 13 13 2017-01-01 osm-intl 3 3 png miss 11 33 3 3 6 7 2017-01-01 osm-intl 4 1 png hit 3772 65265 17 12 53 122 2017-01-01 osm-intl 4 1 png miss 73 141 2 1 7 13 2017-01-01 osm-intl 4 1.3 png miss 9 54 6 3 17 23 2017-01-01 osm-intl 4 1.5 png hit 42 565 13 8 44 59 2017-01-01 osm-intl 4 1.5 png miss 17 71 4 3 11 11 2017-01-01 osm-intl 4 2 png hit 97 945 10 8 25 36 2017-01-01 osm-intl 4 2 png miss 33 111 3 2 10 14 2017-01-01 osm-intl 4 3 png hit 23 158 7 8 11 13 2017-01-01 osm-intl 5 1 png hit 5875 129819 22 12 59 157 2017-01-01 osm-intl 5 1 png miss 242 603 2 1 8 17 2017-01-01 osm-intl 5 1.3 png hit 18 160 9 7 22 22 2017-01-01 osm-intl 5 1.3 png miss 15 110 7 6 20 27 2017-01-01 osm-intl 5 1.5 png hit 35 384 11 6 35 43 2017-01-01 osm-intl 5 2 png hit 92 856 9 7 26 37 2017-01-01 osm-intl 5 2 png miss 51 236 5 2 15 27 2017-01-01 osm-intl 6 1 png hit 6053 138619 23 12 56 143 2017-01-01 osm-intl 6 1 png miss 637 2413 4 2 11 29 2017-01-01 osm-intl 6 1 png pass 16 18 1 1 2 2 2017-01-01 osm-intl 6 1.3 png hit 14 122 9 4 26 34 2017-01-01 osm-intl 6 1.3 png miss 21 175 8 4 26 55 2017-01-01 osm-intl 6 1.5 png hit 31 438 14 6 65 75 2017-01-01 osm-intl 6 2 png miss 71 478 7 4 19 31 2017-01-01 osm-intl 6 2 png hit 101 1063 11 6 33 51 2017-01-01 osm-intl 6 3 png hit 24 115 5 4 12 12 2017-01-01 osm-intl 7 1 png hit 11678 301923 26 20 67 137 2017-01-01 osm-intl 7 1 png miss 1372 6214 5 2 13 34 2017-01-01 osm-intl 7 1 png pass 27 35 1 1 3 6 2017-01-01 osm-intl 7 1.3 png miss 24 231 10 7 31 32 2017-01-01 osm-intl 7 1.5 png hit 41 365 9 6 25 40 2017-01-01 osm-intl 7 1.5 png miss 45 423 9 5 39 68 2017-01-01 osm-intl 7 2 png hit 85 940 11 6 40 57 2017-01-01 osm-intl 7 2 png miss 76 528 7 6 24 31 2017-01-01 osm-intl 7 2.6 png miss 2 66 33 33 55 57 2017-01-01 osm-intl 7 3 png hit 19 131 7 4 15 30 2017-01-01 osm-intl 7 3 png miss 28 209 7 6 19 24 2017-01-01 osm-intl 8 1 png hit 7042 158731 23 12 66 151 2017-01-01 osm-intl 8 1 png miss 2213 20632 9 2 17 51 2017-01-01 osm-intl 8 1 png pass 18 18 1 1 1 1 2017-01-01 osm-intl 8 1.3 png miss 33 511 15 9 43 54 2017-01-01 osm-intl 8 1.5 png hit 31 376 12 7 38 45 2017-01-01 osm-intl 8 1.5 png miss 48 570 12 8 39 99 2017-01-01 osm-intl 8 2 png hit 104 1170 11 7 35 50 2017-01-01 osm-intl 8 2 png miss 104 869 8 4 26 42 2017-01-01 osm-intl 8 3 png hit 22 143 6 6 16 16 2017-01-01 osm-intl 9 1 png hit 7845 192668 25 12 66 175 2017-01-01 osm-intl 9 1 png miss 3281 88164 27 3 18 55 2017-01-01 osm-intl 9 1 png pass 35 52 1 1 3 6 2017-01-01 osm-intl 9 1.3 png miss 26 403 16 9 37 46 2017-01-01 osm-intl 9 1.3 png hit 11 114 10 6 26 29 2017-01-01 osm-intl 9 1.5 png miss 49 646 13 9 38 90 2017-01-01 osm-intl 9 2 png miss 120 1168 10 7 26 53 2017-01-01 osm-intl 9 2 png hit 93 862 9 6 25 38 2017-01-01 osm-intl 9 3 png miss 33 453 14 9 42 85 2017-01-01 osm-intl 10 1.5 png miss 65 824 13 9 34 66 2017-01-01 osm-intl 10 2.6 png miss 4 66 16 17 24 24 2017-01-01 osm-intl 11 2.6 png miss 5 111 22 12 59 67 2017-01-01 osm-intl 15 1.5 png miss 84 1172 14 9 41 78 2017-01-01 osm-intl 16 1.3 png hit 5 88 18 15 36 39 2017-01-01 osm-intl 16 1.5 png miss 39 723 19 12 57 77 2017-01-01 osm-intl 17 1.5 png miss 32 983 31 16 107 122 2017-01-01 osm-intl 17 3 png hit 7 132 19 15 39 39 2017-01-01 osm-intl 2 1 png miss 4 4 1 1 1 1 2017-01-01 osm-intl 2 1.3 png miss 3 8 3 3 4 4 2017-01-01 osm-intl 2 1.5 png miss 3 7 2 1 5 5 2017-01-01 osm-intl 2 3 png miss 4 12 3 3 5 5 2017-01-01 osm-intl 3 1 png pass 6 6 1 1 1 1 2017-01-01 osm-intl 3 1.5 png hit 17 210 12 11 24 35 2017-01-01 osm-intl 4 3 png miss 17 49 3 2 9 9 2017-01-01 osm-intl 5 1 png pass 11 11 1 1 1 1 2017-01-01 osm-intl 5 1.5 png miss 24 136 6 3 17 29 2017-01-01 osm-intl 5 3 png miss 22 130 6 5 12 28 2017-01-01 osm-intl 5 3 png hit 25 122 5 4 10 14 2017-01-01 osm-intl 6 1.5 png miss 29 230 8 6 22 44 2017-01-01 osm-intl 6 3 png miss 32 186 6 4 12 21 2017-01-01 osm-intl 8 1.3 png hit 13 72 6 4 14 21 2017-01-01 osm-intl 9 1.5 png hit 26 216 8 6 22 28 2017-01-01 osm-intl 9 3 png hit 16 164 10 9 18 18 2017-01-01 osm-intl 1 1.3 png hit 8 31 4 4 4 4 2017-01-01 osm-intl 13 2.6 png miss 9 110 12 12 20 21 2017-01-01 osm-intl 18 2 png hit 11 151 14 13 27 32 2017-01-01 osm-intl 18 3 png hit 5 95 19 21 38 39 2017-01-01 osm-intl 2 1 png pass 4 4 1 1 1 1 2017-01-01 osm-intl 2 1.3 png hit 4 24 6 5 11 12 2017-01-01 osm-intl 3 1.3 png hit 8 53 7 6 12 13 2017-01-01 osm-intl 3 1.5 png miss 11 36 3 2 8 10 2017-01-01 osm-intl 3 2 png miss 23 54 2 1 5 9 2017-01-01 osm-intl 7 1.3 png hit 18 107 6 4 14 22 2017-01-01 osm-intl 0 1.5 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 18 1.5 png miss 20 869 43 21 164 208 2017-01-01 osm-intl 4 1.3 png hit 9 73 8 4 24 29 2017-01-01 osm-intl 4 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 8 3 png miss 42 374 9 7 20 39 2017-01-01 osm-intl 1 1.3 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 12 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 16 1.3 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 17 1.5 png hit 3 4 1 1 2 2 2017-01-01 osm-intl 4 1 png pass 5 5 1 1 1 1 2017-01-01 osm-intl 8 2.6 png miss 2 32 16 16 18 18 2017-01-01 osm-intl 0 1.3 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 16 1.5 png hit 4 26 6 6 12 12 2017-01-01 osm-intl 18 1.5 png hit 5 31 6 3 13 13 2017-01-01 osm-intl 2 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 0 1.3 png hit 2 2 1 1 1 1 2017-01-01 osm-intl 2 3 png hit 7 33 5 6 8 8 2017-01-01 osm-intl 0 2 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 1 1.5 png miss 2 3 2 2 2 2 2017-01-01 osm-intl 1 3 png hit 2 7 4 4 4 4 2017-01-01 osm-intl 11 3 png pass 1 4 4 4 4 4 2017-01-01 osm-intl 8 2.6 png hit 1 2 2 2 2 2 2017-01-01 osm-intl 13 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 3 2.6 png miss 1 14 14 14 14 14 2017-01-01 osm-intl 9 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 18 1.3 png hit 1 12 12 12 12 12 2017-01-01 osm-intl 3 1.3 png miss 4 28 7 2 20 23 2017-01-01 osm-intl 3 2 png pass 1 2 2 2 2 2 2017-01-01 osm-intl 1 3 png miss 2 5 2 3 4 4 2017-01-01 osm-intl 5 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 8 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 0 3 png hit 2 6 3 3 5 5 2017-01-01 osm-intl 16 2.6 png miss 2 22 11 11 13 13 2017-01-01 osm-intl 16 2.6 png hit 1 1 1 1 1 1 2017-01-01 osm-intl 4 2.6 png miss 1 9 9 9 9 9 2017-01-01 osm-intl 17 2.6 png hit 1 1 1 1 1 1 2017-01-01 osm-intl 7 2 png pass 1 2 2 2 2 2 2017-01-01 osm-intl 17 2.6 png miss 1 16 16 16 16 16 2017-01-01 osm-intl 5 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 6 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 0 3 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 10 2.6 png hit 1 11 11 11 11 11 2017-01-01 osm-intl 13 1.3 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 14 3 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 18 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 14 2.6 png hit 1 1 1 1 1 1 2017-01-01 osm-intl 15 3 png pass 1 1 1 1 1 1 ... 2017-02-20 osm-intl 8 1.3 png pass 1 1 1 1 1 1 2017-02-20 osm-pbf 14 1 pbf miss 1 48 48 48 48 48 ``` 1. Executing report "tile_aggregates_with_automata" from the metrics/maps module. 2. About to run the following command: `sh modules/metrics/maps/tile_aggregates_with_automata 2017-01-01 2017-01-02` **Output**: ``` date style zoom scale format cache users total average median percentile95 percentile99 2017-01-01 osm-intl 0 1 png hit 583 772 1 1 2 10 2017-01-01 osm-intl 0 1.5 png hit 7 9 1 1 2 2 2017-01-01 osm-intl 0 2 png hit 19 19 1 1 1 1 2017-01-01 osm-intl 1 1 png hit 2648 13476 5 4 12 24 2017-01-01 osm-intl 1 1.5 png hit 15 62 4 4 7 7 2017-01-01 osm-intl 1 2 png hit 28 121 4 4 4 13 2017-01-01 osm-intl 10 1 png hit 7774 165096 21 10 64 170 2017-01-01 osm-intl 10 1 png miss 4735 93708 20 4 29 93 2017-01-01 osm-intl 10 1 png pass 33 43 1 1 3 3 2017-01-01 osm-intl 10 1.3 png miss 43 694 16 6 78 84 2017-01-01 osm-intl 10 1.5 png hit 26 240 9 6 25 37 2017-01-01 osm-intl 10 1.5 png miss 65 824 13 9 34 66 2017-01-01 osm-intl 10 2 png hit 139 1504 11 8 23 61 2017-01-01 osm-intl 10 2 png miss 175 1569 9 6 23 40 2017-01-01 osm-intl 10 2.6 png miss 4 66 16 17 24 24 2017-01-01 osm-intl 10 3 png hit 29 276 10 9 17 27 2017-01-01 osm-intl 10 3 png miss 68 699 10 9 20 60 2017-01-01 osm-intl 11 1 png hit 12009 222904 19 9 56 160 2017-01-01 osm-intl 11 1 png miss 7611 147866 19 5 31 80 2017-01-01 osm-intl 11 1 png pass 38 45 1 1 3 4 2017-01-01 osm-intl 11 1.3 png miss 53 1277 24 9 102 175 2017-01-01 osm-intl 11 1.5 png hit 24 209 9 6 29 34 2017-01-01 osm-intl 11 1.5 png miss 64 1116 17 9 60 123 2017-01-01 osm-intl 11 2 png hit 180 1832 10 7 27 64 2017-01-01 osm-intl 11 2 png miss 252 2643 10 8 29 61 2017-01-01 osm-intl 11 3 png hit 52 493 9 8 23 27 2017-01-01 osm-intl 11 3 png miss 95 1010 11 8 23 45 2017-01-01 osm-intl 12 1 png hit 52564 2192874 42 15 159 390 2017-01-01 osm-intl 12 1 png miss 11103 179351 16 6 37 118 2017-01-01 osm-intl 12 1 png pass 94 104 1 1 2 3 2017-01-01 osm-intl 12 1.3 png miss 75 1640 22 9 45 304 2017-01-01 osm-intl 12 1.5 png miss 90 1221 14 8 32 95 2017-01-01 osm-intl 12 2 png hit 272 2827 10 8 28 55 2017-01-01 osm-intl 12 2 png miss 344 3712 11 8 26 53 2017-01-01 osm-intl 12 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 12 2.6 png miss 7 106 15 18 29 30 2017-01-01 osm-intl 12 3 png hit 86 821 10 8 24 31 2017-01-01 osm-intl 12 3 png miss 155 1814 12 9 30 73 2017-01-01 osm-intl 13 1 png hit 88779 7872090 89 28 337 941 2017-01-01 osm-intl 13 1 png miss 9146 207650 23 8 47 144 2017-01-01 osm-intl 13 1 png pass 131 145 1 1 2 3 2017-01-01 osm-intl 13 1.3 png hit 33 296 9 6 22 53 2017-01-01 osm-intl 13 1.3 png miss 141 2301 16 6 44 119 2017-01-01 osm-intl 13 1.5 png hit 68 308 5 4 14 17 2017-01-01 osm-intl 13 1.5 png miss 178 2321 13 6 34 120 2017-01-01 osm-intl 13 2 png hit 535 5361 10 6 28 54 2017-01-01 osm-intl 13 2 png miss 621 6370 10 6 29 65 2017-01-01 osm-intl 13 3 png hit 131 1347 10 9 22 38 2017-01-01 osm-intl 13 3 png miss 253 3234 13 9 31 113 2017-01-01 osm-intl 14 1 png hit 122824 14657298 119 42 480 1150 2017-01-01 osm-intl 14 1 png miss 12042 500752 42 9 58 182 2017-01-01 osm-intl 14 1 png pass 299 329 1 1 2 3 2017-01-01 osm-intl 14 1.3 png hit 28 191 7 6 22 28 2017-01-01 osm-intl 14 1.3 png miss 85 1339 16 9 38 99 2017-01-01 osm-intl 14 1.5 png hit 41 221 5 3 17 31 2017-01-01 osm-intl 14 1.5 png miss 120 1345 11 9 27 57 2017-01-01 osm-intl 14 2 png hit 388 3540 9 6 26 40 2017-01-01 osm-intl 14 2 png miss 389 3880 10 6 30 53 2017-01-01 osm-intl 14 3 png hit 76 714 9 9 21 34 2017-01-01 osm-intl 14 3 png miss 157 1583 10 8 23 48 2017-01-01 osm-intl 15 1 png hit 165072 21761174 132 46 533 1261 2017-01-01 osm-intl 15 1 png miss 17935 501814 28 6 41 132 2017-01-01 osm-intl 15 1 png pass 483 527 1 1 2 3 2017-01-01 osm-intl 15 1.3 png hit 27 166 6 5 12 23 2017-01-01 osm-intl 15 1.3 png miss 73 1393 19 9 60 122 2017-01-01 osm-intl 15 1.5 png hit 17 103 6 4 15 18 2017-01-01 osm-intl 15 1.5 png miss 84 1172 14 9 41 78 2017-01-01 osm-intl 15 2 png hit 232 2381 10 7 24 69 2017-01-01 osm-intl 15 2 png miss 268 3068 11 7 36 62 2017-01-01 osm-intl 15 3 png hit 59 658 11 9 26 62 2017-01-01 osm-intl 15 3 png miss 112 1040 9 8 18 39 2017-01-01 osm-intl 16 1 png hit 132687 13704320 103 38 411 943 2017-01-01 osm-intl 16 1 png miss 13622 192030 14 4 45 131 2017-01-01 osm-intl 16 1 png pass 645 700 1 1 2 3 2017-01-01 osm-intl 16 1.3 png hit 5 88 18 15 36 39 2017-01-01 osm-intl 16 1.3 png miss 34 993 29 24 78 94 2017-01-01 osm-intl 16 1.5 png miss 39 723 19 12 57 77 2017-01-01 osm-intl 16 2 png hit 72 919 13 8 50 72 2017-01-01 osm-intl 16 2 png miss 128 2285 18 12 41 68 2017-01-01 osm-intl 16 3 png miss 48 522 11 10 24 33 2017-01-01 osm-intl 17 1 png hit 108294 8326328 77 32 291 658 2017-01-01 osm-intl 17 1 png miss 20100 184817 9 3 33 93 2017-01-01 osm-intl 17 1 png pass 804 860 1 1 2 2 2017-01-01 osm-intl 17 1.3 png hit 6 85 14 17 21 21 2017-01-01 osm-intl 17 1.3 png miss 30 933 31 28 74 92 2017-01-01 osm-intl 17 1.5 png miss 32 983 31 16 107 122 2017-01-01 osm-intl 17 2 png hit 31 535 17 12 51 61 2017-01-01 osm-intl 17 2 png miss 96 1793 19 16 44 60 2017-01-01 osm-intl 17 3 png miss 33 506 15 11 35 51 2017-01-01 osm-intl 18 1 png hit 70324 3717868 53 24 188 415 2017-01-01 osm-intl 18 1 png miss 28555 288238 10 4 32 92 2017-01-01 osm-intl 18 1 png pass 867 963 1 1 2 3 2017-01-01 osm-intl 18 2 png hit 11 151 14 13 27 32 2017-01-01 osm-intl 18 2 png miss 35 595 17 12 40 46 2017-01-01 osm-intl 18 3 png miss 18 354 20 12 40 101 2017-01-01 osm-intl 2 1 png hit 20686 454572 22 16 53 112 2017-01-01 osm-intl 2 1 png pass 4 4 1 1 1 1 2017-01-01 osm-intl 2 1.3 png hit 4 24 6 5 11 12 2017-01-01 osm-intl 2 1.5 png hit 16 138 9 7 18 18 2017-01-01 osm-intl 2 2 png hit 31 266 9 6 17 27 2017-01-01 osm-intl 3 1 png hit 5531 185057 33 17 96 240 2017-01-01 osm-intl 3 1 png miss 7 7 1 1 1 1 2017-01-01 osm-intl 3 1.3 png hit 8 53 7 6 12 13 2017-01-01 osm-intl 4 1 png hit 3772 65265 17 12 53 122 2017-01-01 osm-intl 4 1 png miss 73 141 2 1 7 13 2017-01-01 osm-intl 4 1.3 png miss 9 54 6 3 17 23 2017-01-01 osm-intl 4 1.5 png hit 42 565 13 8 44 59 2017-01-01 osm-intl 4 2 png hit 97 945 10 8 25 36 2017-01-01 osm-intl 4 2 png miss 33 111 3 2 10 14 2017-01-01 osm-intl 4 3 png hit 23 158 7 8 11 13 2017-01-01 osm-intl 5 1 png hit 5875 129819 22 12 59 157 2017-01-01 osm-intl 5 1 png miss 242 603 2 1 8 17 2017-01-01 osm-intl 5 1.3 png hit 18 160 9 7 22 22 2017-01-01 osm-intl 5 1.5 png hit 35 384 11 6 35 43 2017-01-01 osm-intl 5 2 png hit 92 856 9 7 26 37 2017-01-01 osm-intl 5 2 png miss 51 236 5 2 15 27 2017-01-01 osm-intl 5 3 png hit 25 122 5 4 10 14 2017-01-01 osm-intl 5 3 png miss 22 130 6 5 12 28 2017-01-01 osm-intl 6 1 png hit 6053 138619 23 12 56 143 2017-01-01 osm-intl 6 1 png miss 637 2413 4 2 11 29 2017-01-01 osm-intl 6 1 png pass 16 18 1 1 2 2 2017-01-01 osm-intl 6 1.3 png hit 14 122 9 4 26 34 2017-01-01 osm-intl 6 1.3 png miss 21 175 8 4 26 55 2017-01-01 osm-intl 6 1.5 png miss 29 230 8 6 22 44 2017-01-01 osm-intl 6 2 png hit 101 1063 11 6 33 51 2017-01-01 osm-intl 6 2 png miss 71 478 7 4 19 31 2017-01-01 osm-intl 6 3 png miss 32 186 6 4 12 21 2017-01-01 osm-intl 7 1 png hit 11678 301923 26 20 67 137 2017-01-01 osm-intl 7 1 png miss 1372 6214 5 2 13 34 2017-01-01 osm-intl 7 1 png pass 27 35 1 1 3 6 2017-01-01 osm-intl 7 1.3 png hit 18 107 6 4 14 22 2017-01-01 osm-intl 7 1.3 png miss 24 231 10 7 31 32 2017-01-01 osm-intl 7 1.5 png hit 41 365 9 6 25 40 2017-01-01 osm-intl 7 1.5 png miss 45 423 9 5 39 68 2017-01-01 osm-intl 7 2 png hit 85 940 11 6 40 57 2017-01-01 osm-intl 7 2 png miss 76 528 7 6 24 31 2017-01-01 osm-intl 7 2 png pass 1 2 2 2 2 2 2017-01-01 osm-intl 7 3 png hit 19 131 7 4 15 30 2017-01-01 osm-intl 8 1 png hit 7042 158731 23 12 66 151 2017-01-01 osm-intl 8 1 png miss 2213 20632 9 2 17 51 2017-01-01 osm-intl 8 1 png pass 18 18 1 1 1 1 2017-01-01 osm-intl 8 1.3 png miss 33 511 15 9 43 54 2017-01-01 osm-intl 8 1.5 png hit 31 376 12 7 38 45 2017-01-01 osm-intl 8 1.5 png miss 48 570 12 8 39 99 2017-01-01 osm-intl 8 2 png hit 104 1170 11 7 35 50 2017-01-01 osm-intl 8 2 png miss 104 869 8 4 26 42 2017-01-01 osm-intl 8 3 png hit 22 143 6 6 16 16 2017-01-01 osm-intl 8 3 png miss 42 374 9 7 20 39 2017-01-01 osm-intl 9 1 png hit 7845 192668 25 12 66 175 2017-01-01 osm-intl 9 1 png miss 3281 88164 27 3 18 55 2017-01-01 osm-intl 9 1 png pass 35 52 1 1 3 6 2017-01-01 osm-intl 9 1.3 png hit 11 114 10 6 26 29 2017-01-01 osm-intl 9 1.3 png miss 26 403 16 9 37 46 2017-01-01 osm-intl 9 1.5 png hit 26 216 8 6 22 28 2017-01-01 osm-intl 9 1.5 png miss 49 646 13 9 38 90 2017-01-01 osm-intl 9 2 png hit 93 862 9 6 25 38 2017-01-01 osm-intl 9 2 png miss 120 1168 10 7 26 53 2017-01-01 osm-intl 9 3 png hit 16 164 10 9 18 18 2017-01-01 osm-intl 9 3 png miss 33 453 14 9 42 85 2017-01-01 osm-intl 0 3 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 10 1.3 png hit 14 132 9 3 33 34 2017-01-01 osm-intl 11 1.3 png hit 16 127 8 7 17 18 2017-01-01 osm-intl 12 1.5 png hit 31 225 7 6 16 20 2017-01-01 osm-intl 14 2.6 png miss 9 120 13 10 27 32 2017-01-01 osm-intl 18 1.3 png miss 11 437 40 24 94 102 2017-01-01 osm-intl 18 1.5 png hit 5 31 6 3 13 13 2017-01-01 osm-intl 18 1.5 png miss 20 869 43 21 164 208 2017-01-01 osm-intl 2 1.5 png miss 3 7 2 1 5 5 2017-01-01 osm-intl 2 2 png miss 9 12 1 1 3 3 2017-01-01 osm-intl 2 3 png miss 4 12 3 3 5 5 2017-01-01 osm-intl 3 1 png pass 6 6 1 1 1 1 2017-01-01 osm-intl 3 1.3 png miss 4 28 7 2 20 23 2017-01-01 osm-intl 3 1.5 png hit 17 210 12 11 24 35 2017-01-01 osm-intl 3 2 png hit 42 478 11 8 29 42 2017-01-01 osm-intl 3 2 png miss 23 54 2 1 5 9 2017-01-01 osm-intl 3 3 png hit 13 107 8 7 13 13 2017-01-01 osm-intl 4 1.5 png miss 17 71 4 3 11 11 2017-01-01 osm-intl 4 2.6 png miss 1 9 9 9 9 9 2017-01-01 osm-intl 4 3 png miss 17 49 3 2 9 9 2017-01-01 osm-intl 5 1 png pass 11 11 1 1 1 1 2017-01-01 osm-intl 5 1.5 png miss 24 136 6 3 17 29 2017-01-01 osm-intl 6 3 png hit 24 115 5 4 12 12 2017-01-01 osm-intl 7 2.6 png miss 2 66 33 33 55 57 2017-01-01 osm-intl 7 3 png miss 28 209 7 6 19 24 2017-01-01 osm-intl 8 1.3 png hit 13 72 6 4 14 21 2017-01-01 osm-intl 0 3 png hit 2 6 3 3 5 5 2017-01-01 osm-intl 1 3 png hit 2 7 4 4 4 4 2017-01-01 osm-intl 11 2.6 png miss 5 111 22 12 59 67 2017-01-01 osm-intl 12 1.3 png hit 11 280 25 9 108 185 2017-01-01 osm-intl 13 2.6 png miss 9 110 12 12 20 21 2017-01-01 osm-intl 16 1.3 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 2 3 png hit 7 33 5 6 8 8 2017-01-01 osm-intl 3 1.5 png miss 11 36 3 2 8 10 2017-01-01 osm-intl 3 3 png miss 11 33 3 3 6 7 2017-01-01 osm-intl 5 1.3 png miss 15 110 7 6 20 27 2017-01-01 osm-intl 0 2 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 1 1.3 png hit 8 31 4 4 4 4 2017-01-01 osm-intl 15 2.6 png miss 9 79 9 10 12 12 2017-01-01 osm-intl 16 3 png hit 16 158 10 8 24 24 2017-01-01 osm-intl 17 2.6 png hit 1 1 1 1 1 1 2017-01-01 osm-intl 17 3 png hit 7 132 19 15 39 39 2017-01-01 osm-intl 2 1 png miss 4 4 1 1 1 1 2017-01-01 osm-intl 2 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 6 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 13 1.3 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 14 2.6 png hit 1 1 1 1 1 1 2017-01-01 osm-intl 17 2.6 png miss 1 16 16 16 16 16 2017-01-01 osm-intl 18 3 png hit 5 95 19 21 38 39 2017-01-01 osm-intl 4 1.3 png hit 9 73 8 4 24 29 2017-01-01 osm-intl 5 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 8 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 8 2.6 png miss 2 32 16 16 18 18 2017-01-01 osm-intl 0 1.5 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 1 3 png miss 2 5 2 3 4 4 2017-01-01 osm-intl 14 3 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 16 1.5 png hit 4 26 6 6 12 12 2017-01-01 osm-intl 6 1.5 png hit 31 438 14 6 65 75 2017-01-01 osm-intl 1 1.3 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 1 1.5 png miss 2 3 2 2 2 2 2017-01-01 osm-intl 0 1.3 png hit 2 2 1 1 1 1 2017-01-01 osm-intl 4 1 png pass 5 5 1 1 1 1 2017-01-01 osm-intl 17 1.5 png hit 3 4 1 1 2 2 2017-01-01 osm-intl 9 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 13 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 15 3 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 18 1.3 png hit 1 12 12 12 12 12 2017-01-01 osm-intl 4 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 18 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 2 1.3 png miss 3 8 3 3 4 4 2017-01-01 osm-intl 3 2 png pass 1 2 2 2 2 2 2017-01-01 osm-intl 8 2.6 png hit 1 2 2 2 2 2 2017-01-01 osm-intl 3 2.6 png miss 1 14 14 14 14 14 2017-01-01 osm-intl 5 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 16 2.6 png hit 1 1 1 1 1 1 2017-01-01 osm-intl 1 2 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 10 2.6 png hit 1 11 11 11 11 11 2017-01-01 osm-intl 16 2.6 png miss 2 22 11 11 13 13 2017-01-01 osm-intl 0 1.3 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 11 3 png pass 1 4 4 4 4 4 ``` It took 9m 57s to generate this report. ### Report 43 of 44 _Tile counts by style, zoom level, etc., excluding those made by bots/tools_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/maps/tile_aggregates_no_automata.tsv**: ``` date style zoom scale format cache users total average median percentile95 percentile99 2015-12-10 osm-intl 0 1 png hit 105 116 1.1047619047619 1 2 3 2015-12-10 osm-intl 0 1 png miss 1 1 1 1 1 1 ... 2017-01-01 osm-intl 0 1 png hit 579 768 1 1 2 10 2017-01-01 osm-intl 0 1.5 png hit 7 9 1 1 2 2 2017-01-01 osm-intl 0 2 png hit 19 19 1 1 1 1 2017-01-01 osm-intl 1 1 png hit 2645 13464 5 4 12 24 2017-01-01 osm-intl 1 1.5 png hit 15 62 4 4 7 7 2017-01-01 osm-intl 1 2 png hit 28 121 4 4 4 13 2017-01-01 osm-intl 1 2 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 10 1 png hit 7750 164578 21 10 64 170 2017-01-01 osm-intl 10 1 png pass 33 43 1 1 3 3 2017-01-01 osm-intl 10 1 png miss 4720 92952 20 4 29 91 2017-01-01 osm-intl 10 1.3 png miss 43 694 16 6 78 84 2017-01-01 osm-intl 10 1.3 png hit 14 132 9 3 33 34 2017-01-01 osm-intl 10 1.5 png hit 26 240 9 6 25 37 2017-01-01 osm-intl 10 2 png miss 174 1568 9 6 23 40 2017-01-01 osm-intl 10 2 png hit 138 1500 11 8 24 61 2017-01-01 osm-intl 10 3 png miss 68 699 10 9 20 60 2017-01-01 osm-intl 10 3 png hit 29 276 10 9 17 27 2017-01-01 osm-intl 11 1 png hit 11984 222431 19 9 56 160 2017-01-01 osm-intl 11 1 png miss 7593 146440 19 5 31 80 2017-01-01 osm-intl 11 1 png pass 38 45 1 1 3 4 2017-01-01 osm-intl 11 1.3 png hit 16 127 8 7 17 18 2017-01-01 osm-intl 11 1.3 png miss 53 1277 24 9 102 175 2017-01-01 osm-intl 11 1.5 png miss 64 1116 17 9 60 123 2017-01-01 osm-intl 11 1.5 png hit 24 209 9 6 29 34 2017-01-01 osm-intl 11 2 png hit 179 1831 10 7 27 64 2017-01-01 osm-intl 11 2 png miss 251 2639 11 8 29 61 2017-01-01 osm-intl 11 3 png miss 95 1010 11 8 23 45 2017-01-01 osm-intl 11 3 png hit 52 493 9 8 23 27 2017-01-01 osm-intl 12 1 png miss 11071 177520 16 6 36 118 2017-01-01 osm-intl 12 1 png hit 52524 2192227 42 15 159 390 2017-01-01 osm-intl 12 1 png pass 94 104 1 1 2 3 2017-01-01 osm-intl 12 1.3 png hit 11 280 25 9 108 185 2017-01-01 osm-intl 12 1.3 png miss 75 1640 22 9 45 304 2017-01-01 osm-intl 12 1.5 png miss 90 1221 14 8 32 95 2017-01-01 osm-intl 12 1.5 png hit 31 225 7 6 16 20 2017-01-01 osm-intl 12 2 png miss 343 3699 11 8 26 54 2017-01-01 osm-intl 12 2 png hit 272 2827 10 8 28 55 2017-01-01 osm-intl 12 2.6 png miss 7 106 15 18 29 30 2017-01-01 osm-intl 12 3 png miss 155 1814 12 9 30 73 2017-01-01 osm-intl 12 3 png hit 86 821 10 8 24 31 2017-01-01 osm-intl 13 1 png miss 9114 205270 23 8 47 141 2017-01-01 osm-intl 13 1 png hit 88747 7871335 89 28 337 941 2017-01-01 osm-intl 13 1 png pass 131 145 1 1 2 3 2017-01-01 osm-intl 13 1.3 png miss 141 2301 16 6 44 119 2017-01-01 osm-intl 13 1.3 png hit 33 296 9 6 22 53 2017-01-01 osm-intl 13 1.5 png hit 68 308 5 4 14 17 2017-01-01 osm-intl 13 1.5 png miss 178 2321 13 6 34 120 2017-01-01 osm-intl 13 2 png miss 621 6370 10 6 29 65 2017-01-01 osm-intl 13 2 png hit 535 5361 10 6 28 54 2017-01-01 osm-intl 13 3 png miss 253 3234 13 9 31 113 2017-01-01 osm-intl 13 3 png hit 131 1347 10 9 22 38 2017-01-01 osm-intl 14 1 png miss 11994 498717 42 9 58 182 2017-01-01 osm-intl 14 1 png hit 122773 14656536 119 42 480 1151 2017-01-01 osm-intl 14 1 png pass 299 329 1 1 2 3 2017-01-01 osm-intl 14 1.3 png miss 85 1339 16 9 38 99 2017-01-01 osm-intl 14 1.3 png hit 28 191 7 6 22 28 2017-01-01 osm-intl 14 1.5 png miss 120 1345 11 9 27 57 2017-01-01 osm-intl 14 1.5 png hit 41 221 5 3 17 31 2017-01-01 osm-intl 14 2 png miss 389 3880 10 6 30 53 2017-01-01 osm-intl 14 2 png hit 388 3540 9 6 26 40 2017-01-01 osm-intl 14 2.6 png miss 9 120 13 10 27 32 2017-01-01 osm-intl 14 3 png hit 76 714 9 9 21 34 2017-01-01 osm-intl 14 3 png miss 157 1583 10 8 23 48 2017-01-01 osm-intl 15 1 png miss 17843 500026 28 6 41 131 2017-01-01 osm-intl 15 1 png hit 164983 21759831 132 46 533 1261 2017-01-01 osm-intl 15 1 png pass 483 527 1 1 2 3 2017-01-01 osm-intl 15 1.3 png miss 73 1393 19 9 60 122 2017-01-01 osm-intl 15 1.3 png hit 27 166 6 5 12 23 2017-01-01 osm-intl 15 1.5 png hit 17 103 6 4 15 18 2017-01-01 osm-intl 15 2 png hit 232 2381 10 7 24 69 2017-01-01 osm-intl 15 2 png miss 268 3068 11 7 36 62 2017-01-01 osm-intl 15 2.6 png miss 7 70 10 12 12 12 2017-01-01 osm-intl 15 3 png hit 59 658 11 9 26 62 2017-01-01 osm-intl 15 3 png miss 112 1040 9 8 18 39 2017-01-01 osm-intl 16 1 png miss 12831 184209 14 4 47 135 2017-01-01 osm-intl 16 1 png hit 131684 13694643 104 39 413 945 2017-01-01 osm-intl 16 1 png pass 643 697 1 1 2 3 2017-01-01 osm-intl 16 1.3 png miss 34 993 29 24 78 94 2017-01-01 osm-intl 16 2 png hit 72 919 13 8 50 72 2017-01-01 osm-intl 16 2 png miss 128 2285 18 12 41 68 2017-01-01 osm-intl 16 3 png miss 48 522 11 10 24 33 2017-01-01 osm-intl 16 3 png hit 16 158 10 8 24 24 2017-01-01 osm-intl 17 1 png miss 20075 184154 9 3 33 92 2017-01-01 osm-intl 17 1 png hit 108290 8326263 77 32 291 658 2017-01-01 osm-intl 17 1 png pass 804 860 1 1 2 2 2017-01-01 osm-intl 17 1.3 png hit 6 85 14 17 21 21 2017-01-01 osm-intl 17 1.3 png miss 30 933 31 28 74 92 2017-01-01 osm-intl 17 2 png miss 96 1793 19 16 44 60 2017-01-01 osm-intl 17 2 png hit 31 535 17 12 51 61 2017-01-01 osm-intl 17 3 png miss 33 506 15 11 35 51 2017-01-01 osm-intl 18 1 png miss 28539 288011 10 4 32 91 2017-01-01 osm-intl 18 1 png hit 70323 3717805 53 24 188 415 2017-01-01 osm-intl 18 1 png pass 867 963 1 1 2 3 2017-01-01 osm-intl 18 1.3 png miss 11 437 40 24 94 102 2017-01-01 osm-intl 18 2 png miss 35 595 17 12 40 46 2017-01-01 osm-intl 18 3 png miss 18 354 20 12 40 101 2017-01-01 osm-intl 2 1 png hit 20684 454542 22 16 53 112 2017-01-01 osm-intl 2 1.5 png hit 16 138 9 7 18 18 2017-01-01 osm-intl 2 2 png hit 31 266 9 6 17 27 2017-01-01 osm-intl 2 2 png miss 9 12 1 1 3 3 2017-01-01 osm-intl 3 1 png hit 5526 185025 33 17 96 240 2017-01-01 osm-intl 3 1 png miss 7 7 1 1 1 1 2017-01-01 osm-intl 3 2 png hit 42 478 11 8 29 42 2017-01-01 osm-intl 3 3 png hit 13 107 8 7 13 13 2017-01-01 osm-intl 3 3 png miss 11 33 3 3 6 7 2017-01-01 osm-intl 4 1 png hit 3767 64586 17 12 53 121 2017-01-01 osm-intl 4 1 png miss 73 141 2 1 7 13 2017-01-01 osm-intl 4 1.3 png miss 9 54 6 3 17 23 2017-01-01 osm-intl 4 1.5 png hit 42 565 13 8 44 59 2017-01-01 osm-intl 4 1.5 png miss 17 71 4 3 11 11 2017-01-01 osm-intl 4 2 png hit 97 945 10 8 25 36 2017-01-01 osm-intl 4 2 png miss 33 111 3 2 10 14 2017-01-01 osm-intl 4 3 png hit 23 158 7 8 11 13 2017-01-01 osm-intl 5 1 png hit 5863 129739 22 12 59 157 2017-01-01 osm-intl 5 1 png miss 242 603 2 1 8 17 2017-01-01 osm-intl 5 1.3 png hit 18 160 9 7 22 22 2017-01-01 osm-intl 5 1.3 png miss 15 110 7 6 20 27 2017-01-01 osm-intl 5 1.5 png hit 35 384 11 6 35 43 2017-01-01 osm-intl 5 2 png hit 92 856 9 7 26 37 2017-01-01 osm-intl 5 2 png miss 51 236 5 2 15 27 2017-01-01 osm-intl 6 1 png hit 6036 115480 19 12 56 139 2017-01-01 osm-intl 6 1 png miss 634 2403 4 2 11 30 2017-01-01 osm-intl 6 1 png pass 16 18 1 1 2 2 2017-01-01 osm-intl 6 1.3 png hit 14 122 9 4 26 34 2017-01-01 osm-intl 6 1.3 png miss 21 175 8 4 26 55 2017-01-01 osm-intl 6 1.5 png hit 31 438 14 6 65 75 2017-01-01 osm-intl 6 2 png miss 71 478 7 4 19 31 2017-01-01 osm-intl 6 2 png hit 101 1063 11 6 33 51 2017-01-01 osm-intl 6 3 png hit 24 115 5 4 12 12 2017-01-01 osm-intl 7 1 png hit 11658 301255 26 20 67 137 2017-01-01 osm-intl 7 1 png miss 1367 6195 5 2 13 34 2017-01-01 osm-intl 7 1 png pass 27 35 1 1 3 6 2017-01-01 osm-intl 7 1.3 png miss 24 231 10 7 31 32 2017-01-01 osm-intl 7 1.5 png hit 41 365 9 6 25 40 2017-01-01 osm-intl 7 1.5 png miss 45 423 9 5 39 68 2017-01-01 osm-intl 7 2 png hit 84 936 11 6 40 58 2017-01-01 osm-intl 7 2 png miss 75 525 7 6 24 31 2017-01-01 osm-intl 7 2.6 png miss 2 66 33 33 55 57 2017-01-01 osm-intl 7 3 png hit 19 131 7 4 15 30 2017-01-01 osm-intl 7 3 png miss 28 209 7 6 19 24 2017-01-01 osm-intl 8 1 png hit 7028 158602 23 12 66 151 2017-01-01 osm-intl 8 1 png miss 2208 20565 9 2 17 51 2017-01-01 osm-intl 8 1 png pass 18 18 1 1 1 1 2017-01-01 osm-intl 8 1.3 png miss 33 511 15 9 43 54 2017-01-01 osm-intl 8 1.5 png hit 31 376 12 7 38 45 2017-01-01 osm-intl 8 1.5 png miss 48 570 12 8 39 99 2017-01-01 osm-intl 8 2 png hit 104 1170 11 7 35 50 2017-01-01 osm-intl 8 2 png miss 103 866 8 4 26 42 2017-01-01 osm-intl 8 3 png hit 22 143 6 6 16 16 2017-01-01 osm-intl 9 1 png hit 7816 190669 24 12 66 174 2017-01-01 osm-intl 9 1 png miss 3266 87928 27 3 18 54 2017-01-01 osm-intl 9 1 png pass 35 52 1 1 3 6 2017-01-01 osm-intl 9 1.3 png miss 26 403 16 9 37 46 2017-01-01 osm-intl 9 1.3 png hit 11 114 10 6 26 29 2017-01-01 osm-intl 9 1.5 png miss 49 646 13 9 38 90 2017-01-01 osm-intl 9 2 png miss 119 1167 10 7 26 53 2017-01-01 osm-intl 9 2 png hit 93 862 9 6 25 38 2017-01-01 osm-intl 9 3 png miss 33 453 14 9 42 85 2017-01-01 osm-intl 10 1.5 png miss 65 824 13 9 34 66 2017-01-01 osm-intl 10 2.6 png miss 4 66 16 17 24 24 2017-01-01 osm-intl 11 2.6 png miss 4 110 28 17 61 67 2017-01-01 osm-intl 15 1.5 png miss 84 1172 14 9 41 78 2017-01-01 osm-intl 16 1.3 png hit 5 88 18 15 36 39 2017-01-01 osm-intl 16 1.5 png miss 39 723 19 12 57 77 2017-01-01 osm-intl 17 1.5 png miss 32 983 31 16 107 122 2017-01-01 osm-intl 17 3 png hit 7 132 19 15 39 39 2017-01-01 osm-intl 2 1 png miss 4 4 1 1 1 1 2017-01-01 osm-intl 2 1.3 png miss 3 8 3 3 4 4 2017-01-01 osm-intl 2 1.5 png miss 3 7 2 1 5 5 2017-01-01 osm-intl 2 3 png miss 4 12 3 3 5 5 2017-01-01 osm-intl 3 1 png pass 6 6 1 1 1 1 2017-01-01 osm-intl 3 1.5 png hit 17 210 12 11 24 35 2017-01-01 osm-intl 4 3 png miss 17 49 3 2 9 9 2017-01-01 osm-intl 5 1 png pass 11 11 1 1 1 1 2017-01-01 osm-intl 5 1.5 png miss 24 136 6 3 17 29 2017-01-01 osm-intl 5 3 png miss 22 130 6 5 12 28 2017-01-01 osm-intl 5 3 png hit 25 122 5 4 10 14 2017-01-01 osm-intl 6 1.5 png miss 29 230 8 6 22 44 2017-01-01 osm-intl 6 3 png miss 32 186 6 4 12 21 2017-01-01 osm-intl 8 1.3 png hit 13 72 6 4 14 21 2017-01-01 osm-intl 9 1.5 png hit 26 216 8 6 22 28 2017-01-01 osm-intl 9 3 png hit 16 164 10 9 18 18 2017-01-01 osm-intl 1 1.3 png hit 8 31 4 4 4 4 2017-01-01 osm-intl 13 2.6 png miss 9 110 12 12 20 21 2017-01-01 osm-intl 18 2 png hit 11 151 14 13 27 32 2017-01-01 osm-intl 18 3 png hit 5 95 19 21 38 39 2017-01-01 osm-intl 2 1 png pass 4 4 1 1 1 1 2017-01-01 osm-intl 2 1.3 png hit 4 24 6 5 11 12 2017-01-01 osm-intl 3 1.3 png hit 8 53 7 6 12 13 2017-01-01 osm-intl 3 1.5 png miss 11 36 3 2 8 10 2017-01-01 osm-intl 3 2 png miss 23 54 2 1 5 9 2017-01-01 osm-intl 7 1.3 png hit 18 107 6 4 14 22 2017-01-01 osm-intl 0 1.5 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 18 1.5 png miss 20 869 43 21 164 208 2017-01-01 osm-intl 4 1.3 png hit 9 73 8 4 24 29 2017-01-01 osm-intl 4 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 8 3 png miss 42 374 9 7 20 39 2017-01-01 osm-intl 1 1.3 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 12 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 16 1.3 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 17 1.5 png hit 3 4 1 1 2 2 2017-01-01 osm-intl 4 1 png pass 5 5 1 1 1 1 2017-01-01 osm-intl 8 2.6 png miss 2 32 16 16 18 18 2017-01-01 osm-intl 0 1.3 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 16 1.5 png hit 4 26 6 6 12 12 2017-01-01 osm-intl 18 1.5 png hit 5 31 6 3 13 13 2017-01-01 osm-intl 2 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 0 1.3 png hit 2 2 1 1 1 1 2017-01-01 osm-intl 2 3 png hit 7 33 5 6 8 8 2017-01-01 osm-intl 0 2 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 1 1.5 png miss 2 3 2 2 2 2 2017-01-01 osm-intl 1 3 png hit 2 7 4 4 4 4 2017-01-01 osm-intl 11 3 png pass 1 4 4 4 4 4 2017-01-01 osm-intl 8 2.6 png hit 1 2 2 2 2 2 2017-01-01 osm-intl 13 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 3 2.6 png miss 1 14 14 14 14 14 2017-01-01 osm-intl 9 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 18 1.3 png hit 1 12 12 12 12 12 2017-01-01 osm-intl 3 1.3 png miss 4 28 7 2 20 23 2017-01-01 osm-intl 3 2 png pass 1 2 2 2 2 2 2017-01-01 osm-intl 1 3 png miss 2 5 2 3 4 4 2017-01-01 osm-intl 5 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 8 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 0 3 png hit 2 6 3 3 5 5 2017-01-01 osm-intl 16 2.6 png miss 2 22 11 11 13 13 2017-01-01 osm-intl 16 2.6 png hit 1 1 1 1 1 1 2017-01-01 osm-intl 4 2.6 png miss 1 9 9 9 9 9 2017-01-01 osm-intl 17 2.6 png hit 1 1 1 1 1 1 2017-01-01 osm-intl 7 2 png pass 1 2 2 2 2 2 2017-01-01 osm-intl 17 2.6 png miss 1 16 16 16 16 16 2017-01-01 osm-intl 5 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 6 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 0 3 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 10 2.6 png hit 1 11 11 11 11 11 2017-01-01 osm-intl 13 1.3 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 14 3 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 18 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 14 2.6 png hit 1 1 1 1 1 1 2017-01-01 osm-intl 15 3 png pass 1 1 1 1 1 1 ... 2017-02-20 osm-intl 4 1.5 png pass 1 1 1 1 1 1 2017-02-20 osm-intl 8 1.3 png pass 1 1 1 1 1 1 ``` 1. Executing report "tile_aggregates_no_automata" from the metrics/maps module. 2. About to run the following command: `sh modules/metrics/maps/tile_aggregates_no_automata 2017-01-01 2017-01-02` **Output**: ``` date style zoom scale format cache users total average median percentile95 percentile99 2017-01-01 osm-intl 0 1 png hit 574 763 1 1 2 10 2017-01-01 osm-intl 0 1.5 png hit 7 9 1 1 2 2 2017-01-01 osm-intl 0 2 png hit 19 19 1 1 1 1 2017-01-01 osm-intl 1 1 png hit 2637 13439 5 4 12 24 2017-01-01 osm-intl 1 1.5 png hit 15 62 4 4 7 7 2017-01-01 osm-intl 1 2 png hit 28 121 4 4 4 13 2017-01-01 osm-intl 10 1 png hit 6765 138731 21 10 57 159 2017-01-01 osm-intl 10 1 png miss 4042 83544 21 4 23 86 2017-01-01 osm-intl 10 1 png pass 19 22 1 1 2 2 2017-01-01 osm-intl 10 1.3 png miss 43 694 16 6 78 84 2017-01-01 osm-intl 10 1.5 png hit 26 240 9 6 25 37 2017-01-01 osm-intl 10 1.5 png miss 65 824 13 9 34 66 2017-01-01 osm-intl 10 2 png hit 138 1500 11 8 24 61 2017-01-01 osm-intl 10 2 png miss 174 1568 9 6 23 40 2017-01-01 osm-intl 10 2.6 png miss 4 66 16 17 24 24 2017-01-01 osm-intl 10 3 png hit 29 276 10 9 17 27 2017-01-01 osm-intl 10 3 png miss 68 699 10 9 20 60 2017-01-01 osm-intl 11 1 png hit 11046 198092 18 9 50 152 2017-01-01 osm-intl 11 1 png miss 6750 132160 20 5 25 73 2017-01-01 osm-intl 11 1 png pass 27 31 1 1 2 4 2017-01-01 osm-intl 11 1.3 png miss 53 1277 24 9 102 175 2017-01-01 osm-intl 11 1.5 png hit 24 209 9 6 29 34 2017-01-01 osm-intl 11 1.5 png miss 64 1116 17 9 60 123 2017-01-01 osm-intl 11 2 png hit 179 1831 10 7 27 64 2017-01-01 osm-intl 11 2 png miss 251 2639 11 8 29 61 2017-01-01 osm-intl 11 3 png hit 52 493 9 8 23 27 2017-01-01 osm-intl 11 3 png miss 95 1010 11 8 23 45 2017-01-01 osm-intl 12 1 png hit 51631 2168614 42 15 160 391 2017-01-01 osm-intl 12 1 png miss 10113 157794 16 6 31 114 2017-01-01 osm-intl 12 1 png pass 86 95 1 1 2 3 2017-01-01 osm-intl 12 1.3 png miss 75 1640 22 9 45 304 2017-01-01 osm-intl 12 1.5 png miss 90 1221 14 8 32 95 2017-01-01 osm-intl 12 2 png hit 272 2827 10 8 28 55 2017-01-01 osm-intl 12 2 png miss 343 3699 11 8 26 54 2017-01-01 osm-intl 12 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 12 2.6 png miss 7 106 15 18 29 30 2017-01-01 osm-intl 12 3 png hit 86 821 10 8 24 31 2017-01-01 osm-intl 12 3 png miss 155 1814 12 9 30 73 2017-01-01 osm-intl 13 1 png hit 87731 7847249 89 29 339 947 2017-01-01 osm-intl 13 1 png miss 7821 174587 22 7 40 129 2017-01-01 osm-intl 13 1 png pass 125 131 1 1 1 2 2017-01-01 osm-intl 13 1.3 png hit 33 296 9 6 22 53 2017-01-01 osm-intl 13 1.3 png miss 141 2301 16 6 44 119 2017-01-01 osm-intl 13 1.5 png hit 68 308 5 4 14 17 2017-01-01 osm-intl 13 1.5 png miss 178 2321 13 6 34 120 2017-01-01 osm-intl 13 2 png hit 534 5340 10 6 28 54 2017-01-01 osm-intl 13 2 png miss 620 6243 10 6 29 61 2017-01-01 osm-intl 13 3 png hit 131 1347 10 9 22 38 2017-01-01 osm-intl 13 3 png miss 253 3234 13 9 31 113 2017-01-01 osm-intl 14 1 png hit 120036 14559907 121 43 487 1164 2017-01-01 osm-intl 14 1 png miss 8688 404082 47 7 43 154 2017-01-01 osm-intl 14 1 png pass 262 278 1 1 1 2 2017-01-01 osm-intl 14 1.3 png hit 28 191 7 6 22 28 2017-01-01 osm-intl 14 1.3 png miss 85 1339 16 9 38 99 2017-01-01 osm-intl 14 1.5 png hit 41 221 5 3 17 31 2017-01-01 osm-intl 14 1.5 png miss 120 1345 11 9 27 57 2017-01-01 osm-intl 14 2 png hit 388 3540 9 6 26 40 2017-01-01 osm-intl 14 2 png miss 388 3868 10 6 30 53 2017-01-01 osm-intl 14 3 png hit 76 714 9 9 21 34 2017-01-01 osm-intl 14 3 png miss 157 1583 10 8 23 48 2017-01-01 osm-intl 15 1 png hit 163764 21722811 133 46 536 1264 2017-01-01 osm-intl 15 1 png miss 16196 448731 28 6 31 108 2017-01-01 osm-intl 15 1 png pass 467 501 1 1 1 2 2017-01-01 osm-intl 15 1.3 png hit 27 166 6 5 12 23 2017-01-01 osm-intl 15 1.3 png miss 73 1393 19 9 60 122 2017-01-01 osm-intl 15 1.5 png hit 17 103 6 4 15 18 2017-01-01 osm-intl 15 1.5 png miss 84 1172 14 9 41 78 2017-01-01 osm-intl 15 2 png hit 231 2361 10 7 24 69 2017-01-01 osm-intl 15 2 png miss 267 3044 11 7 36 63 2017-01-01 osm-intl 15 3 png hit 59 658 11 9 26 62 2017-01-01 osm-intl 15 3 png miss 112 1040 9 8 18 39 2017-01-01 osm-intl 16 1 png hit 130802 13661451 104 39 415 948 2017-01-01 osm-intl 16 1 png miss 11534 131126 11 3 33 97 2017-01-01 osm-intl 16 1 png pass 630 676 1 1 2 2 2017-01-01 osm-intl 16 1.3 png hit 5 88 18 15 36 39 2017-01-01 osm-intl 16 1.3 png miss 34 993 29 24 78 94 2017-01-01 osm-intl 16 1.5 png miss 39 723 19 12 57 77 2017-01-01 osm-intl 16 2 png hit 72 919 13 8 50 72 2017-01-01 osm-intl 16 2 png miss 127 2273 18 11 42 68 2017-01-01 osm-intl 16 3 png miss 48 522 11 10 24 33 2017-01-01 osm-intl 17 1 png hit 107726 8304903 77 32 292 660 2017-01-01 osm-intl 17 1 png miss 19160 142021 7 3 25 68 2017-01-01 osm-intl 17 1 png pass 800 856 1 1 2 2 2017-01-01 osm-intl 17 1.3 png hit 6 85 14 17 21 21 2017-01-01 osm-intl 17 1.3 png miss 30 933 31 28 74 92 2017-01-01 osm-intl 17 1.5 png miss 32 983 31 16 107 122 2017-01-01 osm-intl 17 2 png hit 31 535 17 12 51 61 2017-01-01 osm-intl 17 2 png miss 95 1778 19 16 44 60 2017-01-01 osm-intl 17 3 png miss 33 506 15 11 35 51 2017-01-01 osm-intl 18 1 png hit 69926 3704405 53 24 188 415 2017-01-01 osm-intl 18 1 png miss 27854 257458 9 4 28 76 2017-01-01 osm-intl 18 1 png pass 863 958 1 1 2 3 2017-01-01 osm-intl 18 2 png hit 11 151 14 13 27 32 2017-01-01 osm-intl 18 2 png miss 35 595 17 12 40 46 2017-01-01 osm-intl 18 3 png miss 18 354 20 12 40 101 2017-01-01 osm-intl 2 1 png hit 915 8920 10 9 18 34 2017-01-01 osm-intl 2 1.3 png hit 4 24 6 5 11 12 2017-01-01 osm-intl 2 1.5 png hit 16 138 9 7 18 18 2017-01-01 osm-intl 2 2 png hit 31 266 9 6 17 27 2017-01-01 osm-intl 3 1 png hit 1975 30729 16 12 43 59 2017-01-01 osm-intl 3 1.3 png hit 8 53 7 6 12 13 2017-01-01 osm-intl 4 1 png hit 2180 34850 16 12 40 77 2017-01-01 osm-intl 4 1 png miss 42 78 2 1 5 12 2017-01-01 osm-intl 4 1.3 png miss 9 54 6 3 17 23 2017-01-01 osm-intl 4 1.5 png hit 42 565 13 8 44 59 2017-01-01 osm-intl 4 2 png hit 97 945 10 8 25 36 2017-01-01 osm-intl 4 2 png miss 33 111 3 2 10 14 2017-01-01 osm-intl 4 3 png hit 23 158 7 8 11 13 2017-01-01 osm-intl 5 1 png hit 4400 97423 22 12 51 126 2017-01-01 osm-intl 5 1 png miss 184 378 2 1 6 15 2017-01-01 osm-intl 5 1.3 png hit 18 160 9 7 22 22 2017-01-01 osm-intl 5 1.5 png hit 35 384 11 6 35 43 2017-01-01 osm-intl 5 2 png hit 92 856 9 7 26 37 2017-01-01 osm-intl 5 2 png miss 51 236 5 2 15 27 2017-01-01 osm-intl 5 3 png hit 25 122 5 4 10 14 2017-01-01 osm-intl 5 3 png miss 22 130 6 5 12 28 2017-01-01 osm-intl 6 1 png hit 4566 81274 18 12 46 93 2017-01-01 osm-intl 6 1 png miss 489 1626 3 2 9 21 2017-01-01 osm-intl 6 1.3 png hit 14 122 9 4 26 34 2017-01-01 osm-intl 6 1.3 png miss 21 175 8 4 26 55 2017-01-01 osm-intl 6 1.5 png miss 29 230 8 6 22 44 2017-01-01 osm-intl 6 2 png hit 101 1063 11 6 33 51 2017-01-01 osm-intl 6 2 png miss 71 478 7 4 19 31 2017-01-01 osm-intl 6 3 png miss 32 186 6 4 12 21 2017-01-01 osm-intl 7 1 png hit 10354 268774 26 20 63 125 2017-01-01 osm-intl 7 1 png miss 1084 4317 4 2 12 26 2017-01-01 osm-intl 7 1 png pass 18 18 1 1 1 1 2017-01-01 osm-intl 7 1.3 png hit 18 107 6 4 14 22 2017-01-01 osm-intl 7 1.3 png miss 24 231 10 7 31 32 2017-01-01 osm-intl 7 1.5 png hit 41 365 9 6 25 40 2017-01-01 osm-intl 7 1.5 png miss 45 423 9 5 39 68 2017-01-01 osm-intl 7 2 png hit 84 936 11 6 40 58 2017-01-01 osm-intl 7 2 png miss 75 525 7 6 24 31 2017-01-01 osm-intl 7 2 png pass 1 2 2 2 2 2 2017-01-01 osm-intl 7 3 png hit 19 131 7 4 15 30 2017-01-01 osm-intl 8 1 png hit 5846 130309 22 12 61 140 2017-01-01 osm-intl 8 1 png miss 1809 17605 10 2 15 42 2017-01-01 osm-intl 8 1 png pass 11 11 1 1 1 1 2017-01-01 osm-intl 8 1.3 png miss 33 511 15 9 43 54 2017-01-01 osm-intl 8 1.5 png hit 31 376 12 7 38 45 2017-01-01 osm-intl 8 1.5 png miss 48 570 12 8 39 99 2017-01-01 osm-intl 8 2 png hit 104 1170 11 7 35 50 2017-01-01 osm-intl 8 2 png miss 103 866 8 4 26 42 2017-01-01 osm-intl 8 3 png hit 22 143 6 6 16 16 2017-01-01 osm-intl 8 3 png miss 42 374 9 7 20 39 2017-01-01 osm-intl 9 1 png hit 6731 161181 24 12 60 142 2017-01-01 osm-intl 9 1 png miss 2757 83652 30 3 15 41 2017-01-01 osm-intl 9 1 png pass 19 24 1 1 3 3 2017-01-01 osm-intl 9 1.3 png hit 11 114 10 6 26 29 2017-01-01 osm-intl 9 1.3 png miss 26 403 16 9 37 46 2017-01-01 osm-intl 9 1.5 png hit 26 216 8 6 22 28 2017-01-01 osm-intl 9 1.5 png miss 49 646 13 9 38 90 2017-01-01 osm-intl 9 2 png hit 93 862 9 6 25 38 2017-01-01 osm-intl 9 2 png miss 119 1167 10 7 26 53 2017-01-01 osm-intl 9 3 png hit 16 164 10 9 18 18 2017-01-01 osm-intl 9 3 png miss 33 453 14 9 42 85 2017-01-01 osm-intl 0 3 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 10 1.3 png hit 14 132 9 3 33 34 2017-01-01 osm-intl 11 1.3 png hit 16 127 8 7 17 18 2017-01-01 osm-intl 12 1.5 png hit 31 225 7 6 16 20 2017-01-01 osm-intl 14 2.6 png miss 9 120 13 10 27 32 2017-01-01 osm-intl 18 1.3 png miss 11 437 40 24 94 102 2017-01-01 osm-intl 18 1.5 png hit 5 31 6 3 13 13 2017-01-01 osm-intl 18 1.5 png miss 20 869 43 21 164 208 2017-01-01 osm-intl 2 1.5 png miss 3 7 2 1 5 5 2017-01-01 osm-intl 2 2 png miss 9 12 1 1 3 3 2017-01-01 osm-intl 2 3 png miss 4 12 3 3 5 5 2017-01-01 osm-intl 3 1.3 png miss 4 28 7 2 20 23 2017-01-01 osm-intl 3 1.5 png hit 17 210 12 11 24 35 2017-01-01 osm-intl 3 2 png hit 42 478 11 8 29 42 2017-01-01 osm-intl 3 2 png miss 23 54 2 1 5 9 2017-01-01 osm-intl 3 3 png hit 13 107 8 7 13 13 2017-01-01 osm-intl 4 1.5 png miss 17 71 4 3 11 11 2017-01-01 osm-intl 4 2.6 png miss 1 9 9 9 9 9 2017-01-01 osm-intl 4 3 png miss 17 49 3 2 9 9 2017-01-01 osm-intl 5 1 png pass 4 4 1 1 1 1 2017-01-01 osm-intl 5 1.5 png miss 24 136 6 3 17 29 2017-01-01 osm-intl 6 1 png pass 7 8 1 1 2 2 2017-01-01 osm-intl 6 3 png hit 24 115 5 4 12 12 2017-01-01 osm-intl 7 2.6 png miss 2 66 33 33 55 57 2017-01-01 osm-intl 7 3 png miss 28 209 7 6 19 24 2017-01-01 osm-intl 8 1.3 png hit 13 72 6 4 14 21 2017-01-01 osm-intl 0 3 png hit 2 6 3 3 5 5 2017-01-01 osm-intl 1 3 png hit 2 7 4 4 4 4 2017-01-01 osm-intl 11 2.6 png miss 4 110 28 17 61 67 2017-01-01 osm-intl 12 1.3 png hit 11 280 25 9 108 185 2017-01-01 osm-intl 13 2.6 png miss 9 110 12 12 20 21 2017-01-01 osm-intl 16 1.3 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 2 3 png hit 7 33 5 6 8 8 2017-01-01 osm-intl 3 1.5 png miss 11 36 3 2 8 10 2017-01-01 osm-intl 3 3 png miss 11 33 3 3 6 7 2017-01-01 osm-intl 5 1.3 png miss 15 110 7 6 20 27 2017-01-01 osm-intl 0 2 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 1 1.3 png hit 8 31 4 4 4 4 2017-01-01 osm-intl 15 2.6 png miss 7 70 10 12 12 12 2017-01-01 osm-intl 16 3 png hit 16 158 10 8 24 24 2017-01-01 osm-intl 17 2.6 png hit 1 1 1 1 1 1 2017-01-01 osm-intl 17 3 png hit 7 132 19 15 39 39 2017-01-01 osm-intl 2 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 6 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 13 1.3 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 14 2.6 png hit 1 1 1 1 1 1 2017-01-01 osm-intl 17 2.6 png miss 1 16 16 16 16 16 2017-01-01 osm-intl 18 3 png hit 5 95 19 21 38 39 2017-01-01 osm-intl 4 1.3 png hit 9 73 8 4 24 29 2017-01-01 osm-intl 5 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 8 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 8 2.6 png miss 2 32 16 16 18 18 2017-01-01 osm-intl 0 1.5 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 1 3 png miss 2 5 2 3 4 4 2017-01-01 osm-intl 14 3 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 16 1.5 png hit 4 26 6 6 12 12 2017-01-01 osm-intl 6 1.5 png hit 31 438 14 6 65 75 2017-01-01 osm-intl 1 1.3 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 1 1.5 png miss 2 3 2 2 2 2 2017-01-01 osm-intl 0 1.3 png hit 2 2 1 1 1 1 2017-01-01 osm-intl 17 1.5 png hit 3 4 1 1 2 2 2017-01-01 osm-intl 9 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 3 1 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 13 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 15 3 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 18 1.3 png hit 1 12 12 12 12 12 2017-01-01 osm-intl 4 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 18 2.6 png miss 1 6 6 6 6 6 2017-01-01 osm-intl 2 1.3 png miss 3 8 3 3 4 4 2017-01-01 osm-intl 3 2 png pass 1 2 2 2 2 2 2017-01-01 osm-intl 8 2.6 png hit 1 2 2 2 2 2 2017-01-01 osm-intl 3 2.6 png miss 1 14 14 14 14 14 2017-01-01 osm-intl 5 2 png pass 1 1 1 1 1 1 2017-01-01 osm-intl 16 2.6 png hit 1 1 1 1 1 1 2017-01-01 osm-intl 1 2 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 10 2.6 png hit 1 11 11 11 11 11 2017-01-01 osm-intl 16 2.6 png miss 2 22 11 11 13 13 2017-01-01 osm-intl 0 1.3 png miss 1 1 1 1 1 1 2017-01-01 osm-intl 11 3 png pass 1 4 4 4 4 4 ``` It took 8m 36s to generate this report. ### Report 44 of 44 _Pageviews broken down by referrer class (e.g. internal vs external) and search engine_ **Note**: this report is configured to allow more than one row per day. Some of the existing data in **/a/aggregate-datasets/discovery/external_traffic/referer_data.tsv**: ``` date is_search referer_class search_engine access_method pageviews 2015-10-01 TRUE external (search engine) Yahoo desktop 5892845 2015-10-01 TRUE external (search engine) Baidu desktop 108514 ... 2017-01-01 TRUE external (search engine) Baidu desktop 238192 2017-01-01 TRUE external (search engine) Baidu mobile web 124925 2017-01-01 TRUE external (search engine) Bing desktop 2784476 2017-01-01 TRUE external (search engine) Bing mobile web 2057535 2017-01-01 TRUE external (search engine) DuckDuckGo desktop 425276 2017-01-01 TRUE external (search engine) DuckDuckGo mobile web 250827 2017-01-01 TRUE external (search engine) Google desktop 58068556 2017-01-01 TRUE external (search engine) Google mobile web 129535560 2017-01-01 TRUE external (search engine) Yahoo desktop 2845112 2017-01-01 TRUE external (search engine) Yahoo mobile web 6334645 2017-01-01 TRUE external (search engine) Yandex desktop 2979471 2017-01-01 TRUE external (search engine) Yandex mobile web 2049791 2017-01-01 FALSE external none desktop 6932059 2017-01-01 FALSE external none mobile web 4464529 2017-01-01 FALSE internal none desktop 89602370 2017-01-01 FALSE internal none mobile web 48385417 2017-01-01 FALSE none none desktop 176428641 2017-01-01 FALSE none none mobile web 99953333 2017-01-01 FALSE unknown none desktop 48003 2017-01-01 FALSE unknown none mobile web 48990 ... 2017-01-26 FALSE internal none desktop 120738793 2017-01-26 FALSE internal none mobile web 42338022 ``` 1. Executing report "referer_data" from the metrics/external_traffic module. 2. About to run the following command: `sh modules/metrics/external_traffic/referer_data 2017-01-01 2017-01-02` **Output**: ``` date is_search referer_class search_engine access_method pageviews 2017-01-01 TRUE external (search engine) Google mobile web 129535560 2017-01-01 TRUE external (search engine) Yahoo mobile web 6334645 2017-01-01 TRUE external (search engine) Google desktop 58068556 2017-01-01 FALSE external none desktop 6932059 2017-01-01 TRUE external (search engine) Yahoo desktop 2845112 2017-01-01 TRUE external (search engine) Baidu mobile web 124925 2017-01-01 TRUE external (search engine) Bing mobile web 2057535 2017-01-01 TRUE external (search engine) Yandex mobile web 2049791 2017-01-01 TRUE external (search engine) Baidu desktop 238192 2017-01-01 FALSE external none mobile web 4464529 2017-01-01 TRUE external (search engine) Bing desktop 2784476 2017-01-01 TRUE external (search engine) Yandex desktop 2979471 2017-01-01 FALSE none none mobile web 99953333 2017-01-01 TRUE external (search engine) DuckDuckGo mobile web 250827 2017-01-01 FALSE none none desktop 176428641 2017-01-01 TRUE external (search engine) DuckDuckGo desktop 425276 2017-01-01 FALSE internal none desktop 89602370 2017-01-01 FALSE internal none mobile web 48385417 ``` It took 7m 3s to generate this report. Warning message: In value[[3L]](cond) : Encountered a problem: Error in stop_on_empty(data): No rows were returned from the database ## Summary Statistics * It took 3h 33m 14s overall to generate these 44 reports. * The quickest report took 1s and it was "app_link_clicks" (sql) from the metrics/portal module. * The slowest report took 22m 40s and it was "cirrus_query_aggregates_with_automata" (script) from the metrics/search module. * The median is 12s per report. The average is 4m 51s per report. Here are this run's times: |module |report |type |time_elapsed | |:------------------------|:-----------------------------------------|:------|:------------| |metrics/portal |app_link_clicks |sql |1s | |metrics/search |paulscore_approximations |sql |1s | |metrics/search |click_position_counts |sql |1s | |metrics/search |invoke_source_counts |sql |1s | |metrics/search |app_event_counts |sql |1s | |metrics/search |app_load_times |script |2s | |metrics/portal |country_data |script |3s | |metrics/portal |clickthrough_rate |script |3s | |metrics/portal |clickthrough_breakdown |script |3s | |metrics/portal |clickthrough_sisterprojects |script |3s | |metrics/portal |language_switching |script |3s | |metrics/portal |last_action_country |script |3s | |metrics/portal |dwell_metrics |script |3s | |metrics/portal |clickthrough_firstvisit |script |3s | |metrics/portal |all_country_data |script |3s | |metrics/portal |first_visits_country |script |3s | |metrics/search |desktop_event_counts |script |3s | |metrics/portal |most_common_country |script |4s | |metrics/portal |language_destination |script |7s | |metrics/portal |most_common_per_visit |script |7s | |metrics/search |desktop_load_times |script |7s | |metrics/search |sample_page_visit_ld |script |9s | |metrics/search |search_threshold_pass_rate |script |14s | |metrics/portal |user_agent_data |script |17s | |metrics/search |mobile_event_counts |sql |25s | |metrics/maps |actions_per_tool |sql |26s | |metrics/wdqs |basic_usage |script |1m 5s | |metrics/search |mobile_load_times |script |3m 46s | |metrics/maps |users_per_feature |sql |5m 35s | |metrics/portal |referer_data |script |5m 39s | |metrics/portal |pageviews |script |6m 47s | |metrics/external_traffic |referer_data |script |7m 3s | |metrics/maps |users_by_country |script |7m 9s | |metrics/maps |tile_aggregates_no_automata |script |8m 36s | |metrics/search |search_api_usage |script |9m 33s | |metrics/maps |tile_aggregates_with_automata |script |9m 57s | |metrics/search |cirrus_query_breakdowns_no_automata |script |13m 41s | |metrics/search |cirrus_langproj_breakdown_no_automata |script |15m 1s | |metrics/search |cirrus_langproj_breakdown_with_automata |script |16m 19s | |metrics/search |cirrus_suggestion_breakdown_with_automata |script |17m 40s | |metrics/search |cirrus_suggestion_breakdown_no_automata |script |19m 26s | |metrics/search |cirrus_query_breakdowns_with_automata |script |20m 12s | |metrics/search |cirrus_query_aggregates_no_automata |script |20m 50s | |metrics/search |cirrus_query_aggregates_with_automata |script |22m 40s |