Skip to content

Instantly share code, notes, and snippets.

@bearloga
Last active December 20, 2016 17:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bearloga/af35f4190da6c96048a8e8389feb8c60 to your computer and use it in GitHub Desktop.
Save bearloga/af35f4190da6c96048a8e8389feb8c60 to your computer and use it in GitHub Desktop.
Rscript test.R --start_date=2016-12-01 --end_date=2016-12-02 >> test_`date +%F_%T`.log.md 2>&1

Test Run

Parameters

start_date end_date omit_times disable_forecasts help
2016-12-01 2016-12-02 FALSE FALSE FALSE

Reports

Report 1 of 49

  1. Executing report "basic_usage" from the metrics/wdqs module.
  2. Setting working directory to "modules/metrics/wdqs"
  3. About to run the following command: sh basic_usage 2016-12-01 2016-12-02

Output:

date	path	http_success	is_automata	events
2016-12-01	/	FALSE	TRUE	284
2016-12-01	/bigdata/namespace/wdq/sparql	FALSE	FALSE	611
2016-12-01	/	FALSE	FALSE	14
2016-12-01	/	TRUE	TRUE	208
2016-12-01	/bigdata/namespace/wdq/sparql	TRUE	TRUE	42728
2016-12-01	/	TRUE	FALSE	1008
2016-12-01	/bigdata/namespace/wdq/sparql	FALSE	TRUE	709
2016-12-01	/bigdata/namespace/wdq/sparql	TRUE	FALSE	114251

Reverting working directory to "/home/bearloga/source/golden"

It took 58s to generate this report.

Report 2 of 49

  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:
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('20161201') 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_15922352
  WHERE
    timestamp >= '20161201' AND timestamp < '20161202'
    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;

Output:

date	event_source	pow_1	pow_2	pow_3	pow_4	pow_5	pow_6	pow_7	pow_8	pow_9
2016-12-01	autocomplete	0	0	0	0	0	0	0
2016-12-01	fulltext	0.264	0.27	0.278	0.285	0.294	0.304	0.316	0.331	0.351

It took 5s to generate this report.

Report 3 of 49

  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:
SELECT
  DATE('20161201') 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 >= '20161201' AND timestamp < '20161202'
  AND event_action IN('click-result', 'session-start', 'impression-results')
GROUP BY date, action;

Output:

date	action	events
2016-12-01	clickthroughs	958
2016-12-01	Result pages opened	10141
2016-12-01	search sessions	20530

It took 1m 51s to generate this report.

Report 4 of 49

  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:
SELECT
  DATE('20161201') 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 >= '20161201' AND timestamp < '20161202'
  AND event_action = 'start'
GROUP BY date, invoke_source;

Output:

date	invoke_source	events
2016-12-01	Floating search bar in the feed	4343
2016-12-01	Main article toolbar	3778
2016-12-01	Process-text intent	36
2016-12-01	Share intent	10
2016-12-01	Voice search query	36
2016-12-01	Widget	82

It took 1s to generate this report.

Report 5 of 49

  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:
SELECT
  DATE('20161201') 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 >= '20161201' AND timestamp < '20161202'
  AND event_action = 'click'
GROUP BY date, click_position;

Output:

date	click_position	events
2016-12-01	1	4863
2016-12-01	10-19	77
2016-12-01	100+	2
2016-12-01	2	1329
2016-12-01	20-100	46
2016-12-01	3	472
2016-12-01	4	179
2016-12-01	5	76
2016-12-01	6	69
2016-12-01	7	38
2016-12-01	8	29
2016-12-01	9	29

It took 1s to generate this report.

Report 6 of 49

  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:
SELECT
  date, action, platform, COUNT(*) AS events
FROM (
  SELECT
    DATE('20161201') 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 >= '20161201' AND timestamp < '20161202'
    AND event_action IN ('click', 'start', 'results')
  UNION ALL
  SELECT
    DATE('20161201') 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 >= '20161201' AND timestamp < '20161202'
    AND event_action IN ('click', 'start', 'results')
) AS MobileWikiAppSearch
GROUP BY date, action, platform;

Output:

date	action	platform	events
2016-12-01	clickthroughs	Android	9208
2016-12-01	clickthroughs	iOS	1270
2016-12-01	Result pages opened	Android	30264
2016-12-01	Result pages opened	iOS	8401
2016-12-01	search sessions	Android	10531
2016-12-01	search sessions	iOS	1513

It took 1s to generate this report.

Report 7 of 49

  1. Executing report "sample_page_visit_ld" from the metrics/search module.
  2. Setting working directory to "modules/metrics/search"
  3. About to run the following command: sh sample_page_visit_ld 2016-12-01 2016-12-02

Output:

date	LD10	LD25	LD50	LD75	LD90	LD95	LD99
2016-12-01	25	35	135	NA	NA	NA	NA

Reverting working directory to "/home/bearloga/source/golden"

It took 45s to generate this report.

Report 8 of 49

  1. Executing report "mobile_load_times" from the metrics/search module.
  2. Setting working directory to "modules/metrics/search"
  3. About to run the following command: sh mobile_load_times 2016-12-01 2016-12-02

Output:

date	Median	95th percentile	99th percentile
2016-12-01	340	902	1945

Reverting working directory to "/home/bearloga/source/golden"

It took 2m 55s to generate this report.

Report 9 of 49

  1. Executing report "desktop_load_times" from the metrics/search module.
  2. Setting working directory to "modules/metrics/search"
  3. About to run the following command: sh desktop_load_times 2016-12-01 2016-12-02

Output:

date	Median	95th percentile	99th percentile
2016-12-01	681	2547	8292.29

Reverting working directory to "/home/bearloga/source/golden"

It took 27s to generate this report.

Report 10 of 49

  1. Executing report "desktop_event_counts" from the metrics/search module.
  2. Setting working directory to "modules/metrics/search"
  3. About to run the following command: sh desktop_event_counts 2016-12-01 2016-12-02

Output:

date	action	events
2016-12-01	clickthroughs	4577
2016-12-01	Result pages opened	4577
2016-12-01	search sessions	3115

Reverting working directory to "/home/bearloga/source/golden"

It took 27s to generate this report.

Report 11 of 49

  1. Executing report "cirrus_suggestion_breakdown_with_automata" from the metrics/search module.
  2. Setting working directory to "modules/metrics/search"
  3. About to run the following command: sh cirrus_suggestion_breakdown_with_automata 2016-12-01 2016-12-02

Output:

date	rate
2016-12-01	0.2005

Reverting working directory to "/home/bearloga/source/golden"

It took 17m 1s to generate this report.

Report 12 of 49

  1. Executing report "cirrus_suggestion_breakdown_no_automata" from the metrics/search module.
  2. Setting working directory to "modules/metrics/search"
  3. About to run the following command: sh cirrus_suggestion_breakdown_no_automata 2016-12-01 2016-12-02

Output:

date	rate
2016-12-01	0.1516

Reverting working directory to "/home/bearloga/source/golden"

It took 12m 36s to generate this report.

Report 13 of 49

  1. Executing report "cirrus_query_breakdowns_with_automata" from the metrics/search module.
  2. Setting working directory to "modules/metrics/search"
  3. About to run the following command: sh cirrus_query_breakdowns_with_automata 2016-12-01 2016-12-02

Output:

date	query_type	rate
2016-12-01	full_text	0.2614
2016-12-01	comp_suggest	0.2568
2016-12-01	regex	0.7748
2016-12-01	GeoData_spatial_search	0.3559
2016-12-01	more_like	0.0108
2016-12-01	prefix	0.2416

Reverting working directory to "/home/bearloga/source/golden"

It took 17m 42s to generate this report.

Report 14 of 49

  1. Executing report "cirrus_query_breakdowns_no_automata" from the metrics/search module.
  2. Setting working directory to "modules/metrics/search"
  3. About to run the following command: sh cirrus_query_breakdowns_no_automata 2016-12-01 2016-12-02

Output:

date	query_type	rate
2016-12-01	full_text	0.1515
2016-12-01	comp_suggest	0.2415
2016-12-01	more_like	0.0107
2016-12-01	regex	0.7795
2016-12-01	prefix	0.1941
2016-12-01	GeoData_spatial_search	0.2368

Reverting working directory to "/home/bearloga/source/golden"

It took 17m 31s to generate this report.

Report 15 of 49

  1. Executing report "cirrus_query_aggregates_with_automata" from the metrics/search module.
  2. Setting working directory to "modules/metrics/search"
  3. About to run the following command: sh cirrus_query_aggregates_with_automata 2016-12-01 2016-12-02

Output:

date	rate
2016-12-01	0.2469

Reverting working directory to "/home/bearloga/source/golden"

It took 1h 15m 17s to generate this report.

Report 16 of 49

  1. Executing report "cirrus_query_aggregates_no_automata" from the metrics/search module.
  2. Setting working directory to "modules/metrics/search"
  3. About to run the following command: sh cirrus_query_aggregates_no_automata 2016-12-01 2016-12-02

Output:

date	rate
2016-12-01	0.2107

Reverting working directory to "/home/bearloga/source/golden"

It took 36m 52s to generate this report.

Report 17 of 49

  1. Executing report "cirrus_langproj_breakdown_with_automata" from the metrics/search module.
  2. Setting working directory to "modules/metrics/search"
  3. About to run the following command: sh cirrus_langproj_breakdown_with_automata 2016-12-01 2016-12-02

Output:

Warning message:
In .doLoadActions(where, attach) :
  trying to execute load actions without 'methods' package
date	language	project	zero_results	total
2016-12-01	Kashubian	Wikipedia	267	405
2016-12-01	Fijian	Wiktionary	19	19
2016-12-01	Gujarati	Wikiquote	10	20
2016-12-01	Hebrew	Wikisource	1778	4740
2016-12-01	Interlingue	Wikipedia	222	356
2016-12-01	Latin	Wikiquote	92350	92368
2016-12-01	Latvian	Wikipedia	10872	44688
2016-12-01	Maithili	Wikipedia	241	353
2016-12-01	NA	MediaWiki	15403	28444
2016-12-01	Dutch	Wikipedia	344926	1492561
2016-12-01	Pangasinan	Wikipedia	283	339
2016-12-01	Picard	Wikipedia	273	417
2016-12-01	Pali	Wikipedia	241	244
2016-12-01	Shona	Wikipedia	343	662
2016-12-01	Tamil	Wikipedia	29946	61355
2016-12-01	Tatar	Wiktionary	16	18
2016-12-01	Chinese	Wikinews	64	136
2016-12-01	Akan	Wikipedia	139	170
2016-12-01	Bosnian	Wikipedia	6522	26125
2016-12-01	Lower Sorbian	Wikipedia	354	468
2016-12-01	English	Wikivoyage	9936	26576
2016-12-01	Esperanto	Wiktionary	156	341
2016-12-01	Franco-Provençal	Wikipedia	269	344
2016-12-01	West Frisian	Wikipedia	131	907
2016-12-01	Hawaiian	Wikipedia	254	314
2016-12-01	Hebrew	Wiktionary	2184	6195
2016-12-01	Khmer	Wikibooks	1	6
2016-12-01	Lak	Wikipedia	287	328
2016-12-01	Lithuanian	Wiktionary	494	1430
2016-12-01	Malayalam	Wikibooks	37	41
2016-12-01	Mazandarani	Wikipedia	337	1125
2016-12-01	Pennsylvania German	Wikipedia	380	584
2016-12-01	Romani	Wikipedia	409	566
2016-12-01	Sindhi	Wikipedia	454	767
2016-12-01	NA	Wikispecies	2185	10105
2016-12-01	NA	Test Wikipedia	172	404
2016-12-01	Tok Pisin	Wiktionary	21	22
2016-12-01	Turkish	Wikisource	200	444
2016-12-01	Tahitian	Wikipedia	248	256
2016-12-01	Vietnamese	Wikibooks	122	250
2016-12-01	Volapük	Wiktionary	18	28
2016-12-01	Chinese	Wikipedia	542894	1601021
2016-12-01	Aragonese	Wikipedia	331	1329
2016-12-01	Arabic	Wikisource	3844	8286
2016-12-01	Buryat	Wikipedia	296	384
2016-12-01	Catalan	Wikipedia	66505	244528
2016-12-01	English	Wikibooks	19821	42022
2016-12-01	Spanish	Wiktionary	33169	53801
2016-12-01	French	Wikipedia	1118445	4523433
2016-12-01	Ilokano	Wikipedia	377	858
2016-12-01	Kabyle	Wikipedia	289	457
2016-12-01	Kashmiri	Wikipedia	17	19
2016-12-01	Maori	Wikipedia	229	411
2016-12-01	Norwegian (Bokmål)	Wiktionary	1091	5428
2016-12-01	Western Punjabi	Wikipedia	312	613
2016-12-01	Kinyarwanda	Wikipedia	445	626
2016-12-01	Swahili	Wikipedia	3444	8449
2016-12-01	Thai	Wikisource	407	670
2016-12-01	Arabic	Wiktionary	2213	5190
2016-12-01	Bulgarian	Wikipedia	33747	142887
2016-12-01	Welsh	Wikipedia	640	2816
2016-12-01	Estonian	Wikibooks	2	4
2016-12-01	Basque	Wikipedia	14447	47038
2016-12-01	Gujarati	Wikipedia	7657	14160
2016-12-01	Hungarian	Wikipedia	75397	341594
2016-12-01	Italian	Wikiquote	106359	117273
2016-12-01	Kongo	Wikipedia	260	292
2016-12-01	Khmer	Wikipedia	2243	5517
2016-12-01	Luxembourgish	Wikiquote	46356	47824
2016-12-01	Meadow Mari	Wikipedia	187	330
2016-12-01	Malayalam	Wikiquote	26	42
2016-12-01	Swedish	Wikipedia	147605	919163
2016-12-01	Thai	Wikibooks	509	795
2016-12-01	Turkish	Wikiquote	707	2865
2016-12-01	Urdu	Wikipedia	9627	29328
2016-12-01	Waray	Wikipedia	11771	12426
2016-12-01	Wolof	Wiktionary	25	45
2016-12-01	Classical Chinese	Wikipedia	592	1117
2016-12-01	German	Arbitration Committee wiki	17	27
2016-12-01	Chuvash	Wikipedia	392	972
2016-12-01	Spanish	Wikinews	333	712
2016-12-01	North Frisian	Wikipedia	217	384
2016-12-01	Hausa	Wiktionary	21	21
2016-12-01	Hindi	Wiktionary	1607	4333
2016-12-01	Haitian	Wikipedia	340	758
2016-12-01	Jamaican Patois	Wikipedia	255	366
2016-12-01	Nepali	Wikipedia	5030	12112
2016-12-01	Polish	Wikivoyage	1082	1909
2016-12-01	Vietnamese	Wikivoyage	21	78
2016-12-01	Walloon	Wiktionary	37	123
2016-12-01	Bosnian	Wikiquote	52498	52576
2016-12-01	Greek	Wikisource	190	353
2016-12-01	Spanish	Wikivoyage	269	591
2016-12-01	Basque	Wiktionary	44	80
2016-12-01	Finnish	Wikiquote	7449	8016
2016-12-01	Javanese	Wiktionary	310	1140
2016-12-01	Kurdish (Kurmanji)	Wikipedia	589	2164
2016-12-01	Komi	Wikipedia	200	376
2016-12-01	Lithuanian	Wikipedia	19296	85734
2016-12-01	Minangkabau	Wikipedia	253	436
2016-12-01	Norwegian (Bokmål)	Wikibooks	125	212
2016-12-01	Pashto	Wikibooks	3	3
2016-12-01	Simple English	Wikipedia	48209	135896
2016-12-01	Serbian	Wiktionary	421	2154
2016-12-01	Venda	Wikipedia	12	20
2016-12-01	Anglo-Saxon	Wikipedia	839	1482
2016-12-01	Arabic	Wikipedia	481034	1685226
2016-12-01	Bashkir	Wikipedia	620	1497
2016-12-01	Czech	Wikipedia	210262	1010576
2016-12-01	German	Wikipedia	1602190	8556980
2016-12-01	Zazaki	Wikipedia	230	746
2016-12-01	Italian	Wikibooks	1940	3172
2016-12-01	Korean	Wikipedia	174300	541297
2016-12-01	Ladino	Wikipedia	297	432
2016-12-01	Latin	Wikisource	53	152
2016-12-01	Lombard	Wikipedia	201	728
2016-12-01	Sanskrit	Wikibooks	9	18
2016-12-01	Albanian	Wiktionary	1272	2090
2016-12-01	Telugu	Wikipedia	16988	36403
2016-12-01	Turkish	Wikimedia Chapter	55	60
2016-12-01	Uzbek	Wiktionary	90	466
2016-12-01	Azerbaijani	Wikiquote	35079	35413
2016-12-01	Bishnupriya Manipuri	Wikipedia	372	618
2016-12-01	Cree	Wikipedia	7	13
2016-12-01	Czech	Wikisource	176	460
2016-12-01	Ewe	Wikipedia	282	315
2016-12-01	English	Wikipedia	9688613	51073162
2016-12-01	Scottish Gaelic	Wikipedia	346	1073
2016-12-01	Gilaki	Wikipedia	266	391
2016-12-01	Interlingua	Wikipedia	330	975
2016-12-01	Japanese	Wikipedia	624099	2209293
2016-12-01	Marathi	Wikipedia	35614	61595
2016-12-01	Burmese	Wiktionary	127	273
2016-12-01	Dutch	Wiktionary	2259	14032
2016-12-01	Rusyn	Wikipedia	303	633
2016-12-01	Sinhalese	Wikipedia	3763	9547
2016-12-01	Slovenian	Wikiquote	18859	19890
2016-12-01	NA	Sources wiki	1995	3295
2016-12-01	Swedish	Wikiversity	48	70
2016-12-01	Vietnamese	Wikisource	101	198
2016-12-01	Chinese	Wikibooks	590	734
2016-12-01	Afrikaans	Wikipedia	2366	8435
2016-12-01	Bengali	Wikipedia	31051	115920
2016-12-01	Min Dong	Wikipedia	257	342
2016-12-01	Czech	Wiktionary	9274	26845
2016-12-01	Danish	Wikipedia	61059	248407
2016-12-01	Danish	Wiktionary	329	707
2016-12-01	English	Wikisource	6019	15622
2016-12-01	Hebrew	Wikivoyage	363	689
2016-12-01	Upper Sorbian	Wikipedia	450	977
2016-12-01	Armenian	Wikipedia	19015	54685
2016-12-01	Ido	Wiktionary	20	172
2016-12-01	Icelandic	Wikipedia	3485	13718
2016-12-01	Italian	Wikisource	1944	4209
2016-12-01	Low Saxon	Wikipedia	493	1352
2016-12-01	Oromo	Wikipedia	262	315
2016-12-01	Portuguese	Wiktionary	4805	13735
2016-12-01	Romansh	Wikipedia	217	383
2016-12-01	Romanian	Wikibooks	43	51
2016-12-01	Russian	Wikipedia	1081968	4839601
2016-12-01	Russian	Wikinews	98	304
2016-12-01	Sundanese	Wikiquote	8	12
2016-12-01	Central Bicolano	Wikipedia	279	626
2016-12-01	Kashubian	Wiktionary	18	22
2016-12-01	German	Wiktionary	15748	147866
2016-12-01	English	Wiktionary	69596	618015
2016-12-01	Persian	Wikipedia	238334	903427
2016-12-01	Hakka	Wikipedia	228	400
2016-12-01	Armenian	Wikibooks	25	46
2016-12-01	Italian	Wiktionary	3187	15471
2016-12-01	Kannada	Wikipedia	11867	21402
2016-12-01	Korean	Wikisource	204	494
2016-12-01	Norwegian (Nynorsk)	Wikipedia	2581	12841
2016-12-01	Romanian	Wiktionary	340	857
2016-12-01	Sicilian	Wikipedia	337	1351
2016-12-01	Simple English	Wiktionary	609	5759
2016-12-01	Serbian	Wikipedia	23618	126146
2016-12-01	Azerbaijani	Wikibooks	343	447
2016-12-01	Catalan	Wikiquote	97076	97248
2016-12-01	Spanish	Wikipedia	2423650	7726112
2016-12-01	Indonesian	Wikisource	69	164
2016-12-01	Korean	Wiktionary	849	2629
2016-12-01	Palatinate German	Wikipedia	390	598
2016-12-01	Polish	Wikipedia	496452	1882387
2016-12-01	Aromanian	Wikipedia	237	358
2016-12-01	Albanian	Wikipedia	27817	76040
2016-12-01	Turkish	Wikinews	6	21
2016-12-01	Afrikaans	Wiktionary	206	402
2016-12-01	Chechen	Wikipedia	572	1000
2016-12-01	Welsh	Wikisource	7	10
2016-12-01	French	Wiktionary	24322	164169
2016-12-01	Indonesian	Wiktionary	1074	2893
2016-12-01	Kanuri	Wikiquote	6	7
2016-12-01	Latin	Wikipedia	1623	7073
2016-12-01	Macedonian	Wikipedia	10447	30403
2016-12-01	Malay	Wikipedia	15564	64790
2016-12-01	Quechua	Wikipedia	257	561
2016-12-01	Romanian	Wikipedia	59233	251750
2016-12-01	Turkish	Wikibooks	248	431
2016-12-01	Tatar	Wikipedia	511	1796
2016-12-01	Uyghur	Wikipedia	514	1482
2016-12-01	Acehnese	Wikipedia	346	473
2016-12-01	Catalan	Wiktionary	679	4153
2016-12-01	Estonian	Wikisource	8	22
2016-12-01	Occitan	Wikipedia	459	2250
2016-12-01	Kirundi	Wikipedia	9	19
2016-12-01	Tumbuka	Wikipedia	10	18
2016-12-01	NA	Wikimedia Commons	351619	957422
2016-12-01	German	Wikiversity	119	366
2016-12-01	Greek	Wikivoyage	50	117
2016-12-01	Finnish	Wikisource	45	187
2016-12-01	Kashmiri	Wiktionary	16	16
2016-12-01	Latin	Wiktionary	441	954
2016-12-01	Malagasy	Wiktionary	38	120
2016-12-01	Norwegian (Bokmål)	Wikipedia	96104	399480
2016-12-01	Northern Sotho	Wikipedia	239	291
2016-12-01	Portuguese	Wikinews	879	2595
2016-12-01	Russian	Wiktionary	16372	218917
2016-12-01	Slovak	Wikipedia	57409	151459
2016-12-01	Swedish	Wikibooks	84	165
2016-12-01	Tagalog	Wiktionary	714	1512
2016-12-01	Southern Azerbaijani	Wikipedia	231	778
2016-12-01	Azerbaijani	Wiktionary	65	167
2016-12-01	Belarusian	Wikisource	131	229
2016-12-01	Greek	Wikipedia	82015	236723
2016-12-01	Hindi	Wikipedia	129138	255516
2016-12-01	Kurdish (Kurmanji)	Wiktionary	350	4854
2016-12-01	Mongolian	Wiktionary	37	99
2016-12-01	NA	Historic wiki	33	57
2016-12-01	Oriya	Wikipedia	1587	3352
2016-12-01	Polish	Wikiquote	4610	9906
2016-12-01	Sicilian	Wiktionary	136	405
2016-12-01	Serbo-Croatian	Wiktionary	39	450
2016-12-01	Ukrainian	Wikisource	287	403
2016-12-01	Volapük	Wikipedia	188	350
2016-12-01	Zhuang	Wikipedia	248	255
2016-12-01	Afar	Wikipedia	2390	2397
2016-12-01	Adyghe	Wikipedia	193	271
2016-12-01	Crimean Tatar	Wikipedia	338	553
2016-12-01	Faroese	Wikipedia	276	775
2016-12-01	Hebrew	Wikinews	23	23
2016-12-01	Hungarian	Wikiquote	379	607
2016-12-01	Malayalam	Wikipedia	25420	66946
2016-12-01	Muscogee	Wikipedia	51	55
2016-12-01	Sakha	Wikisource	56	99
2016-12-01	Swedish	Wikiquote	135	318
2016-12-01	Tagalog	Wikipedia	66615	169405
2016-12-01	Udmurt	Wikipedia	194	317
2016-12-01	Ukrainian	Wikipedia	128449	474072
2016-12-01	Alemannic	Wikipedia	1110	2965
2016-12-01	Aragonese	Wiktionary	40	60
2016-12-01	Arabic	Wikiversity	636	1076
2016-12-01	Bengali	Wikisource	142	304
2016-12-01	Guarani	Wikipedia	313	637
2016-12-01	Hebrew	Wikibooks	1196	1679
2016-12-01	Italian	Wikivoyage	291	990
2016-12-01	Japanese	Wikisource	138	258
2016-12-01	Kikuyu	Wikipedia	243	257
2016-12-01	Dutch	Wikibooks	970	1476
2016-12-01	Portuguese	Wikipedia	1077893	4439122
2016-12-01	Telugu	Wikisource	91	110
2016-12-01	Bengali	Wikibooks	182	249
2016-12-01	Corsican	Wikipedia	246	393
2016-12-01	Gujarati	Wikisource	29	37
2016-12-01	Fiji Hindi	Wikipedia	605	1266
2016-12-01	Indonesian	Wikipedia	222654	679362
2016-12-01	Japanese	Wiktionary	2498	15088
2016-12-01	Kannada	Wikisource	43	67
2016-12-01	Limburgish	Wikipedia	373	1159
2016-12-01	Sanskrit	Wikisource	151	366
2016-12-01	Slovenian	Wikipedia	12528	57480
2016-12-01	Slovenian	Wiktionary	176	220
2016-12-01	Telugu	Wiktionary	482	2581
2016-12-01	Turkish	Wiktionary	2850	16243
2016-12-01	Vietnamese	Wikipedia	152802	490381
2016-12-01	Amharic	Wikipedia	1057	1870
2016-12-01	Assamese	Wikipedia	826	2297
2016-12-01	German	Wikiquote	56611	60502
2016-12-01	Divehi	Wiktionary	14	14
2016-12-01	Croatian	Wikiquote	4747	4838
2016-12-01	Italian	Wikipedia	547990	3098427
2016-12-01	Limburgish	Wiktionary	17	21
2016-12-01	Mongolian	Wikipedia	10900	26125
2016-12-01	Sanskrit	Wiktionary	273	805
2016-12-01	Silesian	Wikipedia	229	471
2016-12-01	Tongan	Wikipedia	247	283
2016-12-01	Urdu	Wikiquote	11	26
2016-12-01	German	Wikibooks	6852	11853
2016-12-01	Georgian	Wiktionary	193	304
2016-12-01	Kazakh	Wikibooks	61	79
2016-12-01	Greenlandic	Wikipedia	284	336
2016-12-01	Portuguese	Wikibooks	3992	7138
2016-12-01	Thai	Wikipedia	100221	288685
2016-12-01	Uzbek	Wikipedia	3910	13370
2016-12-01	NA	Wikidata	689427	970922
2016-12-01	Bislama	Wikipedia	247	265
2016-12-01	Cebuano	Wikipedia	12645	14312
2016-12-01	Czech	Wikiquote	11550	64824
2016-12-01	Võro	Wikipedia	209	293
2016-12-01	French	Wikibooks	4310	8383
2016-12-01	Goan Konkani	Wikipedia	229	381
2016-12-01	Armenian	Wiktionary	187	1053
2016-12-01	Romanian	Wikinews	35	40
2016-12-01	Russian	Wikiquote	2451	7864
2016-12-01	Tagalog	Wikibooks	1064	1754
2016-12-01	West Flemish	Wikipedia	255	596
2016-12-01	Samogitian	Wikipedia	181	291
2016-12-01	Chamorro	Wikipedia	41	50
2016-12-01	Spanish	Wikiquote	2947	9637
2016-12-01	Lingala	Wikipedia	238	340
2016-12-01	Neapolitan	Wikipedia	423	1062
2016-12-01	Portuguese	Wikiversity	407	950
2016-12-01	Tamil	Wikibooks	125	160
2016-12-01	Twi	Wikipedia	31	41
2016-12-01	Wu	Wikipedia	675	1344
2016-12-01	Bavarian	Wikipedia	602	2200
2016-12-01	Bulgarian	Wiktionary	512	2179
2016-12-01	Persian	Wikibooks	590	888
2016-12-01	Inuktitut	Wikipedia	231	278
2016-12-01	Lojban	Wikipedia	248	324
2016-12-01	Luxembourgish	Wiktionary	28	37
2016-12-01	Lao	Wiktionary	16	20
2016-12-01	Lithuanian	Wikibooks	58	77
2016-12-01	Malagasy	Wikipedia	297	675
2016-12-01	Polish	Wikinews	102	215
2016-12-01	Piedmontese	Wikipedia	256	411
2016-12-01	Portuguese	Wikiquote	48979	51131
2016-12-01	Sango	Wiktionary	14	14
2016-12-01	Sesotho	Wiktionary	18	27
2016-12-01	Sundanese	Wikipedia	869	2232
2016-12-01	Tajik	Wikipedia	1727	4531
2016-12-01	NA	Wikimania 2016	46	65
2016-12-01	Belarusian	Wikipedia	2461	9668
2016-12-01	Spanish	Wikibooks	6787	10205
2016-12-01	Irish	Wikipedia	761	2463
2016-12-01	Croatian	Wikisource	89	204
2016-12-01	Italian	Wikinews	100	231
2016-12-01	Kazakh	Wikipedia	22765	77104
2016-12-01	Lithuanian	Wikisource	11	15
2016-12-01	Norwegian (Bokmål)	Wikimedia Chapter	38	52
2016-12-01	Navajo	Wikipedia	22	105
2016-12-01	Saterland Frisian	Wikipedia	267	403
2016-12-01	Sesotho	Wikipedia	943	1008
2016-12-01	Finnish	Wikivoyage	226	242
2016-12-01	Galician	Wikipedia	4688	20257
2016-12-01	Norwegian (Bokmål)	Wikisource	20	22
2016-12-01	Livvi-Karelian	Wikipedia	191	277
2016-12-01	Slovak	Wikisource	78	102
2016-12-01	Egyptian Arabic	Wikipedia	3919	13040
2016-12-01	Kurdish (Sorani)	Wikipedia	2651	8366
2016-12-01	Danish	Wikiquote	37	66
2016-12-01	Persian	Wiktionary	423	1295
2016-12-01	Fula	Wikipedia	7	14
2016-12-01	Hebrew	Wikipedia	148680	503675
2016-12-01	Ido	Wikipedia	161	534
2016-12-01	Spanish (Mexico)	Wikimedia Chapter	234	282
2016-12-01	Burmese	Wikipedia	4389	9451
2016-12-01	Nahuatl	Wiktionary	16	16
2016-12-01	Finnish	Wikipedia	97851	555817
2016-12-01	Samoan	Wiktionary	14	14
2016-12-01	Khmer	Wiktionary	110	378
2016-12-01	Lao	Wikipedia	528	1159
2016-12-01	Slovak	Wikiquote	87	204
2016-12-01	Esperanto	Wikiquote	14	22
2016-12-01	Indonesian	Wikibooks	2014	2789
2016-12-01	NA	Wikitech	283	533
2016-12-01	Mirandese	Wikipedia	251	339
2016-12-01	Turkish	Wikipedia	179756	793885
2016-12-01	NA	Vote wiki	34	40
2016-12-01	Cherokee	Wiktionary	29	52
2016-12-01	English	Wikinews	4078	8159
2016-12-01	Japanese	Wikiquote	143	198
2016-12-01	Malayalam	Wiktionary	269	691
2016-12-01	Dutch	Wikiquote	1085	1564
2016-12-01	Occitan	Wiktionary	35	115
2016-12-01	Sinhalese	Wiktionary	24	24
2016-12-01	Zeelandic	Wikipedia	208	311
2016-12-01	Aramaic	Wikipedia	232	336
2016-12-01	Bosnian	Wiktionary	23	30
2016-12-01	Corsican	Wikimedia Chapter	24	32
2016-12-01	Danish	Wikisource	47	126
2016-12-01	Finnish	Wikibooks	176	339
2016-12-01	Croatian	Wiktionary	283	802
2016-12-01	Korean	Wikinews	9	11
2016-12-01	Malay	Wikibooks	19	39
2016-12-01	Portuguese	Wikisource	1339	2410
2016-12-01	Somali	Wikipedia	1327	3470
2016-12-01	Ukrainian	Wikiquote	148	344
2016-12-01	Walloon	Wikipedia	200	622
2016-12-01	German	Wikisource	1460	4158
2016-12-01	English	Wikiversity	3753	8088
2016-12-01	Hill Mari	Wikipedia	180	288
2016-12-01	Western Punjabi	Wiktionary	20	23
2016-12-01	Romanian	Wikisource	633	1408
2016-12-01	Finnish	Wiktionary	1335	11135
2016-12-01	French	Wikinews	1527	2697
2016-12-01	Indonesian	Wikiquote	424	900
2016-12-01	Maltese	Wikipedia	671	1172
2016-12-01	Pashto	Wikipedia	702	1651
2016-12-01	Sundanese	Wikibooks	2	2
2016-12-01	NA	10th Anniversary of Wikipedia	1	13
2016-12-01	Tsonga	Wiktionary	36	38
2016-12-01	Yoruba	Wikipedia	179	356
2016-12-01	Aymara	Wikipedia	228	348
2016-12-01	Bulgarian	Wikiquote	154	324
2016-12-01	Breton	Wikipedia	4135	7034
2016-12-01	French	Wikiquote	2280	4557
2016-12-01	French	Wikisource	7740	20355
2016-12-01	Hindi	Wikibooks	1472	1662
2016-12-01	Northern Sami	Wikimedia Chapter	225	338
2016-12-01	Slovenian	Wikisource	199	814
2016-12-01	Albanian	Wikinews	3	3
2016-12-01	Anglo-Saxon	Wiktionary	26	34
2016-12-01	Catalan	Wikibooks	108	181
2016-12-01	Catalan	Wikisource	111	199
2016-12-01	Hiri Motu	Wikipedia	4	4
2016-12-01	Ripuarian	Wikipedia	271	414
2016-12-01	Nepali	Wiktionary	54	69
2016-12-01	Dutch	Wikimedia Chapter	174	279
2016-12-01	Oriya	Wikisource	26	31
2016-12-01	Tamil	Wikinews	22	35
2016-12-01	Dzongkha	Wikipedia	13	25
2016-12-01	Hindi	Wikiquote	123	159
2016-12-01	Croatian	Wikipedia	32015	126523
2016-12-01	Kirghiz	Wiktionary	21	29
2016-12-01	Oriya	Wiktionary	16	38
2016-12-01	Russian	Wikisource	2307	6744
2016-12-01	Tok Pisin	Wikipedia	293	360
2016-12-01	Yiddish	Wikipedia	312	1165
2016-12-01	Spanish	Wikiversity	1208	1939
2016-12-01	Galician	Wikibooks	14	22
2016-12-01	Inupiak	Wikipedia	29	39
2016-12-01	Italian	Wikiversity	781	1538
2016-12-01	Newar	Wikipedia	550	1141
2016-12-01	Chichewa	Wikipedia	114	137
2016-12-01	Sakha	Wikipedia	342	914
2016-12-01	Wolof	Wikipedia	224	291
2016-12-01	Cantonese	Wikipedia	1498	3494
2016-12-01	Chinese	Wiktionary	1860	7727
2016-12-01	Azerbaijani	Wikipedia	1915510	1985258
2016-12-01	Breton	Wikisource	13	62
2016-12-01	Bosnian	Wikibooks	13	13
2016-12-01	English	Wikiquote	73494	103705
2016-12-01	Georgian	Wikipedia	42341	109255
2016-12-01	Lithuanian	Wikiquote	62427	62499
2016-12-01	Novial	Wikipedia	281	395
2016-12-01	NA	Wikimedia OTRS system	30	64
2016-12-01	Sundanese	Wiktionary	22	23
2016-12-01	Komi-Permyak	Wikipedia	206	253
2016-12-01	Kirghiz	Wikipedia	5167	14699
2016-12-01	Albanian	Wikiquote	105	144
2016-12-01	Banjar	Wikipedia	249	404
2016-12-01	German	Wikivoyage	1074	4249
2016-12-01	Greek	Wikiquote	528	871
2016-12-01	NA	Wikimedia Foundation wiki	15906	20775
2016-12-01	Hungarian	Wikibooks	169	283
2016-12-01	Interlingua	Wiktionary	20	26
2016-12-01	Karakalpak	Wikipedia	259	352
2016-12-01	Marathi	Wikibooks	67	73
2016-12-01	Javanese	Wikipedia	1084	3211
2016-12-01	Kirghiz	Wikiquote	225	263
2016-12-01	NA	Office wiki	101	608
2016-12-01	Arabic	Wikibooks	2088	3904
2016-12-01	Bengali	Wiktionary	170	219
2016-12-01	French	Wikivoyage	1380	2722
2016-12-01	Icelandic	Wiktionary	246	691
2016-12-01	Kannada	Wikiquote	9	9
2016-12-01	Latvian	Wiktionary	188	316
2016-12-01	Shona	Wiktionary	3	3
2016-12-01	Breton	Wiktionary	116	425
2016-12-01	Armenian	Wikisource	409	659
2016-12-01	Kannada	Wiktionary	248	1208
2016-12-01	Nahuatl	Wikipedia	201	380
2016-12-01	Emilian-Romagnol	Wikipedia	220	494
2016-12-01	Estonian	Wikipedia	16241	73859
2016-12-01	Polish	Wiktionary	7530	50984
2016-12-01	Serbian	Wikibooks	18	36
2016-12-01	Serbian	Wikisource	203	505
2016-12-01	Tswana	Wiktionary	15	16
2016-12-01	Zulu	Wikipedia	321	418
2016-12-01	Gan	Wikipedia	456	811
2016-12-01	Georgian	Wikiquote	211	334
2016-12-01	Ossetian	Wikipedia	257	403
2016-12-01	Northern Sami	Wikipedia	50547	50983
2016-12-01	Vietnamese	Wiktionary	2412	16264
2016-12-01	German	Wikinews	74	234
2016-12-01	Norman	Wikipedia	198	353
2016-12-01	Cheyenne	Wikipedia	263	269
2016-12-01	Hungarian	Wiktionary	633	2452
2016-12-01	Russian	Wikibooks	717	1376
2016-12-01	NA	Collaboration wiki	2	10
2016-12-01	Persian	Wikisource	746	1294
2016-12-01	Arabic	Wikinews	478	945
2016-12-01	Aromanian	Wiktionary	18	20
2016-12-01	Danish	Wikibooks	44	57
2016-12-01	Irish	Wiktionary	30	53
2016-12-01	Ukrainian	Wiktionary	622	1583
2016-12-01	Esperanto	Wikipedia	2210	9125
2016-12-01	Malagasy	Wikibooks	37	50
2016-12-01	Samoan	Wikipedia	313	370
2016-12-01	Swati	Wikipedia	279	293
2016-12-01	Japanese	Wikiversity	24	56
2016-12-01	Romanian	Wikiquote	69	116
2016-12-01	Alemannic	Wiktionary	1	1
2016-12-01	Bosnian	Wikisource	34	42
2016-12-01	Catalan	Wikimedia Chapter	81	137
2016-12-01	Greek	Wiktionary	10378	69868
2016-12-01	Swedish	Wiktionary	3749	28647
2016-12-01	Tulu	Wikipedia	196	255
2016-12-01	Thai	Wikiquote	131	212
2016-12-01	West Frisian	Wiktionary	17	17
2016-12-01	Japanese	Wikibooks	1718	2518
2016-12-01	Slovak	Wikibooks	25	36
2016-12-01	Eastern Punjabi	Wikipedia	2111	4689
2016-12-01	Simple English	Wikibooks	5	11
2016-12-01	Ukrainian	Wikibooks	130	227
2016-12-01	Persian	Wikivoyage	168	335
2016-12-01	Friulian	Wikipedia	206	352
2016-12-01	Luxembourgish	Wikipedia	1771	4068
2016-12-01	Turkmen	Wikipedia	561	1136
2016-12-01	Mingrelian	Wikipedia	274	514
2016-12-01	Assamese	Wikisource	12	27
2016-12-01	Icelandic	Wikibooks	14	35
2016-12-01	Polish	Wikibooks	1216	1995
2016-12-01	Simple English	Wikiquote	137	199
2016-12-01	Somali	Wiktionary	15	15
2016-12-01	Chinese	Wikiquote	964	1361
2016-12-01	Bulgarian	Wikibooks	36	48
2016-12-01	NA	Incubator for new wikis	1212	1844
2016-12-01	Korean	Wikibooks	32	72
2016-12-01	Northern Luri	Wikipedia	169	200
2016-12-01	Eastern Punjabi	Wikibooks	2	2
2016-12-01	Serbo-Croatian	Wikipedia	9661	44325
2016-12-01	Cornish	Wikipedia	216	388
2016-12-01	Chinese	Wikisource	2354	3971
2016-12-01	NA	Incubator for Wikiversities	103	178
2016-12-01	Belarusian	Wikibooks	0	2
2016-12-01	Tamil	Wiktionary	1593	8962
2016-12-01	Uyghur	Wiktionary	18	24
2016-12-01	Croatian	Wikibooks	331	398
2016-12-01	Belarusian	Wikiquote	52008	52029
2016-12-01	Vepsian	Wikipedia	265	333
2016-12-01	Kazakh	Wikiquote	19	35
2016-12-01	Dutch Low Saxon	Wikipedia	446	920
2016-12-01	Pashto	Wiktionary	17	28
2016-12-01	Albanian	Wikibooks	267	415
2016-12-01	Chavacano	Wikipedia	220	256
2016-12-01	Greek	Wikibooks	227	352
2016-12-01	Kapampangan	Wikipedia	218	499
2016-12-01	Galician	Wikisource	13	18
2016-12-01	Russian	Wikimedia Chapter	101	144
2016-12-01	Sardinian	Wikipedia	311	521
2016-12-01	Persian	Wikiquote	549	1443
2016-12-01	Hausa	Wikipedia	324	395
2016-12-01	Hebrew	Wikiquote	1080	2818
2016-12-01	Kanuri	Wikipedia	56	59
2016-12-01	Polish	Wikisource	986	2621
2016-12-01	Scots	Wikipedia	564	2473
2016-12-01	Tibetan	Wikipedia	545	1109
2016-12-01	Basque	Wikiquote	11	26
2016-12-01	Chinese	Wikivoyage	151	357
2016-12-01	Ligurian	Wikipedia	272	397
2016-12-01	NA	Login wiki	23	27
2016-12-01	Nauruan	Wikipedia	266	299
2016-12-01	Nepali	Wikibooks	5	9
2016-12-01	Tswana	Wikipedia	265	310
2016-12-01	Russian	Wikiversity	549	880
2016-12-01	Tajik	Wikibooks	8	8
2016-12-01	Kurdish (Kurmanji)	Wikiquote	1	1
2016-12-01	Slovak	Wiktionary	193	247
2016-12-01	Amharic	Wiktionary	53	54
2016-12-01	Gagauz	Wikipedia	374	601
2016-12-01	Galician	Wiktionary	77	212
2016-12-01	Latgalian	Wikipedia	225	273
2016-12-01	Eastern Punjabi	Wiktionary	14	14
2016-12-01	Telugu	Wikiquote	16	22
2016-12-01	Vietnamese	Wikiquote	522	795
2016-12-01	Breton	Wikimedia Chapter	15	17
2016-12-01	Polish	Wikimedia Chapter	89	197
2016-12-01	Swedish	Wikisource	169	345
2016-12-01	Azerbaijani	Wikisource	350	625
2016-12-01	Dutch	Wikisource	51	129
2016-12-01	Tigrinya	Wikipedia	105	132
2016-12-01	Welsh	Wikiquote	61631	62087
2016-12-01	Avar	Wikipedia	231	285
2016-12-01	Belarusian	Wikimedia Chapter	1	1
2016-12-01	Norwegian (Bokmål)	Wikiquote	67	111
2016-12-01	Swati	Wiktionary	28	40
2016-12-01	Tuvan	Wikipedia	217	297
2016-12-01	Ukrainian	Wikinews	22	24
2016-12-01	Finnish	Wikiversity	53	61
2016-12-01	Manx	Wikipedia	184	312
2016-12-01	Hungarian	Wikisource	24	104
2016-12-01	Urdu	Wiktionary	59	125
2016-12-01	Czech	Wikiversity	121	381
2016-12-01	Asturian	Wikipedia	649	2016
2016-12-01	Inuktitut	Wiktionary	17	17
2016-12-01	Tamil	Wikisource	262	329
2016-12-01	Abkhazian	Wikipedia	347	381
2016-12-01	Swedish	Wikivoyage	34	92
2016-12-01	Macedonian	Wiktionary	165	247
2016-12-01	Dutch	Wikivoyage	30	158
2016-12-01	Sranan	Wikipedia	235	259
2016-12-01	Urdu	Wikibooks	11	15
2016-12-01	Cherokee	Wikipedia	265	340
2016-12-01	Lezgian	Wikipedia	231	319
2016-12-01	Sanskrit	Wikipedia	1959	3935
2016-12-01	Welsh	Wiktionary	45	81
2016-12-01	Xhosa	Wikipedia	31	85
2016-12-01	Estonian	Wiktionary	298	811
2016-12-01	Igbo	Wikipedia	9743	11013
2016-12-01	Tigrinya	Wiktionary	16	16
2016-12-01	Kalmyk	Wikipedia	242	246
2016-12-01	Belarusian	Wiktionary	87	90
2016-12-01	NA	Wikimedia Outreach	87	121
2016-12-01	Venetian	Wikipedia	399	1266
2016-12-01	Macedonian	Wikibooks	10	13
2016-12-01	Dutch	Arbitration Committee wiki	4	9
2016-12-01	Arabic	Wikimedia Chapter	31	57
2016-12-01	Corsican	Wiktionary	92	155
2016-12-01	Czech	Wikibooks	206	313
2016-12-01	Extremaduran	Wikipedia	307	458
2016-12-01	French	Wikiversity	3520	6149
2016-12-01	Gujarati	Wiktionary	38	64
2016-12-01	Norfolk	Wikipedia	252	294
2016-12-01	Catalan	Wikinews	75	185
2016-12-01	Spanish	Wikisource	3121	6867
2016-12-01	Nuosu	Wikipedia	1	1
2016-12-01	Kazakh	Wiktionary	23	36
2016-12-01	Karachay-Balkar	Wikipedia	241	298
2016-12-01	Uzbek	Wikibooks	5	5
2016-12-01	Turkmen	Wiktionary	19	19
2016-12-01	Guarani	Wiktionary	16	22
2016-12-01	NA	Meta wiki	7235	14312
2016-12-01	Choctaw	Wikipedia	4	5
2016-12-01	Old Church Slavonic	Wikipedia	339	417
2016-12-01	Cornish	Wiktionary	14	15
2016-12-01	Thai	Wiktionary	873	3433
2016-12-01	Korean	Wikiquote	8702	8704
2016-12-01	Marathi	Wiktionary	32	53
2016-12-01	Twi	Wiktionary	5	5
2016-12-01	Tamil	Wikiquote	7	9
2016-12-01	Macedonian	Wikisource	33	44
2016-12-01	Sardinian	Wiktionary	13	13
2016-12-01	Portuguese	Wikivoyage	191	665
2016-12-01	Moldovan	Wikipedia	11	32
2016-12-01	Romanian	Wikivoyage	5	6
2016-12-01	Bambara	Wikipedia	280	319
2016-12-01	Zhuang	Wiktionary	19	19
2016-12-01	Occitan	Wikibooks	1	1
2016-12-01	Russian	Wikivoyage	387	796
2016-12-01	Arabic	Wikiquote	32954	33924
2016-12-01	NA	Board wiki	1	6
2016-12-01	Tetum	Wikipedia	258	306
2016-12-01	Venetian	Wiktionary	8	28
2016-12-01	Bihari	Wikipedia	353	657
2016-12-01	Hungarian	Wikinews	8	12
2016-12-01	Luganda	Wikipedia	43	121
2016-12-01	Malay	Wiktionary	103	201
2016-12-01	Divehi	Wikipedia	192	274
2016-12-01	Uzbek	Wikiquote	2	2
2016-12-01	Papiamentu	Wikipedia	345	535
2016-12-01	Malayalam	Wikisource	251	396
2016-12-01	Sindhi	Wiktionary	17	18
2016-12-01	Greek	Wikiversity	141	220
2016-12-01	Banyumasan	Wikipedia	199	310
2016-12-01	Marathi	Wikiquote	4	9
2016-12-01	Japanese	Wikinews	18	80
2016-12-01	Sinhalese	Wikibooks	48	93
2016-12-01	Welsh	Wikibooks	0	1
2016-12-01	Marathi	Wikisource	44	63
2016-12-01	Serbian	Wikiquote	4	5
2016-12-01	Oromo	Wiktionary	16	16
2016-12-01	Breton	Wikiquote	23810	23810
2016-12-01	Buginese	Wikipedia	210	271
2016-12-01	Moksha	Wikipedia	219	253
2016-12-01	Manx	Wiktionary	17	17
2016-12-01	Low Saxon	Wiktionary	15	15
2016-12-01	Gothic	Wikipedia	256	288
2016-12-01	Afrikaans	Wikibooks	2	2
2016-12-01	Greenlandic	Wiktionary	14	14
2016-12-01	Tajik	Wiktionary	21	22
2016-12-01	Kabardian	Wikipedia	174	294
2016-12-01	Serbian	Wikimedia Chapter	27	36
2016-12-01	Kirghiz	Wikibooks	77	91
2016-12-01	Ukrainian	Wikimedia Chapter	78	125
2016-12-01	NA	Wikimania 2014	1	3
2016-12-01	Marshallese	Wikipedia	43	43
2016-12-01	Kinyarwanda	Wiktionary	17	17
2016-12-01	NA	Wikidata Test	0	120
2016-12-01	Korean	Wikiversity	38	41
2016-12-01	Tatar	Wikibooks	132	168
2016-12-01	Venetian	Wikisource	4	23
2016-12-01	Tsonga	Wikipedia	20	30
2016-12-01	Slovenian	Wikiversity	6	6
2016-12-01	Swahili	Wiktionary	41	73
2016-12-01	Georgian	Wikibooks	52	71
2016-12-01	Erzya	Wikipedia	232	270
2016-12-01	Quechua	Wiktionary	1	1
2016-12-01	Zulu	Wiktionary	16	17
2016-12-01	Persian	Wikinews	17	44
2016-12-01	Pontic	Wikipedia	287	350
2016-12-01	Danish	Wikimedia Chapter	40	49
2016-12-01	Estonian	Wikiquote	69	158
2016-12-01	Faroese	Wiktionary	19	20
2016-12-01	Maltese	Wiktionary	16	16
2016-12-01	Tarantino	Wikipedia	216	243
2016-12-01	Asturian	Wiktionary	16	20
2016-12-01	Sanskrit	Wikiquote	4	9
2016-12-01	Czech	Wikinews	48	80
2016-12-01	Ukrainian	Wikivoyage	26	39
2016-12-01	Greek	Wikinews	5	5
2016-12-01	Armenian	Wikiquote	112	204
2016-12-01	Cornish	Wikiquote	1	1
2016-12-01	Nauruan	Wiktionary	14	14
2016-12-01	Norwegian (Nynorsk)	Wiktionary	48	108
2016-12-01	Yiddish	Wiktionary	20	21
2016-12-01	NA	Strategy wiki	22	29
2016-12-01	Telugu	Wikibooks	150	162
2016-12-01	Assamese	Wiktionary	3	3
2016-12-01	Lingala	Wiktionary	17	19
2016-12-01	Scottish Gaelic	Wiktionary	28	29
2016-12-01	Aymara	Wiktionary	23	23
2016-12-01	Upper Sorbian	Wiktionary	21	28
2016-12-01	Sindhi	Wikinews	1	1
2016-12-01	Chamorro	Wiktionary	1	1
2016-12-01	Esperanto	Wikibooks	1	1
2016-12-01	Thai	Wikinews	2	2
2016-12-01	Assamese	Wikibooks	1	1
2016-12-01	Interlingue	Wiktionary	15	15
2016-12-01	Fijian	Wikipedia	241	245
2016-12-01	Ndonga	Wikipedia	2	2
2016-12-01	Maori	Wiktionary	16	16
2016-12-01	Bambara	Wiktionary	1	1
2016-12-01	Lojban	Wiktionary	15	15
2016-12-01	Sango	Wikipedia	2	10
2016-12-01	Norwegian (Nynorsk)	Wikiquote	0	3
2016-12-01	Kannada	Wikibooks	5	5
2016-12-01	Afar	Wiktionary	1	1
2016-12-01	Tibetan	Wikibooks	1	1
2016-12-01	Burmese	Wikibooks	1	1
2016-12-01	Swedish	Wikinews	5	6

Reverting working directory to "/home/bearloga/source/golden"

It took 14m 0s to generate this report.

Report 18 of 49

  1. Executing report "cirrus_langproj_breakdown_no_automata" from the metrics/search module.
  2. Setting working directory to "modules/metrics/search"
  3. About to run the following command: sh cirrus_langproj_breakdown_no_automata 2016-12-01 2016-12-02

Output:

Warning message:
In .doLoadActions(where, attach) :
  trying to execute load actions without 'methods' package
date	language	project	zero_results	total
2016-12-01	Kashubian	Wikipedia	266	401
2016-12-01	Gujarati	Wikiquote	10	20
2016-12-01	Hebrew	Wikisource	1776	4737
2016-12-01	Interlingue	Wikipedia	222	349
2016-12-01	Latin	Wikiquote	16	34
2016-12-01	Latvian	Wikipedia	10538	43351
2016-12-01	Pangasinan	Wikipedia	282	335
2016-12-01	Picard	Wikipedia	272	413
2016-12-01	Pali	Wikipedia	240	243
2016-12-01	Shona	Wikipedia	343	660
2016-12-01	Tamil	Wikipedia	29234	60388
2016-12-01	Chinese	Wikinews	61	126
2016-12-01	Bosnian	Wikipedia	6463	25888
2016-12-01	Lower Sorbian	Wikipedia	277	342
2016-12-01	Esperanto	Wiktionary	30	207
2016-12-01	Franco-Provençal	Wikipedia	257	306
2016-12-01	Hawaiian	Wikipedia	251	309
2016-12-01	Lak	Wikipedia	284	325
2016-12-01	Lithuanian	Wiktionary	369	1305
2016-12-01	Malayalam	Wikibooks	32	35
2016-12-01	Mazandarani	Wikipedia	337	1123
2016-12-01	Pennsylvania German	Wikipedia	380	583
2016-12-01	Romani	Wikipedia	403	549
2016-12-01	Sindhi	Wikipedia	454	767
2016-12-01	NA	Wikispecies	2048	9866
2016-12-01	NA	Test Wikipedia	163	352
2016-12-01	Turkish	Wikisource	200	433
2016-12-01	Tahitian	Wikipedia	248	254
2016-12-01	Vietnamese	Wikibooks	110	236
2016-12-01	Chinese	Wikipedia	313394	1149059
2016-12-01	Aragonese	Wikipedia	313	1270
2016-12-01	Arabic	Wikisource	3842	8272
2016-12-01	English	Wikibooks	19521	40468
2016-12-01	Spanish	Wiktionary	3730	17292
2016-12-01	Ilokano	Wikipedia	373	821
2016-12-01	Kabyle	Wikipedia	286	450
2016-12-01	Kashmiri	Wikipedia	16	18
2016-12-01	Maori	Wikipedia	229	385
2016-12-01	Norwegian (Bokmål)	Wiktionary	964	5299
2016-12-01	Western Punjabi	Wikipedia	312	611
2016-12-01	Kinyarwanda	Wikipedia	443	617
2016-12-01	Thai	Wikisource	406	666
2016-12-01	Bulgarian	Wikipedia	31478	136686
2016-12-01	English	Wikivoyage	6663	20820
2016-12-01	Estonian	Wikibooks	2	4
2016-12-01	Gujarati	Wikipedia	7556	14014
2016-12-01	Kongo	Wikipedia	258	287
2016-12-01	Khmer	Wikipedia	2205	5450
2016-12-01	NA	MediaWiki	12528	23997
2016-12-01	Meadow Mari	Wikipedia	187	327
2016-12-01	Malayalam	Wikiquote	26	38
2016-12-01	Dutch	Wikipedia	256368	1255005
2016-12-01	Swedish	Wikipedia	117016	848769
2016-12-01	Turkish	Wikiquote	694	2836
2016-12-01	Urdu	Wikipedia	9457	28989
2016-12-01	Waray	Wikipedia	461	1044
2016-12-01	Wolof	Wiktionary	11	31
2016-12-01	German	Arbitration Committee wiki	17	27
2016-12-01	Chuvash	Wikipedia	391	953
2016-12-01	Hausa	Wiktionary	4	4
2016-12-01	Haitian	Wikipedia	323	708
2016-12-01	Jamaican Patois	Wikipedia	254	362
2016-12-01	Nepali	Wikipedia	5013	12069
2016-12-01	Polish	Wikivoyage	1082	1909
2016-12-01	Vietnamese	Wikivoyage	21	77
2016-12-01	Walloon	Wiktionary	21	107
2016-12-01	Greek	Wikisource	179	341
2016-12-01	Spanish	Wikivoyage	248	542
2016-12-01	Basque	Wiktionary	30	66
2016-12-01	Finnish	Wikiquote	258	825
2016-12-01	French	Wikipedia	1017474	4044568
2016-12-01	Minangkabau	Wikipedia	253	432
2016-12-01	Norwegian (Bokmål)	Wikibooks	125	212
2016-12-01	Pashto	Wikibooks	3	3
2016-12-01	Venda	Wikipedia	12	20
2016-12-01	Anglo-Saxon	Wikipedia	769	1403
2016-12-01	Bashkir	Wikipedia	618	1477
2016-12-01	Italian	Wikibooks	1913	3134
2016-12-01	Latin	Wikisource	53	152
2016-12-01	Lombard	Wikipedia	201	714
2016-12-01	Sanskrit	Wikibooks	6	15
2016-12-01	Albanian	Wiktionary	336	869
2016-12-01	Telugu	Wikipedia	16721	35722
2016-12-01	Turkish	Wikimedia Chapter	55	60
2016-12-01	Uzbek	Wiktionary	75	451
2016-12-01	Bishnupriya Manipuri	Wikipedia	371	603
2016-12-01	Cree	Wikipedia	7	13
2016-12-01	Czech	Wikisource	176	460
2016-12-01	English	Wikipedia	7244229	43187304
2016-12-01	Scottish Gaelic	Wikipedia	338	1010
2016-12-01	Gilaki	Wikipedia	266	391
2016-12-01	Hebrew	Wiktionary	2134	6069
2016-12-01	Interlingua	Wikipedia	317	944
2016-12-01	Lithuanian	Wikipedia	18413	78666
2016-12-01	Rusyn	Wikipedia	301	630
2016-12-01	Sinhalese	Wikipedia	3763	9540
2016-12-01	Slovenian	Wikiquote	56	243
2016-12-01	Swedish	Wikiversity	39	57
2016-12-01	Vietnamese	Wikisource	97	188
2016-12-01	Arabic	Wikipedia	442388	1612681
2016-12-01	Bengali	Wikipedia	30152	112866
2016-12-01	Danish	Wiktionary	137	487
2016-12-01	English	Wikisource	5794	14824
2016-12-01	Hebrew	Wikivoyage	361	687
2016-12-01	Upper Sorbian	Wikipedia	327	764
2016-12-01	Armenian	Wikipedia	18911	54291
2016-12-01	Ido	Wiktionary	4	156
2016-12-01	Italian	Wikisource	1917	4133
2016-12-01	Low Saxon	Wikipedia	379	1072
2016-12-01	Oromo	Wikipedia	262	315
2016-12-01	Portuguese	Wiktionary	2704	10882
2016-12-01	Romansh	Wikipedia	217	376
2016-12-01	Romanian	Wikibooks	39	46
2016-12-01	Sundanese	Wikiquote	6	10
2016-12-01	Kashubian	Wiktionary	6	10
2016-12-01	German	Wiktionary	14619	145548
2016-12-01	Persian	Wikipedia	205830	852876
2016-12-01	Hakka	Wikipedia	223	387
2016-12-01	Armenian	Wikibooks	25	46
2016-12-01	Kannada	Wikipedia	11756	21264
2016-12-01	Korean	Wikipedia	92755	413779
2016-12-01	Korean	Wikisource	202	489
2016-12-01	Maithili	Wikipedia	241	351
2016-12-01	Norwegian (Nynorsk)	Wikipedia	2384	11981
2016-12-01	Romanian	Wiktionary	164	626
2016-12-01	Sicilian	Wikipedia	272	1073
2016-12-01	Simple English	Wiktionary	591	5739
2016-12-01	Azerbaijani	Wikibooks	343	446
2016-12-01	Catalan	Wikiquote	39	209
2016-12-01	Danish	Wikipedia	37530	191168
2016-12-01	Indonesian	Wikisource	67	146
2016-12-01	Palatinate German	Wikipedia	390	598
2016-12-01	Aromanian	Wikipedia	237	356
2016-12-01	Albanian	Wikipedia	27456	75361
2016-12-01	Afrikaans	Wiktionary	193	389
2016-12-01	Chechen	Wikipedia	425	731
2016-12-01	Welsh	Wikisource	7	10
2016-12-01	French	Wiktionary	23351	161465
2016-12-01	Kanuri	Wikiquote	6	7
2016-12-01	Latin	Wikipedia	1311	6258
2016-12-01	Macedonian	Wikipedia	10350	30119
2016-12-01	Quechua	Wikipedia	241	476
2016-12-01	Tatar	Wikipedia	510	1736
2016-12-01	Uyghur	Wikipedia	512	1480
2016-12-01	Acehnese	Wikipedia	341	461
2016-12-01	Buryat	Wikipedia	289	376
2016-12-01	Catalan	Wiktionary	647	4104
2016-12-01	Welsh	Wikipedia	610	2558
2016-12-01	Estonian	Wikisource	8	22
2016-12-01	Kirundi	Wikipedia	8	13
2016-12-01	Tumbuka	Wikipedia	10	18
2016-12-01	Greek	Wikivoyage	50	117
2016-12-01	Spanish	Wikipedia	2239525	6898912
2016-12-01	Finnish	Wikisource	45	187
2016-12-01	Latin	Wiktionary	207	656
2016-12-01	Malagasy	Wiktionary	24	101
2016-12-01	Norwegian (Bokmål)	Wikipedia	66347	338204
2016-12-01	Northern Sotho	Wikipedia	239	289
2016-12-01	Polish	Wikipedia	373656	1572973
2016-12-01	Portuguese	Wikinews	874	2569
2016-12-01	Russian	Wiktionary	15998	217670
2016-12-01	Slovak	Wikipedia	22831	102000
2016-12-01	Swedish	Wikibooks	75	152
2016-12-01	Tagalog	Wiktionary	693	1491
2016-12-01	Southern Azerbaijani	Wikipedia	231	778
2016-12-01	Azerbaijani	Wiktionary	48	150
2016-12-01	Belarusian	Wikisource	131	228
2016-12-01	Greek	Wikipedia	58753	201184
2016-12-01	North Frisian	Wikipedia	216	374
2016-12-01	Hindi	Wikipedia	126112	251468
2016-12-01	NA	Historic wiki	33	57
2016-12-01	Oriya	Wikipedia	1587	3346
2016-12-01	Sicilian	Wiktionary	120	389
2016-12-01	Serbo-Croatian	Wiktionary	21	432
2016-12-01	Ukrainian	Wikisource	287	403
2016-12-01	Adyghe	Wikipedia	192	267
2016-12-01	Akan	Wikipedia	36	67
2016-12-01	Hebrew	Wikinews	21	21
2016-12-01	Hungarian	Wikiquote	379	607
2016-12-01	Malayalam	Wikipedia	25328	66693
2016-12-01	Muscogee	Wikipedia	51	55
2016-12-01	Sakha	Wikisource	56	99
2016-12-01	Swedish	Wikiquote	126	308
2016-12-01	Aragonese	Wiktionary	26	46
2016-12-01	Zazaki	Wikipedia	218	720
2016-12-01	Italian	Wikivoyage	271	950
2016-12-01	Japanese	Wikisource	135	201
2016-12-01	Kikuyu	Wikipedia	243	257
2016-12-01	Dutch	Wikibooks	924	1417
2016-12-01	NA	Sources wiki	1963	3223
2016-12-01	Telugu	Wikisource	91	110
2016-12-01	Chinese	Wikibooks	584	723
2016-12-01	Afrikaans	Wikipedia	2292	8049
2016-12-01	Bengali	Wikibooks	175	240
2016-12-01	Gujarati	Wikisource	29	37
2016-12-01	Fiji Hindi	Wikipedia	601	1239
2016-12-01	Limburgish	Wikipedia	373	1140
2016-12-01	Russian	Wikipedia	898470	4353845
2016-12-01	Sanskrit	Wikisource	150	365
2016-12-01	Slovenian	Wikipedia	11947	55716
2016-12-01	Slovenian	Wiktionary	25	65
2016-12-01	Turkish	Wiktionary	2756	16070
2016-12-01	Ukrainian	Wikipedia	106295	441543
2016-12-01	Classical Chinese	Wikipedia	520	1010
2016-12-01	Min Dong	Wikipedia	255	329
2016-12-01	Italian	Wikipedia	454191	2773547
2016-12-01	Limburgish	Wiktionary	4	8
2016-12-01	Tongan	Wikipedia	247	279
2016-12-01	Urdu	Wikiquote	9	22
2016-12-01	Arabic	Wiktionary	1376	3543
2016-12-01	Central Bicolano	Wikipedia	279	613
2016-12-01	German	Wikibooks	6852	11850
2016-12-01	Basque	Wikipedia	12457	44357
2016-12-01	Georgian	Wiktionary	178	289
2016-12-01	Kazakh	Wikibooks	61	79
2016-12-01	Thai	Wikipedia	65163	226306
2016-12-01	Uzbek	Wikipedia	2891	11306
2016-12-01	NA	Wikidata	602985	875757
2016-12-01	Bislama	Wikipedia	247	264
2016-12-01	Cebuano	Wikipedia	1344	2947
2016-12-01	Võro	Wikipedia	209	283
2016-12-01	French	Wikibooks	4212	7951
2016-12-01	Goan Konkani	Wikipedia	229	381
2016-12-01	Armenian	Wiktionary	150	997
2016-12-01	Ladino	Wikipedia	297	429
2016-12-01	Malay	Wikipedia	13162	59881
2016-12-01	Romanian	Wikinews	35	40
2016-12-01	Russian	Wikiquote	2451	7861
2016-12-01	Tagalog	Wikibooks	1064	1744
2016-12-01	West Flemish	Wikipedia	255	593
2016-12-01	Samogitian	Wikipedia	181	289
2016-12-01	Chamorro	Wikipedia	39	48
2016-12-01	Ewe	Wikipedia	276	309
2016-12-01	Lingala	Wikipedia	237	336
2016-12-01	Neapolitan	Wikipedia	389	1000
2016-12-01	Portuguese	Wikiversity	402	939
2016-12-01	Simple English	Wikipedia	47885	134642
2016-12-01	Serbian	Wiktionary	293	1998
2016-12-01	Tamil	Wikibooks	125	158
2016-12-01	Twi	Wikipedia	26	35
2016-12-01	Wu	Wikipedia	662	1315
2016-12-01	Bulgarian	Wiktionary	298	1755
2016-12-01	NA	Wikimedia Commons	336128	925227
2016-12-01	Persian	Wikibooks	590	886
2016-12-01	Hebrew	Wikibooks	1194	1677
2016-12-01	Inuktitut	Wikipedia	222	268
2016-12-01	Lojban	Wikipedia	248	322
2016-12-01	Lao	Wiktionary	1	5
2016-12-01	Lithuanian	Wikibooks	58	77
2016-12-01	Malagasy	Wikipedia	287	655
2016-12-01	Occitan	Wikipedia	367	1867
2016-12-01	Polish	Wikinews	68	154
2016-12-01	Sesotho	Wiktionary	1	10
2016-12-01	NA	Wikimania 2016	46	65
2016-12-01	Belarusian	Wikipedia	2359	8686
2016-12-01	Spanish	Wikibooks	6787	10186
2016-12-01	Irish	Wikipedia	677	2172
2016-12-01	Croatian	Wikisource	89	204
2016-12-01	Italian	Wikinews	69	171
2016-12-01	Italian	Wiktionary	2954	14958
2016-12-01	Kazakh	Wikipedia	21961	75518
2016-12-01	Kurdish (Kurmanji)	Wiktionary	335	4839
2016-12-01	Lithuanian	Wikisource	11	15
2016-12-01	Norwegian (Bokmål)	Wikimedia Chapter	38	52
2016-12-01	Navajo	Wikipedia	21	101
2016-12-01	Saterland Frisian	Wikipedia	235	347
2016-12-01	Sesotho	Wikipedia	943	1008
2016-12-01	Finnish	Wikivoyage	226	242
2016-12-01	Galician	Wikipedia	4567	19635
2016-12-01	Norwegian (Bokmål)	Wikisource	20	21
2016-12-01	Livvi-Karelian	Wikipedia	191	273
2016-12-01	Slovak	Wikisource	78	102
2016-12-01	Silesian	Wikipedia	228	465
2016-12-01	Egyptian Arabic	Wikipedia	3869	12968
2016-12-01	Bengali	Wikisource	134	296
2016-12-01	Kurdish (Sorani)	Wikipedia	2648	8359
2016-12-01	Crimean Tatar	Wikipedia	337	547
2016-12-01	Danish	Wikiquote	37	66
2016-12-01	Persian	Wiktionary	390	1209
2016-12-01	Faroese	Wikipedia	273	732
2016-12-01	Hebrew	Wikipedia	131402	476403
2016-12-01	Ido	Wikipedia	130	381
2016-12-01	Japanese	Wikipedia	451513	1742830
2016-12-01	Spanish (Mexico)	Wikimedia Chapter	234	282
2016-12-01	Burmese	Wikipedia	4315	9326
2016-12-01	Portuguese	Wikibooks	3980	7098
2016-12-01	Finnish	Wikipedia	64656	491398
2016-12-01	Spanish	Wikiquote	2783	8199
2016-12-01	Khmer	Wiktionary	94	362
2016-12-01	Lao	Wikipedia	509	1060
2016-12-01	Mongolian	Wikipedia	10494	25654
2016-12-01	Slovak	Wikiquote	87	204
2016-12-01	Amharic	Wikipedia	999	1686
2016-12-01	Esperanto	Wikiquote	14	22
2016-12-01	Indonesian	Wikibooks	2004	2773
2016-12-01	Komi	Wikipedia	197	373
2016-12-01	NA	Wikitech	283	533
2016-12-01	Mirandese	Wikipedia	250	336
2016-12-01	Turkish	Wikipedia	108421	621581
2016-12-01	NA	Vote wiki	34	40
2016-12-01	Volapük	Wikipedia	188	336
2016-12-01	Zhuang	Wikipedia	243	247
2016-12-01	Afar	Wikipedia	2344	2348
2016-12-01	Cherokee	Wiktionary	12	35
2016-12-01	English	Wikinews	3744	7424
2016-12-01	Japanese	Wikiquote	132	170
2016-12-01	Greenlandic	Wikipedia	281	320
2016-12-01	Malayalam	Wiktionary	187	591
2016-12-01	Dutch	Wikiquote	1073	1550
2016-12-01	Occitan	Wiktionary	22	102
2016-12-01	Sinhalese	Wiktionary	4	4
2016-12-01	Udmurt	Wikipedia	192	312
2016-12-01	Aramaic	Wikipedia	232	336
2016-12-01	Bosnian	Wiktionary	7	13
2016-12-01	Corsican	Wikimedia Chapter	24	32
2016-12-01	Danish	Wikisource	44	123
2016-12-01	Finnish	Wikibooks	175	338
2016-12-01	Guarani	Wikipedia	310	628
2016-12-01	Croatian	Wiktionary	125	589
2016-12-01	Korean	Wikinews	4	5
2016-12-01	Malay	Wikibooks	14	31
2016-12-01	Portuguese	Wikisource	1322	2392
2016-12-01	Somali	Wikipedia	1277	3331
2016-12-01	Ukrainian	Wikiquote	148	344
2016-12-01	Walloon	Wikipedia	189	574
2016-12-01	Bavarian	Wikipedia	602	2186
2016-12-01	Corsican	Wikipedia	245	376
2016-12-01	German	Wikisource	1460	4158
2016-12-01	English	Wikiversity	3399	7246
2016-12-01	Japanese	Wiktionary	2229	14340
2016-12-01	Hill Mari	Wikipedia	178	285
2016-12-01	Western Punjabi	Wiktionary	8	11
2016-12-01	Romanian	Wikisource	633	1408
2016-12-01	Tagalog	Wikipedia	66303	168748
2016-12-01	Finnish	Wiktionary	972	10152
2016-12-01	Indonesian	Wikiquote	403	869
2016-12-01	Mongolian	Wiktionary	24	86
2016-12-01	Maltese	Wikipedia	653	1141
2016-12-01	Polish	Wikiquote	4579	9860
2016-12-01	Pashto	Wikipedia	702	1651
2016-12-01	Sundanese	Wikibooks	1	1
2016-12-01	Tsonga	Wiktionary	19	21
2016-12-01	Yoruba	Wikipedia	162	301
2016-12-01	Aymara	Wikipedia	205	318
2016-12-01	Bulgarian	Wikiquote	154	324
2016-12-01	Breton	Wikipedia	656	1810
2016-12-01	French	Wikiquote	2130	4185
2016-12-01	French	Wikisource	7061	18682
2016-12-01	Hindi	Wikibooks	1470	1660
2016-12-01	Northern Sami	Wikimedia Chapter	225	338
2016-12-01	Albanian	Wikinews	3	3
2016-12-01	Catalan	Wikibooks	108	172
2016-12-01	Catalan	Wikisource	108	189
2016-12-01	German	Wikiquote	2142	6023
2016-12-01	Ripuarian	Wikipedia	271	413
2016-12-01	Nepali	Wiktionary	40	54
2016-12-01	Dutch	Wikimedia Chapter	174	279
2016-12-01	Oriya	Wikisource	22	27
2016-12-01	Tamil	Wikinews	22	33
2016-12-01	Dzongkha	Wikipedia	13	25
2016-12-01	Hindi	Wikiquote	123	159
2016-12-01	Croatian	Wikipedia	24411	112976
2016-12-01	Kirghiz	Wiktionary	7	15
2016-12-01	Russian	Wikisource	2307	6742
2016-12-01	Tok Pisin	Wikipedia	292	358
2016-12-01	Vietnamese	Wikipedia	98811	347645
2016-12-01	Yiddish	Wikipedia	307	1149
2016-12-01	Spanish	Wikiversity	1207	1920
2016-12-01	Galician	Wikibooks	14	22
2016-12-01	Croatian	Wikiquote	66	157
2016-12-01	Inupiak	Wikipedia	28	38
2016-12-01	Italian	Wikiversity	735	1448
2016-12-01	Newar	Wikipedia	516	1088
2016-12-01	Chichewa	Wikipedia	114	137
2016-12-01	Sakha	Wikipedia	312	854
2016-12-01	Cantonese	Wikipedia	1468	3453
2016-12-01	Chinese	Wiktionary	1280	6697
2016-12-01	Azerbaijani	Wikipedia	33986	103409
2016-12-01	Breton	Wikisource	13	61
2016-12-01	Bosnian	Wikibooks	13	13
2016-12-01	English	Wikiquote	14569	44390
2016-12-01	Georgian	Wikipedia	41826	107807
2016-12-01	Lithuanian	Wikiquote	175	247
2016-12-01	Novial	Wikipedia	279	380
2016-12-01	NA	Wikimedia OTRS system	30	64
2016-12-01	Sundanese	Wiktionary	1	2
2016-12-01	French	Wikinews	1424	2357
2016-12-01	Komi-Permyak	Wikipedia	206	253
2016-12-01	Kirghiz	Wikipedia	4936	14030
2016-12-01	Albanian	Wikiquote	105	144
2016-12-01	Banjar	Wikipedia	247	401
2016-12-01	German	Wikivoyage	1074	4243
2016-12-01	Greek	Wikiquote	519	862
2016-12-01	Fula	Wikipedia	6	12
2016-12-01	NA	Wikimedia Foundation wiki	15906	20774
2016-12-01	Hungarian	Wikibooks	169	283
2016-12-01	Interlingua	Wiktionary	0	5
2016-12-01	Karakalpak	Wikipedia	256	347
2016-12-01	Marathi	Wikibooks	65	71
2016-12-01	Slovenian	Wikisource	164	627
2016-12-01	Javanese	Wikipedia	997	3018
2016-12-01	Kirghiz	Wikiquote	225	263
2016-12-01	NA	Office wiki	101	608
2016-12-01	Sundanese	Wikipedia	850	2188
2016-12-01	Arabic	Wikibooks	2082	3889
2016-12-01	Bengali	Wiktionary	87	129
2016-12-01	French	Wikivoyage	1273	2513
2016-12-01	Icelandic	Wiktionary	110	551
2016-12-01	Kannada	Wikiquote	4	4
2016-12-01	Latvian	Wiktionary	61	186
2016-12-01	Breton	Wiktionary	100	408
2016-12-01	Armenian	Wikisource	409	659
2016-12-01	Kannada	Wiktionary	192	1124
2016-12-01	Nahuatl	Wikipedia	197	367
2016-12-01	Emilian-Romagnol	Wikipedia	216	484
2016-12-01	Estonian	Wikipedia	15600	72103
2016-12-01	Polish	Wiktionary	7335	50727
2016-12-01	Serbian	Wikibooks	18	36
2016-12-01	Serbian	Wikisource	203	505
2016-12-01	Tswana	Wiktionary	0	1
2016-12-01	Zulu	Wikipedia	319	414
2016-12-01	Gan	Wikipedia	455	800
2016-12-01	Georgian	Wikiquote	211	334
2016-12-01	Ossetian	Wikipedia	257	402
2016-12-01	Northern Sami	Wikipedia	281	497
2016-12-01	Vietnamese	Wiktionary	2079	15613
2016-12-01	German	Wikinews	74	234
2016-12-01	Norman	Wikipedia	195	342
2016-12-01	Cheyenne	Wikipedia	263	269
2016-12-01	Hungarian	Wiktionary	439	2213
2016-12-01	Russian	Wikibooks	717	1375
2016-12-01	NA	10th Anniversary of Wikipedia	0	12
2016-12-01	Wolof	Wikipedia	223	288
2016-12-01	NA	Collaboration wiki	2	10
2016-12-01	Persian	Wikisource	745	1291
2016-12-01	Swahili	Wikipedia	3442	8401
2016-12-01	Tatar	Wiktionary	1	3
2016-12-01	Arabic	Wikinews	473	934
2016-12-01	Catalan	Wikipedia	47798	215949
2016-12-01	Tok Pisin	Wiktionary	5	6
2016-12-01	Volapük	Wiktionary	2	12
2016-12-01	Danish	Wikibooks	44	57
2016-12-01	Irish	Wiktionary	16	39
2016-12-01	Hindi	Wiktionary	1467	4068
2016-12-01	Italian	Wikiquote	28272	38251
2016-12-01	Ukrainian	Wiktionary	528	1479
2016-12-01	Esperanto	Wikipedia	1953	8239
2016-12-01	West Frisian	Wikipedia	123	772
2016-12-01	Malagasy	Wikibooks	37	50
2016-12-01	Samoan	Wikipedia	313	368
2016-12-01	Thai	Wikibooks	509	792
2016-12-01	Czech	Wikipedia	179034	896661
2016-12-01	Japanese	Wikiversity	15	25
2016-12-01	Javanese	Wiktionary	296	1119
2016-12-01	Romanian	Wikiquote	69	115
2016-12-01	Bosnian	Wikisource	34	42
2016-12-01	Catalan	Wikimedia Chapter	81	137
2016-12-01	Greek	Wiktionary	10218	69527
2016-12-01	Marathi	Wikipedia	35156	60941
2016-12-01	Swedish	Wiktionary	3598	28477
2016-12-01	Tulu	Wikipedia	196	255
2016-12-01	Thai	Wikiquote	130	211
2016-12-01	Azerbaijani	Wikiquote	441	775
2016-12-01	Icelandic	Wikipedia	2542	11550
2016-12-01	Japanese	Wikibooks	1585	2344
2016-12-01	Dutch	Wiktionary	2110	13842
2016-12-01	Slovak	Wikibooks	25	36
2016-12-01	Eastern Punjabi	Wikipedia	2109	4678
2016-12-01	Russian	Wikinews	98	303
2016-12-01	Simple English	Wikibooks	5	11
2016-12-01	Serbian	Wikipedia	22840	123236
2016-12-01	Ukrainian	Wikibooks	129	226
2016-12-01	Persian	Wikivoyage	167	334
2016-12-01	Friulian	Wikipedia	206	344
2016-12-01	Luxembourgish	Wikipedia	1698	3775
2016-12-01	Turkmen	Wikipedia	555	1120
2016-12-01	Mingrelian	Wikipedia	274	499
2016-12-01	Assamese	Wikisource	12	27
2016-12-01	Icelandic	Wikibooks	14	35
2016-12-01	Polish	Wikibooks	1180	1954
2016-12-01	Romanian	Wikipedia	51391	234530
2016-12-01	Simple English	Wikiquote	137	199
2016-12-01	Chinese	Wikiquote	963	1353
2016-12-01	Bulgarian	Wikibooks	36	48
2016-12-01	NA	Incubator for new wikis	1210	1841
2016-12-01	Korean	Wikibooks	31	68
2016-12-01	Northern Luri	Wikipedia	169	199
2016-12-01	Eastern Punjabi	Wikibooks	2	2
2016-12-01	Serbo-Croatian	Wikipedia	9513	43939
2016-12-01	Turkish	Wikinews	2	3
2016-12-01	Cornish	Wikipedia	206	366
2016-12-01	Turkish	Wikibooks	244	417
2016-12-01	Chinese	Wikisource	2340	3942
2016-12-01	NA	Incubator for Wikiversities	101	173
2016-12-01	Belarusian	Wikibooks	0	2
2016-12-01	Tamil	Wiktionary	1562	8871
2016-12-01	Uyghur	Wiktionary	2	8
2016-12-01	Croatian	Wikibooks	331	398
2016-12-01	Swati	Wikipedia	279	292
2016-12-01	Alemannic	Wikipedia	1110	2929
2016-12-01	Belarusian	Wikiquote	32	53
2016-12-01	Vepsian	Wikipedia	265	322
2016-12-01	Kazakh	Wikiquote	19	35
2016-12-01	Dutch Low Saxon	Wikipedia	424	703
2016-12-01	Pashto	Wiktionary	3	14
2016-12-01	Portuguese	Wikipedia	993250	4053481
2016-12-01	Albanian	Wikibooks	267	415
2016-12-01	Arabic	Wikiversity	635	1075
2016-12-01	Chavacano	Wikipedia	220	256
2016-12-01	Greek	Wikibooks	220	344
2016-12-01	Indonesian	Wikipedia	183293	581468
2016-12-01	Kapampangan	Wikipedia	218	491
2016-12-01	Assamese	Wikipedia	816	2242
2016-12-01	Galician	Wikisource	13	18
2016-12-01	Kannada	Wikisource	39	61
2016-12-01	Russian	Wikimedia Chapter	101	144
2016-12-01	Sardinian	Wikipedia	295	482
2016-12-01	Czech	Wikiquote	191	503
2016-12-01	Persian	Wikiquote	549	1442
2016-12-01	Hausa	Wikipedia	311	382
2016-12-01	Hebrew	Wikiquote	1068	2805
2016-12-01	Kanuri	Wikipedia	54	57
2016-12-01	Polish	Wikisource	972	2595
2016-12-01	Sanskrit	Wiktionary	256	786
2016-12-01	Scots	Wikipedia	563	2429
2016-12-01	Tibetan	Wikipedia	544	1106
2016-12-01	Basque	Wikiquote	11	26
2016-12-01	Chinese	Wikivoyage	150	356
2016-12-01	Ligurian	Wikipedia	270	393
2016-12-01	NA	Login wiki	23	27
2016-12-01	Nauruan	Wikipedia	264	295
2016-12-01	Nepali	Wikibooks	4	7
2016-12-01	Portuguese	Wikiquote	735	2497
2016-12-01	Tswana	Wikipedia	265	310
2016-12-01	Luxembourgish	Wiktionary	16	25
2016-12-01	Russian	Wikiversity	549	880
2016-12-01	Tajik	Wikibooks	8	8
2016-12-01	Kurdish (Kurmanji)	Wikiquote	1	1
2016-12-01	Slovak	Wiktionary	16	63
2016-12-01	Amharic	Wiktionary	35	36
2016-12-01	Gagauz	Wikipedia	369	578
2016-12-01	Galician	Wiktionary	60	195
2016-12-01	Latgalian	Wikipedia	221	265
2016-12-01	Telugu	Wikiquote	16	22
2016-12-01	Vietnamese	Wikiquote	512	778
2016-12-01	Breton	Wikimedia Chapter	15	17
2016-12-01	Polish	Wikimedia Chapter	89	196
2016-12-01	Swedish	Wikisource	160	333
2016-12-01	Azerbaijani	Wikisource	350	625
2016-12-01	Dutch	Wikisource	49	127
2016-12-01	Tigrinya	Wikipedia	104	130
2016-12-01	Welsh	Wikiquote	73	89
2016-12-01	Avar	Wikipedia	231	282
2016-12-01	Belarusian	Wikimedia Chapter	1	1
2016-12-01	Norwegian (Bokmål)	Wikiquote	67	109
2016-12-01	Swati	Wiktionary	11	23
2016-12-01	Tuvan	Wikipedia	217	292
2016-12-01	Ukrainian	Wikinews	22	24
2016-12-01	Kurdish (Kurmanji)	Wikipedia	562	2066
2016-12-01	German	Wikipedia	1212556	7385599
2016-12-01	Finnish	Wikiversity	53	61
2016-12-01	Manx	Wikipedia	181	299
2016-12-01	Hungarian	Wikisource	24	104
2016-12-01	Urdu	Wiktionary	43	105
2016-12-01	Czech	Wikiversity	121	381
2016-12-01	Anglo-Saxon	Wiktionary	11	18
2016-12-01	Asturian	Wikipedia	606	1782
2016-12-01	Inuktitut	Wiktionary	1	1
2016-12-01	Tamil	Wikisource	260	327
2016-12-01	Abkhazian	Wikipedia	253	282
2016-12-01	Oriya	Wiktionary	0	21
2016-12-01	Swedish	Wikivoyage	25	62
2016-12-01	Macedonian	Wiktionary	34	115
2016-12-01	Dutch	Wikivoyage	30	158
2016-12-01	Sranan	Wikipedia	235	257
2016-12-01	Urdu	Wikibooks	11	11
2016-12-01	Cherokee	Wikipedia	261	333
2016-12-01	Lezgian	Wikipedia	231	316
2016-12-01	Sanskrit	Wikipedia	1958	3934
2016-12-01	Welsh	Wiktionary	32	68
2016-12-01	Xhosa	Wikipedia	29	81
2016-12-01	Estonian	Wiktionary	173	686
2016-12-01	Igbo	Wikipedia	9741	11007
2016-12-01	Kalmyk	Wikipedia	242	246
2016-12-01	Belarusian	Wiktionary	1	4
2016-12-01	NA	Wikimedia Outreach	87	121
2016-12-01	Venetian	Wikipedia	398	1257
2016-12-01	Spanish	Wikinews	328	686
2016-12-01	Macedonian	Wikibooks	10	13
2016-12-01	Telugu	Wiktionary	463	2508
2016-12-01	Dutch	Arbitration Committee wiki	4	9
2016-12-01	Arabic	Wikimedia Chapter	31	57
2016-12-01	Corsican	Wiktionary	78	141
2016-12-01	Czech	Wikibooks	206	313
2016-12-01	Extremaduran	Wikipedia	307	452
2016-12-01	French	Wikiversity	3424	5798
2016-12-01	Gujarati	Wiktionary	7	22
2016-12-01	Norfolk	Wikipedia	252	291
2016-12-01	Czech	Wiktionary	9100	26563
2016-12-01	Catalan	Wikinews	28	31
2016-12-01	English	Wiktionary	58701	587985
2016-12-01	Spanish	Wikisource	3120	6843
2016-12-01	Nuosu	Wikipedia	1	1
2016-12-01	Kazakh	Wiktionary	8	21
2016-12-01	Karachay-Balkar	Wikipedia	241	297
2016-12-01	Uzbek	Wikibooks	5	5
2016-12-01	Turkmen	Wiktionary	2	2
2016-12-01	Indonesian	Wiktionary	1022	2777
2016-12-01	NA	Meta wiki	7232	14151
2016-12-01	Korean	Wiktionary	519	2157
2016-12-01	Choctaw	Wikipedia	4	5
2016-12-01	Old Church Slavonic	Wikipedia	339	417
2016-12-01	Cornish	Wiktionary	0	1
2016-12-01	Korean	Wikiquote	4	5
2016-12-01	Marathi	Wiktionary	19	40
2016-12-01	Twi	Wiktionary	5	5
2016-12-01	Tamil	Wikiquote	5	7
2016-12-01	Macedonian	Wikisource	33	44
2016-12-01	Sardinian	Wiktionary	13	13
2016-12-01	Tajik	Wikipedia	1720	4491
2016-12-01	Portuguese	Wikivoyage	177	651
2016-12-01	Moldovan	Wikipedia	11	30
2016-12-01	Romanian	Wikivoyage	5	6
2016-12-01	Bambara	Wikipedia	280	319
2016-12-01	Occitan	Wikibooks	1	1
2016-12-01	Russian	Wikivoyage	387	796
2016-12-01	Arabic	Wikiquote	947	1904
2016-12-01	NA	Board wiki	1	6
2016-12-01	Tetum	Wikipedia	258	305
2016-12-01	Venetian	Wiktionary	7	27
2016-12-01	Bihari	Wikipedia	353	654
2016-12-01	Hungarian	Wikinews	8	12
2016-12-01	Hungarian	Wikipedia	55195	310667
2016-12-01	Luganda	Wikipedia	43	120
2016-12-01	Malay	Wiktionary	84	181
2016-12-01	Divehi	Wikipedia	192	274
2016-12-01	Bosnian	Wikiquote	41	119
2016-12-01	Papiamentu	Wikipedia	345	531
2016-12-01	Thai	Wiktionary	842	3376
2016-12-01	Malayalam	Wikisource	251	392
2016-12-01	Sindhi	Wiktionary	0	1
2016-12-01	Greek	Wikiversity	133	211
2016-12-01	Banyumasan	Wikipedia	198	309
2016-12-01	Marathi	Wikiquote	3	8
2016-12-01	Burmese	Wiktionary	111	257
2016-12-01	Japanese	Wikinews	16	44
2016-12-01	Sinhalese	Wikibooks	46	91
2016-12-01	Marathi	Wikisource	44	63
2016-12-01	Serbian	Wikiquote	4	5
2016-12-01	German	Wikiversity	39	220
2016-12-01	Breton	Wikiquote	1845	1845
2016-12-01	Buginese	Wikipedia	209	264
2016-12-01	Khmer	Wikibooks	0	5
2016-12-01	Moksha	Wikipedia	219	252
2016-12-01	Gothic	Wikipedia	255	287
2016-12-01	Afrikaans	Wikibooks	2	2
2016-12-01	Tajik	Wiktionary	5	6
2016-12-01	Kabardian	Wikipedia	174	288
2016-12-01	Serbian	Wikimedia Chapter	27	36
2016-12-01	Kirghiz	Wikibooks	77	91
2016-12-01	Ukrainian	Wikimedia Chapter	78	125
2016-12-01	Zeelandic	Wikipedia	206	304
2016-12-01	Marshallese	Wikipedia	43	43
2016-12-01	Korean	Wikiversity	35	38
2016-12-01	Piedmontese	Wikipedia	254	407
2016-12-01	Tatar	Wikibooks	132	168
2016-12-01	Venetian	Wikisource	4	23
2016-12-01	Tsonga	Wikipedia	19	28
2016-12-01	Guarani	Wiktionary	0	6
2016-12-01	Slovenian	Wikiversity	6	6
2016-12-01	Swahili	Wiktionary	26	58
2016-12-01	Georgian	Wikibooks	52	71
2016-12-01	Erzya	Wikipedia	229	266
2016-12-01	Persian	Wikinews	15	41
2016-12-01	Pontic	Wikipedia	287	347
2016-12-01	Danish	Wikimedia Chapter	40	49
2016-12-01	Estonian	Wikiquote	69	158
2016-12-01	Luxembourgish	Wikiquote	0	57
2016-12-01	Sanskrit	Wikiquote	4	9
2016-12-01	Czech	Wikinews	48	80
2016-12-01	Ukrainian	Wikivoyage	26	39
2016-12-01	Greek	Wikinews	4	4
2016-12-01	Armenian	Wikiquote	111	203
2016-12-01	Norwegian (Nynorsk)	Wiktionary	35	95
2016-12-01	Yiddish	Wiktionary	4	4
2016-12-01	NA	Strategy wiki	22	29
2016-12-01	Telugu	Wikibooks	150	162
2016-12-01	Assamese	Wiktionary	3	3
2016-12-01	Lingala	Wiktionary	3	5
2016-12-01	Scottish Gaelic	Wiktionary	10	11
2016-12-01	Aymara	Wiktionary	5	5
2016-12-01	Aromanian	Wiktionary	1	3
2016-12-01	Upper Sorbian	Wiktionary	0	5
2016-12-01	Tarantino	Wikipedia	216	240
2016-12-01	Sindhi	Wikinews	1	1
2016-12-01	Esperanto	Wikibooks	1	1
2016-12-01	Thai	Wikinews	2	2
2016-12-01	Assamese	Wikibooks	1	1
2016-12-01	Asturian	Wiktionary	0	4
2016-12-01	Fijian	Wikipedia	241	245
2016-12-01	Ndonga	Wikipedia	2	2
2016-12-01	Maori	Wiktionary	3	3
2016-12-01	Fijian	Wiktionary	2	2
2016-12-01	Sango	Wikipedia	2	10
2016-12-01	Norwegian (Nynorsk)	Wikiquote	0	3
2016-12-01	Afar	Wiktionary	1	1
2016-12-01	Tibetan	Wikibooks	1	1
2016-12-01	Burmese	Wikibooks	1	1
2016-12-01	Swedish	Wikinews	5	6

Reverting working directory to "/home/bearloga/source/golden"

It took 13m 9s to generate this report.

Report 19 of 49

  1. Executing report "app_load_times" from the metrics/search module.
  2. Setting working directory to "modules/metrics/search"
  3. About to run the following command: sh app_load_times 2016-12-01 2016-12-02

Output:

date	platform	Median	95th percentile	99th percentile
2016-12-01	Android	408	1467.85	5270.92
2016-12-01	iOS	694	2048	8684

Reverting working directory to "/home/bearloga/source/golden"

It took 13m 21s to generate this report.

Report 20 of 49

  1. Executing report "user_agent_data" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh user_agent_data 2016-12-01 2016-12-02

Output:

date	browser	version	percent
2016-12-01	Edge	14	2.05
2016-12-01	IE	11	9.5
2016-12-01	Chrome Mobile iOS	54	0.64
2016-12-01	Chrome	54	25.18
2016-12-01	Chrome Mobile	54	4.35
2016-12-01	Samsung Internet	4	1.11
2016-12-01	Chrome Mobile	30	2.67
2016-12-01	Safari	10	4.52
2016-12-01	Firefox	38	0.91
2016-12-01	Mobile Safari	10	6.93
2016-12-01	Android	4	3
2016-12-01	Firefox	50	5.61
2016-12-01	Chrome Mobile	46	0.53
2016-12-01	Firefox	24	1.98
2016-12-01	IE	9	0.51
2016-12-01	Safari	9	1.87
2016-12-01	Firefox	45	0.67
2016-12-01	Chrome	49	1.3
2016-12-01	Chrome Mobile	39	0.51
2016-12-01	Chrome	53	0.78
2016-12-01	Other	Other	0.51
2016-12-01	Chrome	30	0.56
2016-12-01	IE Mobile	10	0.64
2016-12-01	Chrome	43	0.83
2016-12-01	Firefox	31	0.54
2016-12-01	Chrome	17	0.56
2016-12-01	Mobile Safari	9	1.74
2016-12-01	Chrome Mobile	43	0.5
2016-12-01	Chrome Mobile	53	0.53
2016-12-01	IE	8	1.03
2016-12-01	Firefox Mobile	50	0.53

Reverting working directory to "/home/bearloga/source/golden"

It took 14s to generate this report.

Report 21 of 49

  1. Executing report "portal_referer_data" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh portal_referer_data 2016-12-01 2016-12-02

Output:

date	is_search	referer_class	search_engine	pageviews
2016-12-01	FALSE	none	none	27730744
2016-12-01	TRUE	external (search engine)	Yahoo	9800
2016-12-01	FALSE	external	none	148069
2016-12-01	TRUE	external (search engine)	Baidu	11993
2016-12-01	FALSE	internal	none	23996
2016-12-01	TRUE	external (search engine)	Yandex	498
2016-12-01	TRUE	external (search engine)	Bing	21797
2016-12-01	TRUE	external (search engine)	Google	202001
2016-12-01	TRUE	external (search engine)	DuckDuckGo	1652

Reverting working directory to "/home/bearloga/source/golden"

It took 22m 29s to generate this report.

Report 22 of 49

  1. Executing report "portal_pageviews" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh portal_pageviews 2016-12-01 2016-12-02

Output:

date	pageviews	high_volume	low_volume	threshold
2016-12-01	28150550	6600191	21550359	14572

Reverting working directory to "/home/bearloga/source/golden"

It took 18m 36s to generate this report.

Report 23 of 49

  1. Executing report "most_common_per_visit" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh most_common_per_visit 2016-12-01 2016-12-02

Output:

Warning message:
In .doLoadActions(where, attach) :
  trying to execute load actions without 'methods' package
date	section_used	visits
2016-12-01	other languages	1
2016-12-01	other projects	45
2016-12-01	primary links	1254
2016-12-01	search	3701
2016-12-01	secondary links	50

Reverting working directory to "/home/bearloga/source/golden"

It took 7s to generate this report.

Report 24 of 49

  1. Executing report "most_common_country" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh most_common_country 2016-12-01 2016-12-02

Output:

Warning message:
In .doLoadActions(where, attach) :
  trying to execute load actions without 'methods' package
date	section_used	country	visits	proportion
2016-12-01	other languages	China	1	1
2016-12-01	other projects	Algeria	1	0.0222
2016-12-01	other projects	Angola	3	0.0667
2016-12-01	other projects	Argentina	2	0.0444
2016-12-01	other projects	Brazil	1	0.0222
2016-12-01	other projects	China	2	0.0444
2016-12-01	other projects	Colombia	1	0.0222
2016-12-01	other projects	Ethiopia	1	0.0222
2016-12-01	other projects	Germany	1	0.0222
2016-12-01	other projects	India	5	0.1111
2016-12-01	other projects	Indonesia	1	0.0222
2016-12-01	other projects	Italy	1	0.0222
2016-12-01	other projects	Jamaica	1	0.0222
2016-12-01	other projects	Kenya	5	0.1111
2016-12-01	other projects	Mexico	1	0.0222
2016-12-01	other projects	Morocco	6	0.1333
2016-12-01	other projects	Nepal	1	0.0222
2016-12-01	other projects	Pakistan	3	0.0667
2016-12-01	other projects	Tunisia	2	0.0444
2016-12-01	other projects	U.S. (Midwest)	1	0.0222
2016-12-01	other projects	U.S. (Northeast)	2	0.0444
2016-12-01	other projects	U.S. (Pacific)	2	0.0444
2016-12-01	other projects	U.S. (South)	2	0.0444
2016-12-01	primary links	Afghanistan	1	8e-04
2016-12-01	primary links	Åland Islands	1	8e-04
2016-12-01	primary links	Albania	1	8e-04
2016-12-01	primary links	Algeria	3	0.0024
2016-12-01	primary links	Angola	30	0.0239
2016-12-01	primary links	Argentina	11	0.0088
2016-12-01	primary links	Armenia	4	0.0032
2016-12-01	primary links	Australia	12	0.0096
2016-12-01	primary links	Austria	12	0.0096
2016-12-01	primary links	Azerbaijan	1	8e-04
2016-12-01	primary links	Bangladesh	2	0.0016
2016-12-01	primary links	Barbados	2	0.0016
2016-12-01	primary links	Belgium	9	0.0072
2016-12-01	primary links	Belize	1	8e-04
2016-12-01	primary links	Brazil	23	0.0183
2016-12-01	primary links	Bulgaria	4	0.0032
2016-12-01	primary links	Cambodia	2	0.0016
2016-12-01	primary links	Cameroon	2	0.0016
2016-12-01	primary links	Canada	42	0.0335
2016-12-01	primary links	Chile	6	0.0048
2016-12-01	primary links	China	49	0.0391
2016-12-01	primary links	Colombia	4	0.0032
2016-12-01	primary links	Costa Rica	1	8e-04
2016-12-01	primary links	Cuba	3	0.0024
2016-12-01	primary links	Cyprus	1	8e-04
2016-12-01	primary links	Czech Republic	8	0.0064
2016-12-01	primary links	Denmark	7	0.0056
2016-12-01	primary links	Dominican Republic	3	0.0024
2016-12-01	primary links	Ecuador	2	0.0016
2016-12-01	primary links	Egypt	5	0.004
2016-12-01	primary links	Finland	2	0.0016
2016-12-01	primary links	France	20	0.0159
2016-12-01	primary links	Georgia	1	8e-04
2016-12-01	primary links	Germany	75	0.0598
2016-12-01	primary links	Ghana	1	8e-04
2016-12-01	primary links	Greece	4	0.0032
2016-12-01	primary links	Guatemala	1	8e-04
2016-12-01	primary links	Haiti	1	8e-04
2016-12-01	primary links	Honduras	1	8e-04
2016-12-01	primary links	Hong Kong	4	0.0032
2016-12-01	primary links	Hungary	5	0.004
2016-12-01	primary links	Iceland	1	8e-04
2016-12-01	primary links	India	26	0.0207
2016-12-01	primary links	Indonesia	4	0.0032
2016-12-01	primary links	Iran, Islamic Republic of	2	0.0016
2016-12-01	primary links	Iraq	4	0.0032
2016-12-01	primary links	Ireland	2	0.0016
2016-12-01	primary links	Israel	4	0.0032
2016-12-01	primary links	Italy	12	0.0096
2016-12-01	primary links	Jamaica	3	0.0024
2016-12-01	primary links	Japan	5	0.004
2016-12-01	primary links	Kazakhstan	2	0.0016
2016-12-01	primary links	Kenya	3	0.0024
2016-12-01	primary links	Korea, Republic of	11	0.0088
2016-12-01	primary links	Kuwait	1	8e-04
2016-12-01	primary links	Kyrgyzstan	1	8e-04
2016-12-01	primary links	Latvia	2	0.0016
2016-12-01	primary links	Lithuania	3	0.0024
2016-12-01	primary links	Luxembourg	2	0.0016
2016-12-01	primary links	Macao	1	8e-04
2016-12-01	primary links	Macedonia, Republic of	4	0.0032
2016-12-01	primary links	Malaysia	4	0.0032
2016-12-01	primary links	Mauritius	2	0.0016
2016-12-01	primary links	Mexico	9	0.0072
2016-12-01	primary links	Mongolia	1	8e-04
2016-12-01	primary links	Morocco	4	0.0032
2016-12-01	primary links	Nepal	3	0.0024
2016-12-01	primary links	Netherlands	35	0.0279
2016-12-01	primary links	New Zealand	10	0.008
2016-12-01	primary links	Nicaragua	1	8e-04
2016-12-01	primary links	Niger	1	8e-04
2016-12-01	primary links	Nigeria	3	0.0024
2016-12-01	primary links	Norway	6	0.0048
2016-12-01	primary links	Oman	2	0.0016
2016-12-01	primary links	Other	1	8e-04
2016-12-01	primary links	Pakistan	6	0.0048
2016-12-01	primary links	Panama	2	0.0016
2016-12-01	primary links	Peru	2	0.0016
2016-12-01	primary links	Philippines	12	0.0096
2016-12-01	primary links	Poland	15	0.012
2016-12-01	primary links	Portugal	9	0.0072
2016-12-01	primary links	Romania	4	0.0032
2016-12-01	primary links	Russian Federation	28	0.0223
2016-12-01	primary links	Saudi Arabia	2	0.0016
2016-12-01	primary links	Senegal	2	0.0016
2016-12-01	primary links	Serbia	2	0.0016
2016-12-01	primary links	Singapore	6	0.0048
2016-12-01	primary links	Slovakia	3	0.0024
2016-12-01	primary links	South Africa	2	0.0016
2016-12-01	primary links	Spain	10	0.008
2016-12-01	primary links	Sweden	18	0.0144
2016-12-01	primary links	Switzerland	12	0.0096
2016-12-01	primary links	Taiwan, Province of China	5	0.004
2016-12-01	primary links	Thailand	5	0.004
2016-12-01	primary links	Timor-Leste	1	8e-04
2016-12-01	primary links	Trinidad and Tobago	2	0.0016
2016-12-01	primary links	Tunisia	2	0.0016
2016-12-01	primary links	Turkey	2	0.0016
2016-12-01	primary links	Ukraine	3	0.0024
2016-12-01	primary links	United Arab Emirates	1	8e-04
2016-12-01	primary links	United Kingdom	72	0.0574
2016-12-01	primary links	Uruguay	3	0.0024
2016-12-01	primary links	U.S. (Midwest)	97	0.0774
2016-12-01	primary links	U.S. (Northeast)	106	0.0845
2016-12-01	primary links	U.S. (Other)	1	8e-04
2016-12-01	primary links	U.S. (Pacific)	86	0.0686
2016-12-01	primary links	U.S. (South)	152	0.1212
2016-12-01	primary links	U.S. (West)	31	0.0247
2016-12-01	primary links	Venezuela, Bolivarian Republic of	1	8e-04
2016-12-01	primary links	Viet Nam	6	0.0048
2016-12-01	primary links	Virgin Islands, British	1	8e-04
2016-12-01	search	Afghanistan	1	3e-04
2016-12-01	search	Albania	1	3e-04
2016-12-01	search	Algeria	14	0.0038
2016-12-01	search	Angola	81	0.0219
2016-12-01	search	Argentina	10	0.0027
2016-12-01	search	Armenia	1	3e-04
2016-12-01	search	Australia	45	0.0122
2016-12-01	search	Austria	13	0.0035
2016-12-01	search	Azerbaijan	1	3e-04
2016-12-01	search	Bangladesh	6	0.0016
2016-12-01	search	Belarus	4	0.0011
2016-12-01	search	Belgium	12	0.0032
2016-12-01	search	Bolivia, Plurinational State of	1	3e-04
2016-12-01	search	Botswana	2	5e-04
2016-12-01	search	Brazil	20	0.0054
2016-12-01	search	Bulgaria	2	5e-04
2016-12-01	search	Burundi	2	5e-04
2016-12-01	search	Canada	165	0.0446
2016-12-01	search	Cayman Islands	1	3e-04
2016-12-01	search	Chile	5	0.0014
2016-12-01	search	China	44	0.0119
2016-12-01	search	Colombia	3	8e-04
2016-12-01	search	Costa Rica	4	0.0011
2016-12-01	search	Côte d'Ivoire	1	3e-04
2016-12-01	search	Croatia	2	5e-04
2016-12-01	search	Cuba	6	0.0016
2016-12-01	search	Czech Republic	16	0.0043
2016-12-01	search	Denmark	9	0.0024
2016-12-01	search	Dominican Republic	1	3e-04
2016-12-01	search	Egypt	7	0.0019
2016-12-01	search	El Salvador	2	5e-04
2016-12-01	search	Estonia	3	8e-04
2016-12-01	search	Fiji	1	3e-04
2016-12-01	search	Finland	12	0.0032
2016-12-01	search	France	17	0.0046
2016-12-01	search	Georgia	7	0.0019
2016-12-01	search	Germany	94	0.0254
2016-12-01	search	Ghana	1	3e-04
2016-12-01	search	Greece	6	0.0016
2016-12-01	search	Guatemala	3	8e-04
2016-12-01	search	Guernsey	1	3e-04
2016-12-01	search	Guinea	3	8e-04
2016-12-01	search	Haiti	1	3e-04
2016-12-01	search	Honduras	1	3e-04
2016-12-01	search	Hong Kong	9	0.0024
2016-12-01	search	Hungary	9	0.0024
2016-12-01	search	Iceland	2	5e-04
2016-12-01	search	India	73	0.0197
2016-12-01	search	Indonesia	16	0.0043
2016-12-01	search	Iran, Islamic Republic of	12	0.0032
2016-12-01	search	Iraq	4	0.0011
2016-12-01	search	Ireland	9	0.0024
2016-12-01	search	Israel	2	5e-04
2016-12-01	search	Italy	19	0.0051
2016-12-01	search	Jamaica	4	0.0011
2016-12-01	search	Japan	7	0.0019
2016-12-01	search	Jersey	1	3e-04
2016-12-01	search	Kazakhstan	3	8e-04
2016-12-01	search	Korea, Republic of	9	0.0024
2016-12-01	search	Kuwait	3	8e-04
2016-12-01	search	Latvia	1	3e-04
2016-12-01	search	Lithuania	4	0.0011
2016-12-01	search	Luxembourg	3	8e-04
2016-12-01	search	Macao	2	5e-04
2016-12-01	search	Macedonia, Republic of	2	5e-04
2016-12-01	search	Madagascar	4	0.0011
2016-12-01	search	Malaysia	16	0.0043
2016-12-01	search	Maldives	1	3e-04
2016-12-01	search	Malta	2	5e-04
2016-12-01	search	Mexico	20	0.0054
2016-12-01	search	Moldova, Republic of	2	5e-04
2016-12-01	search	Mongolia	2	5e-04
2016-12-01	search	Montenegro	1	3e-04
2016-12-01	search	Morocco	42	0.0113
2016-12-01	search	Myanmar	2	5e-04
2016-12-01	search	Nepal	5	0.0014
2016-12-01	search	Netherlands	81	0.0219
2016-12-01	search	New Zealand	6	0.0016
2016-12-01	search	Nicaragua	1	3e-04
2016-12-01	search	Nigeria	8	0.0022
2016-12-01	search	Norway	12	0.0032
2016-12-01	search	Other	4	0.0011
2016-12-01	search	Pakistan	14	0.0038
2016-12-01	search	Panama	3	8e-04
2016-12-01	search	Peru	7	0.0019
2016-12-01	search	Philippines	28	0.0076
2016-12-01	search	Poland	17	0.0046
2016-12-01	search	Portugal	6	0.0016
2016-12-01	search	Qatar	2	5e-04
2016-12-01	search	Romania	6	0.0016
2016-12-01	search	Russian Federation	36	0.0097
2016-12-01	search	Saudi Arabia	5	0.0014
2016-12-01	search	Senegal	4	0.0011
2016-12-01	search	Serbia	2	5e-04
2016-12-01	search	Singapore	14	0.0038
2016-12-01	search	Sint Maarten (Dutch part)	1	3e-04
2016-12-01	search	Slovakia	3	8e-04
2016-12-01	search	Somalia	2	5e-04
2016-12-01	search	South Africa	8	0.0022
2016-12-01	search	Spain	20	0.0054
2016-12-01	search	Suriname	2	5e-04
2016-12-01	search	Swaziland	1	3e-04
2016-12-01	search	Sweden	25	0.0068
2016-12-01	search	Switzerland	15	0.0041
2016-12-01	search	Taiwan, Province of China	5	0.0014
2016-12-01	search	Tanzania, United Republic of	2	5e-04
2016-12-01	search	Thailand	6	0.0016
2016-12-01	search	Timor-Leste	1	3e-04
2016-12-01	search	Tunisia	3	8e-04
2016-12-01	search	Turkey	7	0.0019
2016-12-01	search	Ukraine	11	0.003
2016-12-01	search	United Arab Emirates	7	0.0019
2016-12-01	search	United Kingdom	218	0.0589
2016-12-01	search	U.S. (Midwest)	407	0.11
2016-12-01	search	U.S. (Northeast)	497	0.1343
2016-12-01	search	U.S. (Other)	2	5e-04
2016-12-01	search	U.S. (Pacific)	345	0.0932
2016-12-01	search	U.S. (South)	778	0.2102
2016-12-01	search	U.S. (West)	149	0.0403
2016-12-01	search	Uzbekistan	1	3e-04
2016-12-01	search	Venezuela, Bolivarian Republic of	4	0.0011
2016-12-01	search	Viet Nam	2	5e-04
2016-12-01	secondary links	Angola	2	0.04
2016-12-01	secondary links	Argentina	1	0.02
2016-12-01	secondary links	Bangladesh	3	0.06
2016-12-01	secondary links	Barbados	2	0.04
2016-12-01	secondary links	China	3	0.06
2016-12-01	secondary links	Czech Republic	3	0.06
2016-12-01	secondary links	Georgia	1	0.02
2016-12-01	secondary links	Germany	2	0.04
2016-12-01	secondary links	Guinea	1	0.02
2016-12-01	secondary links	India	9	0.18
2016-12-01	secondary links	Morocco	6	0.12
2016-12-01	secondary links	Nigeria	1	0.02
2016-12-01	secondary links	Serbia	1	0.02
2016-12-01	secondary links	South Africa	3	0.06
2016-12-01	secondary links	Thailand	1	0.02
2016-12-01	secondary links	Timor-Leste	8	0.16
2016-12-01	secondary links	U.S. (Midwest)	1	0.02
2016-12-01	secondary links	U.S. (Northeast)	1	0.02
2016-12-01	secondary links	U.S. (West)	1	0.02

Reverting working directory to "/home/bearloga/source/golden"

It took 4s to generate this report.

Report 25 of 49

  1. Executing report "last_action_country" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh last_action_country 2016-12-01 2016-12-02

Output:

Warning message:
In .doLoadActions(where, attach) :
  trying to execute load actions without 'methods' package
date	section_used	country	events	proportion
2016-12-01	other projects	Algeria	1	0.0385
2016-12-01	other projects	Angola	1	0.0385
2016-12-01	other projects	Brazil	1	0.0385
2016-12-01	other projects	China	1	0.0385
2016-12-01	other projects	Ethiopia	1	0.0385
2016-12-01	other projects	Germany	1	0.0385
2016-12-01	other projects	India	3	0.1154
2016-12-01	other projects	Indonesia	1	0.0385
2016-12-01	other projects	Italy	1	0.0385
2016-12-01	other projects	Jamaica	1	0.0385
2016-12-01	other projects	Kenya	3	0.1154
2016-12-01	other projects	Mexico	1	0.0385
2016-12-01	other projects	Morocco	3	0.1154
2016-12-01	other projects	Nepal	1	0.0385
2016-12-01	other projects	Pakistan	1	0.0385
2016-12-01	other projects	Tunisia	1	0.0385
2016-12-01	other projects	U.S. (Northeast)	1	0.0385
2016-12-01	other projects	U.S. (Pacific)	2	0.0769
2016-12-01	other projects	U.S. (South)	1	0.0385
2016-12-01	primary links	Åland Islands	1	0.001
2016-12-01	primary links	Albania	1	0.001
2016-12-01	primary links	Algeria	3	0.003
2016-12-01	primary links	Angola	12	0.012
2016-12-01	primary links	Argentina	7	0.007
2016-12-01	primary links	Armenia	4	0.004
2016-12-01	primary links	Australia	12	0.012
2016-12-01	primary links	Austria	12	0.012
2016-12-01	primary links	Azerbaijan	1	0.001
2016-12-01	primary links	Bangladesh	3	0.003
2016-12-01	primary links	Barbados	2	0.002
2016-12-01	primary links	Belgium	7	0.007
2016-12-01	primary links	Brazil	19	0.0191
2016-12-01	primary links	Bulgaria	3	0.003
2016-12-01	primary links	Cambodia	1	0.001
2016-12-01	primary links	Cameroon	1	0.001
2016-12-01	primary links	Canada	31	0.0311
2016-12-01	primary links	Chile	4	0.004
2016-12-01	primary links	China	33	0.0331
2016-12-01	primary links	Colombia	3	0.003
2016-12-01	primary links	Costa Rica	1	0.001
2016-12-01	primary links	Cuba	2	0.002
2016-12-01	primary links	Cyprus	1	0.001
2016-12-01	primary links	Czech Republic	8	0.008
2016-12-01	primary links	Denmark	7	0.007
2016-12-01	primary links	Dominican Republic	2	0.002
2016-12-01	primary links	Ecuador	1	0.001
2016-12-01	primary links	Egypt	5	0.005
2016-12-01	primary links	Finland	2	0.002
2016-12-01	primary links	France	17	0.0171
2016-12-01	primary links	Georgia	1	0.001
2016-12-01	primary links	Germany	61	0.0612
2016-12-01	primary links	Ghana	1	0.001
2016-12-01	primary links	Greece	3	0.003
2016-12-01	primary links	Guatemala	1	0.001
2016-12-01	primary links	Haiti	1	0.001
2016-12-01	primary links	Honduras	1	0.001
2016-12-01	primary links	Hong Kong	3	0.003
2016-12-01	primary links	Hungary	5	0.005
2016-12-01	primary links	Iceland	1	0.001
2016-12-01	primary links	India	19	0.0191
2016-12-01	primary links	Indonesia	4	0.004
2016-12-01	primary links	Iran, Islamic Republic of	1	0.001
2016-12-01	primary links	Iraq	1	0.001
2016-12-01	primary links	Ireland	2	0.002
2016-12-01	primary links	Israel	3	0.003
2016-12-01	primary links	Italy	9	0.009
2016-12-01	primary links	Jamaica	2	0.002
2016-12-01	primary links	Japan	5	0.005
2016-12-01	primary links	Kazakhstan	1	0.001
2016-12-01	primary links	Kenya	1	0.001
2016-12-01	primary links	Korea, Republic of	6	0.006
2016-12-01	primary links	Kuwait	1	0.001
2016-12-01	primary links	Kyrgyzstan	1	0.001
2016-12-01	primary links	Latvia	2	0.002
2016-12-01	primary links	Lithuania	3	0.003
2016-12-01	primary links	Luxembourg	1	0.001
2016-12-01	primary links	Macao	1	0.001
2016-12-01	primary links	Macedonia, Republic of	3	0.003
2016-12-01	primary links	Malaysia	4	0.004
2016-12-01	primary links	Mauritius	1	0.001
2016-12-01	primary links	Mexico	8	0.008
2016-12-01	primary links	Mongolia	1	0.001
2016-12-01	primary links	Morocco	3	0.003
2016-12-01	primary links	Nepal	1	0.001
2016-12-01	primary links	Netherlands	21	0.0211
2016-12-01	primary links	New Zealand	4	0.004
2016-12-01	primary links	Nicaragua	1	0.001
2016-12-01	primary links	Niger	1	0.001
2016-12-01	primary links	Nigeria	2	0.002
2016-12-01	primary links	Norway	3	0.003
2016-12-01	primary links	Oman	2	0.002
2016-12-01	primary links	Other	1	0.001
2016-12-01	primary links	Pakistan	4	0.004
2016-12-01	primary links	Panama	2	0.002
2016-12-01	primary links	Philippines	11	0.011
2016-12-01	primary links	Poland	13	0.0131
2016-12-01	primary links	Portugal	4	0.004
2016-12-01	primary links	Romania	4	0.004
2016-12-01	primary links	Russian Federation	24	0.0241
2016-12-01	primary links	Saudi Arabia	2	0.002
2016-12-01	primary links	Senegal	2	0.002
2016-12-01	primary links	Serbia	2	0.002
2016-12-01	primary links	Singapore	6	0.006
2016-12-01	primary links	Slovakia	3	0.003
2016-12-01	primary links	South Africa	2	0.002
2016-12-01	primary links	Spain	9	0.009
2016-12-01	primary links	Sweden	15	0.0151
2016-12-01	primary links	Switzerland	12	0.012
2016-12-01	primary links	Taiwan, Province of China	4	0.004
2016-12-01	primary links	Thailand	5	0.005
2016-12-01	primary links	Trinidad and Tobago	1	0.001
2016-12-01	primary links	Turkey	2	0.002
2016-12-01	primary links	Ukraine	3	0.003
2016-12-01	primary links	United Arab Emirates	1	0.001
2016-12-01	primary links	United Kingdom	58	0.0582
2016-12-01	primary links	Uruguay	2	0.002
2016-12-01	primary links	U.S. (Midwest)	82	0.0823
2016-12-01	primary links	U.S. (Northeast)	89	0.0894
2016-12-01	primary links	U.S. (Other)	1	0.001
2016-12-01	primary links	U.S. (Pacific)	68	0.0683
2016-12-01	primary links	U.S. (South)	127	0.1275
2016-12-01	primary links	U.S. (West)	27	0.0271
2016-12-01	primary links	Venezuela, Bolivarian Republic of	1	0.001
2016-12-01	primary links	Viet Nam	6	0.006
2016-12-01	primary links	Virgin Islands, British	1	0.001
2016-12-01	search	Albania	1	3e-04
2016-12-01	search	Algeria	7	0.0024
2016-12-01	search	Angola	52	0.0179
2016-12-01	search	Argentina	8	0.0028
2016-12-01	search	Armenia	1	3e-04
2016-12-01	search	Australia	35	0.012
2016-12-01	search	Austria	10	0.0034
2016-12-01	search	Azerbaijan	1	3e-04
2016-12-01	search	Bangladesh	3	0.001
2016-12-01	search	Belarus	3	0.001
2016-12-01	search	Belgium	11	0.0038
2016-12-01	search	Botswana	1	3e-04
2016-12-01	search	Brazil	14	0.0048
2016-12-01	search	Bulgaria	2	7e-04
2016-12-01	search	Burundi	1	3e-04
2016-12-01	search	Canada	110	0.0379
2016-12-01	search	Cayman Islands	1	3e-04
2016-12-01	search	Chile	4	0.0014
2016-12-01	search	China	35	0.012
2016-12-01	search	Colombia	2	7e-04
2016-12-01	search	Costa Rica	2	7e-04
2016-12-01	search	Côte d'Ivoire	1	3e-04
2016-12-01	search	Croatia	1	3e-04
2016-12-01	search	Cuba	4	0.0014
2016-12-01	search	Czech Republic	12	0.0041
2016-12-01	search	Denmark	7	0.0024
2016-12-01	search	Dominican Republic	1	3e-04
2016-12-01	search	Egypt	3	0.001
2016-12-01	search	El Salvador	1	3e-04
2016-12-01	search	Estonia	3	0.001
2016-12-01	search	Fiji	1	3e-04
2016-12-01	search	Finland	11	0.0038
2016-12-01	search	France	17	0.0058
2016-12-01	search	Georgia	6	0.0021
2016-12-01	search	Germany	80	0.0275
2016-12-01	search	Ghana	1	3e-04
2016-12-01	search	Greece	6	0.0021
2016-12-01	search	Guatemala	2	7e-04
2016-12-01	search	Guernsey	1	3e-04
2016-12-01	search	Haiti	1	3e-04
2016-12-01	search	Honduras	1	3e-04
2016-12-01	search	Hong Kong	8	0.0028
2016-12-01	search	Hungary	9	0.0031
2016-12-01	search	Iceland	1	3e-04
2016-12-01	search	India	49	0.0169
2016-12-01	search	Indonesia	16	0.0055
2016-12-01	search	Iran, Islamic Republic of	10	0.0034
2016-12-01	search	Iraq	3	0.001
2016-12-01	search	Ireland	7	0.0024
2016-12-01	search	Israel	2	7e-04
2016-12-01	search	Italy	11	0.0038
2016-12-01	search	Jamaica	4	0.0014
2016-12-01	search	Japan	6	0.0021
2016-12-01	search	Jersey	1	3e-04
2016-12-01	search	Kazakhstan	3	0.001
2016-12-01	search	Korea, Republic of	8	0.0028
2016-12-01	search	Kuwait	1	3e-04
2016-12-01	search	Latvia	1	3e-04
2016-12-01	search	Lithuania	3	0.001
2016-12-01	search	Luxembourg	2	7e-04
2016-12-01	search	Macao	1	3e-04
2016-12-01	search	Macedonia, Republic of	1	3e-04
2016-12-01	search	Madagascar	3	0.001
2016-12-01	search	Malaysia	14	0.0048
2016-12-01	search	Maldives	1	3e-04
2016-12-01	search	Malta	1	3e-04
2016-12-01	search	Mexico	14	0.0048
2016-12-01	search	Mongolia	1	3e-04
2016-12-01	search	Montenegro	1	3e-04
2016-12-01	search	Morocco	20	0.0069
2016-12-01	search	Myanmar	1	3e-04
2016-12-01	search	Nepal	4	0.0014
2016-12-01	search	Netherlands	29	0.01
2016-12-01	search	New Zealand	6	0.0021
2016-12-01	search	Nicaragua	1	3e-04
2016-12-01	search	Nigeria	6	0.0021
2016-12-01	search	Norway	11	0.0038
2016-12-01	search	Other	3	0.001
2016-12-01	search	Pakistan	10	0.0034
2016-12-01	search	Panama	3	0.001
2016-12-01	search	Peru	5	0.0017
2016-12-01	search	Philippines	23	0.0079
2016-12-01	search	Poland	11	0.0038
2016-12-01	search	Portugal	4	0.0014
2016-12-01	search	Qatar	1	3e-04
2016-12-01	search	Romania	4	0.0014
2016-12-01	search	Russian Federation	29	0.01
2016-12-01	search	Saudi Arabia	3	0.001
2016-12-01	search	Serbia	1	3e-04
2016-12-01	search	Singapore	11	0.0038
2016-12-01	search	Sint Maarten (Dutch part)	1	3e-04
2016-12-01	search	Slovakia	3	0.001
2016-12-01	search	Somalia	2	7e-04
2016-12-01	search	South Africa	7	0.0024
2016-12-01	search	Spain	18	0.0062
2016-12-01	search	Suriname	1	3e-04
2016-12-01	search	Swaziland	1	3e-04
2016-12-01	search	Sweden	21	0.0072
2016-12-01	search	Switzerland	11	0.0038
2016-12-01	search	Taiwan, Province of China	3	0.001
2016-12-01	search	Tanzania, United Republic of	1	3e-04
2016-12-01	search	Thailand	3	0.001
2016-12-01	search	Timor-Leste	1	3e-04
2016-12-01	search	Tunisia	3	0.001
2016-12-01	search	Turkey	5	0.0017
2016-12-01	search	Ukraine	7	0.0024
2016-12-01	search	United Arab Emirates	6	0.0021
2016-12-01	search	United Kingdom	188	0.0647
2016-12-01	search	U.S. (Midwest)	335	0.1153
2016-12-01	search	U.S. (Northeast)	416	0.1432
2016-12-01	search	U.S. (Other)	2	7e-04
2016-12-01	search	U.S. (Pacific)	278	0.0957
2016-12-01	search	U.S. (South)	626	0.2154
2016-12-01	search	U.S. (West)	128	0.044
2016-12-01	search	Uzbekistan	1	3e-04
2016-12-01	search	Venezuela, Bolivarian Republic of	4	0.0014
2016-12-01	search	Viet Nam	2	7e-04
2016-12-01	secondary links	Argentina	1	0.0435
2016-12-01	secondary links	Bangladesh	2	0.087
2016-12-01	secondary links	Barbados	1	0.0435
2016-12-01	secondary links	Czech Republic	2	0.087
2016-12-01	secondary links	Germany	2	0.087
2016-12-01	secondary links	Guinea	1	0.0435
2016-12-01	secondary links	India	3	0.1304
2016-12-01	secondary links	Morocco	4	0.1739
2016-12-01	secondary links	Nigeria	1	0.0435
2016-12-01	secondary links	Serbia	1	0.0435
2016-12-01	secondary links	South Africa	3	0.1304
2016-12-01	secondary links	U.S. (Northeast)	1	0.0435
2016-12-01	secondary links	U.S. (West)	1	0.0435
2016-12-01	NA	Afghanistan	1	3e-04
2016-12-01	NA	Albania	3	0.001
2016-12-01	NA	Algeria	23	0.0075
2016-12-01	NA	Angola	58	0.0189
2016-12-01	NA	Argentina	14	0.0046
2016-12-01	NA	Armenia	2	7e-04
2016-12-01	NA	Australia	41	0.0134
2016-12-01	NA	Austria	9	0.0029
2016-12-01	NA	Azerbaijan	4	0.0013
2016-12-01	NA	Bahrain	1	3e-04
2016-12-01	NA	Bangladesh	17	0.0055
2016-12-01	NA	Belarus	9	0.0029
2016-12-01	NA	Belgium	10	0.0033
2016-12-01	NA	Belize	1	3e-04
2016-12-01	NA	Benin	2	7e-04
2016-12-01	NA	Bolivia, Plurinational State of	1	3e-04
2016-12-01	NA	Bosnia and Herzegovina	2	7e-04
2016-12-01	NA	Botswana	1	3e-04
2016-12-01	NA	Brazil	45	0.0147
2016-12-01	NA	Bulgaria	8	0.0026
2016-12-01	NA	Cambodia	4	0.0013
2016-12-01	NA	Cameroon	4	0.0013
2016-12-01	NA	Canada	76	0.0248
2016-12-01	NA	Chile	12	0.0039
2016-12-01	NA	China	41	0.0134
2016-12-01	NA	Colombia	32	0.0104
2016-12-01	NA	Congo	1	3e-04
2016-12-01	NA	Costa Rica	2	7e-04
2016-12-01	NA	Côte d'Ivoire	2	7e-04
2016-12-01	NA	Croatia	3	0.001
2016-12-01	NA	Czech Republic	13	0.0042
2016-12-01	NA	Denmark	4	0.0013
2016-12-01	NA	Dominica	1	3e-04
2016-12-01	NA	Dominican Republic	5	0.0016
2016-12-01	NA	Ecuador	5	0.0016
2016-12-01	NA	Egypt	15	0.0049
2016-12-01	NA	El Salvador	3	0.001
2016-12-01	NA	Estonia	1	3e-04
2016-12-01	NA	Ethiopia	3	0.001
2016-12-01	NA	Finland	7	0.0023
2016-12-01	NA	France	49	0.016
2016-12-01	NA	Georgia	5	0.0016
2016-12-01	NA	Germany	145	0.0472
2016-12-01	NA	Ghana	4	0.0013
2016-12-01	NA	Greece	15	0.0049
2016-12-01	NA	Grenada	1	3e-04
2016-12-01	NA	Guatemala	2	7e-04
2016-12-01	NA	Guinea	1	3e-04
2016-12-01	NA	Haiti	2	7e-04
2016-12-01	NA	Hong Kong	16	0.0052
2016-12-01	NA	Hungary	4	0.0013
2016-12-01	NA	Iceland	2	7e-04
2016-12-01	NA	India	144	0.0469
2016-12-01	NA	Indonesia	28	0.0091
2016-12-01	NA	Iran, Islamic Republic of	17	0.0055
2016-12-01	NA	Iraq	8	0.0026
2016-12-01	NA	Ireland	10	0.0033
2016-12-01	NA	Israel	34	0.0111
2016-12-01	NA	Italy	27	0.0088
2016-12-01	NA	Jamaica	4	0.0013
2016-12-01	NA	Japan	13	0.0042
2016-12-01	NA	Jersey	1	3e-04
2016-12-01	NA	Jordan	3	0.001
2016-12-01	NA	Kazakhstan	7	0.0023
2016-12-01	NA	Kenya	9	0.0029
2016-12-01	NA	Korea, Republic of	13	0.0042
2016-12-01	NA	Kuwait	1	3e-04
2016-12-01	NA	Latvia	1	3e-04
2016-12-01	NA	Lebanon	2	7e-04
2016-12-01	NA	Libya	1	3e-04
2016-12-01	NA	Luxembourg	4	0.0013
2016-12-01	NA	Macao	1	3e-04
2016-12-01	NA	Macedonia, Republic of	3	0.001
2016-12-01	NA	Malaysia	20	0.0065
2016-12-01	NA	Mali	2	7e-04
2016-12-01	NA	Malta	1	3e-04
2016-12-01	NA	Mexico	39	0.0127
2016-12-01	NA	Moldova, Republic of	2	7e-04
2016-12-01	NA	Mongolia	1	3e-04
2016-12-01	NA	Morocco	26	0.0085
2016-12-01	NA	Myanmar	6	0.002
2016-12-01	NA	Nepal	9	0.0029
2016-12-01	NA	Netherlands	31	0.0101
2016-12-01	NA	New Zealand	4	0.0013
2016-12-01	NA	Nigeria	22	0.0072
2016-12-01	NA	Norway	12	0.0039
2016-12-01	NA	Oman	5	0.0016
2016-12-01	NA	Other	5	0.0016
2016-12-01	NA	Pakistan	31	0.0101
2016-12-01	NA	Palestine, State of	1	3e-04
2016-12-01	NA	Panama	2	7e-04
2016-12-01	NA	Paraguay	2	7e-04
2016-12-01	NA	Peru	4	0.0013
2016-12-01	NA	Philippines	28	0.0091
2016-12-01	NA	Poland	13	0.0042
2016-12-01	NA	Portugal	7	0.0023
2016-12-01	NA	Qatar	1	3e-04
2016-12-01	NA	Romania	7	0.0023
2016-12-01	NA	Russian Federation	85	0.0277
2016-12-01	NA	Rwanda	1	3e-04
2016-12-01	NA	Saudi Arabia	9	0.0029
2016-12-01	NA	Senegal	2	7e-04
2016-12-01	NA	Serbia	6	0.002
2016-12-01	NA	Singapore	13	0.0042
2016-12-01	NA	Slovakia	2	7e-04
2016-12-01	NA	Slovenia	2	7e-04
2016-12-01	NA	South Africa	20	0.0065
2016-12-01	NA	Spain	40	0.013
2016-12-01	NA	Sri Lanka	2	7e-04
2016-12-01	NA	Sudan	4	0.0013
2016-12-01	NA	Sweden	13	0.0042
2016-12-01	NA	Switzerland	27	0.0088
2016-12-01	NA	Syrian Arab Republic	1	3e-04
2016-12-01	NA	Taiwan, Province of China	10	0.0033
2016-12-01	NA	Tanzania, United Republic of	6	0.002
2016-12-01	NA	Thailand	27	0.0088
2016-12-01	NA	Timor-Leste	1	3e-04
2016-12-01	NA	Trinidad and Tobago	1	3e-04
2016-12-01	NA	Tunisia	6	0.002
2016-12-01	NA	Turkey	16	0.0052
2016-12-01	NA	Ukraine	21	0.0068
2016-12-01	NA	United Arab Emirates	2	7e-04
2016-12-01	NA	United Kingdom	277	0.0903
2016-12-01	NA	Uruguay	3	0.001
2016-12-01	NA	U.S. (Midwest)	197	0.0642
2016-12-01	NA	U.S. (Northeast)	223	0.0727
2016-12-01	NA	U.S. (Other)	3	0.001
2016-12-01	NA	U.S. (Pacific)	267	0.087
2016-12-01	NA	U.S. (South)	339	0.1105
2016-12-01	NA	U.S. (West)	63	0.0205
2016-12-01	NA	Uzbekistan	2	7e-04
2016-12-01	NA	Venezuela, Bolivarian Republic of	4	0.0013
2016-12-01	NA	Viet Nam	21	0.0068
2016-12-01	NA	Yemen	3	0.001
2016-12-01	NA	Zambia	2	7e-04
2016-12-01	NA	Zimbabwe	4	0.0013

Reverting working directory to "/home/bearloga/source/golden"

It took 3s to generate this report.

Report 26 of 49

  1. Executing report "language_switching" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh language_switching 2016-12-01 2016-12-02

Output:

date	sessions	switched
2016-12-01	7004	97

Reverting working directory to "/home/bearloga/source/golden"

It took 3s to generate this report.

Report 27 of 49

  1. Executing report "language_destination" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh language_destination 2016-12-01 2016-12-02

Output:

Warning message:
In .doLoadActions(where, attach) :
  trying to execute load actions without 'methods' package
date	prefix	clicks	sessions	search	primary	secondary
2016-12-01	ar	61	42	49	6	6
2016-12-01	ast	2	2	0	0	2
2016-12-01	av	1	1	0	0	1
2016-12-01	bar	1	1	0	0	1
2016-12-01	be	2	1	0	0	2
2016-12-01	bg	3	3	1	2	0
2016-12-01	bn	3	3	0	1	2
2016-12-01	ca	4	4	4	0	0
2016-12-01	ceb	1	1	0	0	1
2016-12-01	cs	15	14	13	1	1
2016-12-01	cu	1	1	0	0	1
2016-12-01	da	4	3	3	1	0
2016-12-01	de	179	167	89	90	0
2016-12-01	el	2	2	0	2	0
2016-12-01	en	4014	3430	3159	847	5
2016-12-01	es	141	123	67	72	2
2016-12-01	et	2	1	0	0	2
2016-12-01	fa	10	10	8	1	1
2016-12-01	fi	5	5	5	0	0
2016-12-01	fr	91	75	46	44	1
2016-12-01	he	3	2	0	2	1
2016-12-01	hi	3	2	2	0	1
2016-12-01	hr	1	1	1	0	0
2016-12-01	hu	12	12	7	4	1
2016-12-01	hy	1	1	0	0	1
2016-12-01	id	7	7	4	2	1
2016-12-01	it	54	43	20	34	0
2016-12-01	iu	1	1	0	0	1
2016-12-01	ja	9	9	1	7	1
2016-12-01	ka	1	1	0	0	1
2016-12-01	ko	9	9	5	4	0
2016-12-01	la	1	1	1	0	0
2016-12-01	lt	3	2	2	1	0
2016-12-01	ml	4	4	0	0	4
2016-12-01	mr	1	1	0	1	0
2016-12-01	my	2	1	2	0	0
2016-12-01	nl	36	28	24	12	0
2016-12-01	no	4	4	4	0	0
2016-12-01	pl	35	29	15	19	1
2016-12-01	pt	149	106	108	41	0
2016-12-01	ro	1	1	0	0	1
2016-12-01	ru	107	93	55	51	1
2016-12-01	sc	2	1	0	0	2
2016-12-01	sh	5	1	0	0	5
2016-12-01	simple	2	2	1	0	1
2016-12-01	sk	3	3	1	2	0
2016-12-01	sr	4	4	2	0	2
2016-12-01	sv	22	21	17	5	0
2016-12-01	sw	1	1	0	0	1
2016-12-01	ta	1	1	0	0	1
2016-12-01	te	1	1	0	1	0
2016-12-01	th	6	4	4	2	0
2016-12-01	tr	8	6	7	1	0
2016-12-01	uk	6	3	6	0	0
2016-12-01	ur	1	1	0	0	1
2016-12-01	vi	9	8	2	5	2
2016-12-01	war	1	1	0	0	1
2016-12-01	zh	107	74	55	51	0

Reverting working directory to "/home/bearloga/source/golden"

It took 7s to generate this report.

Report 28 of 49

  1. Executing report "first_visits_country" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh first_visits_country 2016-12-01 2016-12-02

Output:

Warning message:
In .doLoadActions(where, attach) :
  trying to execute load actions without 'methods' package
date	section_used	country	sessions	proportion
2016-12-01	other projects	Algeria	4	0.1143
2016-12-01	other projects	Angola	1	0.0286
2016-12-01	other projects	Brazil	1	0.0286
2016-12-01	other projects	Colombia	1	0.0286
2016-12-01	other projects	Ethiopia	2	0.0571
2016-12-01	other projects	Germany	1	0.0286
2016-12-01	other projects	India	4	0.1143
2016-12-01	other projects	Indonesia	6	0.1714
2016-12-01	other projects	Italy	1	0.0286
2016-12-01	other projects	Kenya	4	0.1143
2016-12-01	other projects	Mexico	1	0.0286
2016-12-01	other projects	Morocco	1	0.0286
2016-12-01	other projects	Nepal	1	0.0286
2016-12-01	other projects	Pakistan	1	0.0286
2016-12-01	other projects	Tunisia	1	0.0286
2016-12-01	other projects	U.S. (Northeast)	1	0.0286
2016-12-01	other projects	U.S. (Pacific)	2	0.0571
2016-12-01	other projects	U.S. (South)	2	0.0571
2016-12-01	primary links	Afghanistan	1	9e-04
2016-12-01	primary links	Åland Islands	1	9e-04
2016-12-01	primary links	Albania	1	9e-04
2016-12-01	primary links	Algeria	2	0.0019
2016-12-01	primary links	Angola	16	0.0152
2016-12-01	primary links	Argentina	9	0.0085
2016-12-01	primary links	Armenia	4	0.0038
2016-12-01	primary links	Australia	12	0.0114
2016-12-01	primary links	Austria	11	0.0104
2016-12-01	primary links	Azerbaijan	1	9e-04
2016-12-01	primary links	Bangladesh	4	0.0038
2016-12-01	primary links	Barbados	1	9e-04
2016-12-01	primary links	Belgium	9	0.0085
2016-12-01	primary links	Belize	1	9e-04
2016-12-01	primary links	Brazil	21	0.0199
2016-12-01	primary links	Bulgaria	4	0.0038
2016-12-01	primary links	Cambodia	1	9e-04
2016-12-01	primary links	Cameroon	2	0.0019
2016-12-01	primary links	Canada	31	0.0294
2016-12-01	primary links	Chile	4	0.0038
2016-12-01	primary links	China	44	0.0418
2016-12-01	primary links	Colombia	4	0.0038
2016-12-01	primary links	Costa Rica	1	9e-04
2016-12-01	primary links	Cuba	1	9e-04
2016-12-01	primary links	Cyprus	2	0.0019
2016-12-01	primary links	Czech Republic	7	0.0066
2016-12-01	primary links	Denmark	7	0.0066
2016-12-01	primary links	Dominican Republic	3	0.0028
2016-12-01	primary links	Ecuador	2	0.0019
2016-12-01	primary links	Egypt	3	0.0028
2016-12-01	primary links	Finland	2	0.0019
2016-12-01	primary links	France	18	0.0171
2016-12-01	primary links	Georgia	1	9e-04
2016-12-01	primary links	Germany	67	0.0636
2016-12-01	primary links	Ghana	1	9e-04
2016-12-01	primary links	Greece	4	0.0038
2016-12-01	primary links	Guatemala	1	9e-04
2016-12-01	primary links	Haiti	1	9e-04
2016-12-01	primary links	Honduras	1	9e-04
2016-12-01	primary links	Hong Kong	4	0.0038
2016-12-01	primary links	Hungary	5	0.0047
2016-12-01	primary links	India	24	0.0228
2016-12-01	primary links	Indonesia	5	0.0047
2016-12-01	primary links	Iran, Islamic Republic of	2	0.0019
2016-12-01	primary links	Ireland	2	0.0019
2016-12-01	primary links	Israel	3	0.0028
2016-12-01	primary links	Italy	7	0.0066
2016-12-01	primary links	Jamaica	1	9e-04
2016-12-01	primary links	Japan	4	0.0038
2016-12-01	primary links	Kazakhstan	1	9e-04
2016-12-01	primary links	Kenya	2	0.0019
2016-12-01	primary links	Korea, Republic of	7	0.0066
2016-12-01	primary links	Kuwait	1	9e-04
2016-12-01	primary links	Kyrgyzstan	1	9e-04
2016-12-01	primary links	Latvia	2	0.0019
2016-12-01	primary links	Lithuania	3	0.0028
2016-12-01	primary links	Macedonia, Republic of	3	0.0028
2016-12-01	primary links	Malaysia	4	0.0038
2016-12-01	primary links	Mauritius	1	9e-04
2016-12-01	primary links	Mexico	7	0.0066
2016-12-01	primary links	Morocco	2	0.0019
2016-12-01	primary links	Nepal	1	9e-04
2016-12-01	primary links	Netherlands	20	0.019
2016-12-01	primary links	New Zealand	5	0.0047
2016-12-01	primary links	Nicaragua	1	9e-04
2016-12-01	primary links	Niger	1	9e-04
2016-12-01	primary links	Nigeria	3	0.0028
2016-12-01	primary links	Norway	3	0.0028
2016-12-01	primary links	Oman	3	0.0028
2016-12-01	primary links	Pakistan	5	0.0047
2016-12-01	primary links	Panama	2	0.0019
2016-12-01	primary links	Peru	1	9e-04
2016-12-01	primary links	Philippines	13	0.0123
2016-12-01	primary links	Poland	15	0.0142
2016-12-01	primary links	Portugal	5	0.0047
2016-12-01	primary links	Romania	4	0.0038
2016-12-01	primary links	Russian Federation	28	0.0266
2016-12-01	primary links	Saudi Arabia	2	0.0019
2016-12-01	primary links	Senegal	1	9e-04
2016-12-01	primary links	Serbia	2	0.0019
2016-12-01	primary links	Singapore	6	0.0057
2016-12-01	primary links	Slovakia	3	0.0028
2016-12-01	primary links	South Africa	2	0.0019
2016-12-01	primary links	Spain	9	0.0085
2016-12-01	primary links	Sweden	14	0.0133
2016-12-01	primary links	Switzerland	12	0.0114
2016-12-01	primary links	Taiwan, Province of China	4	0.0038
2016-12-01	primary links	Thailand	4	0.0038
2016-12-01	primary links	Trinidad and Tobago	1	9e-04
2016-12-01	primary links	Tunisia	2	0.0019
2016-12-01	primary links	Turkey	2	0.0019
2016-12-01	primary links	Ukraine	3	0.0028
2016-12-01	primary links	United Arab Emirates	1	9e-04
2016-12-01	primary links	United Kingdom	56	0.0532
2016-12-01	primary links	Uruguay	3	0.0028
2016-12-01	primary links	U.S. (Midwest)	81	0.0769
2016-12-01	primary links	U.S. (Northeast)	97	0.0921
2016-12-01	primary links	U.S. (Other)	1	9e-04
2016-12-01	primary links	U.S. (Pacific)	70	0.0665
2016-12-01	primary links	U.S. (South)	134	0.1273
2016-12-01	primary links	U.S. (West)	28	0.0266
2016-12-01	primary links	Venezuela, Bolivarian Republic of	1	9e-04
2016-12-01	primary links	Viet Nam	6	0.0057
2016-12-01	primary links	Virgin Islands, British	1	9e-04
2016-12-01	search	Albania	1	3e-04
2016-12-01	search	Algeria	8	0.0025
2016-12-01	search	Angola	61	0.0194
2016-12-01	search	Argentina	9	0.0029
2016-12-01	search	Armenia	1	3e-04
2016-12-01	search	Australia	38	0.0121
2016-12-01	search	Austria	12	0.0038
2016-12-01	search	Azerbaijan	1	3e-04
2016-12-01	search	Bangladesh	7	0.0022
2016-12-01	search	Belarus	4	0.0013
2016-12-01	search	Belgium	10	0.0032
2016-12-01	search	Botswana	2	6e-04
2016-12-01	search	Brazil	18	0.0057
2016-12-01	search	Bulgaria	1	3e-04
2016-12-01	search	Burundi	1	3e-04
2016-12-01	search	Canada	120	0.0382
2016-12-01	search	Cayman Islands	1	3e-04
2016-12-01	search	Chile	5	0.0016
2016-12-01	search	China	42	0.0134
2016-12-01	search	Colombia	2	6e-04
2016-12-01	search	Costa Rica	2	6e-04
2016-12-01	search	Côte d'Ivoire	1	3e-04
2016-12-01	search	Croatia	2	6e-04
2016-12-01	search	Cuba	3	0.001
2016-12-01	search	Czech Republic	14	0.0045
2016-12-01	search	Denmark	7	0.0022
2016-12-01	search	Dominican Republic	1	3e-04
2016-12-01	search	Egypt	5	0.0016
2016-12-01	search	El Salvador	2	6e-04
2016-12-01	search	Estonia	3	0.001
2016-12-01	search	Fiji	1	3e-04
2016-12-01	search	Finland	12	0.0038
2016-12-01	search	France	17	0.0054
2016-12-01	search	Georgia	6	0.0019
2016-12-01	search	Germany	86	0.0274
2016-12-01	search	Greece	6	0.0019
2016-12-01	search	Guatemala	2	6e-04
2016-12-01	search	Guernsey	1	3e-04
2016-12-01	search	Guinea	1	3e-04
2016-12-01	search	Haiti	1	3e-04
2016-12-01	search	Hong Kong	8	0.0025
2016-12-01	search	Hungary	9	0.0029
2016-12-01	search	Iceland	2	6e-04
2016-12-01	search	India	64	0.0204
2016-12-01	search	Indonesia	16	0.0051
2016-12-01	search	Iran, Islamic Republic of	12	0.0038
2016-12-01	search	Iraq	3	0.001
2016-12-01	search	Ireland	8	0.0025
2016-12-01	search	Israel	2	6e-04
2016-12-01	search	Italy	14	0.0045
2016-12-01	search	Jamaica	5	0.0016
2016-12-01	search	Japan	7	0.0022
2016-12-01	search	Jersey	1	3e-04
2016-12-01	search	Kazakhstan	3	0.001
2016-12-01	search	Korea, Republic of	8	0.0025
2016-12-01	search	Kuwait	1	3e-04
2016-12-01	search	Latvia	1	3e-04
2016-12-01	search	Lithuania	3	0.001
2016-12-01	search	Luxembourg	3	0.001
2016-12-01	search	Macao	2	6e-04
2016-12-01	search	Macedonia, Republic of	2	6e-04
2016-12-01	search	Madagascar	3	0.001
2016-12-01	search	Malaysia	15	0.0048
2016-12-01	search	Maldives	1	3e-04
2016-12-01	search	Malta	2	6e-04
2016-12-01	search	Mexico	16	0.0051
2016-12-01	search	Mongolia	2	6e-04
2016-12-01	search	Montenegro	1	3e-04
2016-12-01	search	Morocco	26	0.0083
2016-12-01	search	Myanmar	1	3e-04
2016-12-01	search	Nepal	7	0.0022
2016-12-01	search	Netherlands	36	0.0115
2016-12-01	search	New Zealand	7	0.0022
2016-12-01	search	Nicaragua	1	3e-04
2016-12-01	search	Nigeria	7	0.0022
2016-12-01	search	Norway	11	0.0035
2016-12-01	search	Other	4	0.0013
2016-12-01	search	Pakistan	14	0.0045
2016-12-01	search	Panama	3	0.001
2016-12-01	search	Peru	4	0.0013
2016-12-01	search	Philippines	24	0.0076
2016-12-01	search	Poland	13	0.0041
2016-12-01	search	Portugal	6	0.0019
2016-12-01	search	Qatar	2	6e-04
2016-12-01	search	Romania	4	0.0013
2016-12-01	search	Russian Federation	34	0.0108
2016-12-01	search	Saudi Arabia	4	0.0013
2016-12-01	search	Serbia	2	6e-04
2016-12-01	search	Singapore	13	0.0041
2016-12-01	search	Sint Maarten (Dutch part)	1	3e-04
2016-12-01	search	Slovakia	3	0.001
2016-12-01	search	Somalia	2	6e-04
2016-12-01	search	South Africa	8	0.0025
2016-12-01	search	Spain	18	0.0057
2016-12-01	search	Suriname	1	3e-04
2016-12-01	search	Swaziland	1	3e-04
2016-12-01	search	Sweden	25	0.008
2016-12-01	search	Switzerland	12	0.0038
2016-12-01	search	Taiwan, Province of China	4	0.0013
2016-12-01	search	Tanzania, United Republic of	2	6e-04
2016-12-01	search	Thailand	6	0.0019
2016-12-01	search	Timor-Leste	1	3e-04
2016-12-01	search	Tunisia	2	6e-04
2016-12-01	search	Turkey	6	0.0019
2016-12-01	search	Ukraine	10	0.0032
2016-12-01	search	United Arab Emirates	8	0.0025
2016-12-01	search	United Kingdom	198	0.0631
2016-12-01	search	U.S. (Midwest)	355	0.1131
2016-12-01	search	U.S. (Northeast)	429	0.1367
2016-12-01	search	U.S. (Other)	2	6e-04
2016-12-01	search	U.S. (Pacific)	287	0.0914
2016-12-01	search	U.S. (South)	666	0.2122
2016-12-01	search	U.S. (West)	132	0.0421
2016-12-01	search	Uzbekistan	1	3e-04
2016-12-01	search	Venezuela, Bolivarian Republic of	3	0.001
2016-12-01	search	Viet Nam	2	6e-04
2016-12-01	secondary links	Argentina	1	0.0303
2016-12-01	secondary links	Bangladesh	3	0.0909
2016-12-01	secondary links	Barbados	2	0.0606
2016-12-01	secondary links	Czech Republic	2	0.0606
2016-12-01	secondary links	Georgia	1	0.0303
2016-12-01	secondary links	Germany	2	0.0606
2016-12-01	secondary links	Guinea	1	0.0303
2016-12-01	secondary links	India	7	0.2121
2016-12-01	secondary links	Morocco	3	0.0909
2016-12-01	secondary links	Nigeria	1	0.0303
2016-12-01	secondary links	Serbia	1	0.0303
2016-12-01	secondary links	South Africa	5	0.1515
2016-12-01	secondary links	Thailand	1	0.0303
2016-12-01	secondary links	U.S. (Midwest)	1	0.0303
2016-12-01	secondary links	U.S. (Northeast)	1	0.0303
2016-12-01	secondary links	U.S. (West)	1	0.0303
2016-12-01	NA	Afghanistan	1	1e-04
2016-12-01	NA	Åland Islands	1	1e-04
2016-12-01	NA	Albania	5	7e-04
2016-12-01	NA	Algeria	34	0.0049
2016-12-01	NA	Angola	123	0.0176
2016-12-01	NA	Argentina	30	0.0043
2016-12-01	NA	Armenia	7	0.001
2016-12-01	NA	Australia	88	0.0126
2016-12-01	NA	Austria	31	0.0044
2016-12-01	NA	Azerbaijan	6	9e-04
2016-12-01	NA	Bahrain	1	1e-04
2016-12-01	NA	Bangladesh	25	0.0036
2016-12-01	NA	Barbados	3	4e-04
2016-12-01	NA	Belarus	12	0.0017
2016-12-01	NA	Belgium	28	0.004
2016-12-01	NA	Belize	1	1e-04
2016-12-01	NA	Benin	2	3e-04
2016-12-01	NA	Bolivia, Plurinational State of	1	1e-04
2016-12-01	NA	Bosnia and Herzegovina	2	3e-04
2016-12-01	NA	Botswana	2	3e-04
2016-12-01	NA	Brazil	79	0.0113
2016-12-01	NA	Bulgaria	13	0.0019
2016-12-01	NA	Burundi	1	1e-04
2016-12-01	NA	Cambodia	5	7e-04
2016-12-01	NA	Cameroon	5	7e-04
2016-12-01	NA	Canada	218	0.0311
2016-12-01	NA	Cayman Islands	1	1e-04
2016-12-01	NA	Chile	20	0.0029
2016-12-01	NA	China	109	0.0156
2016-12-01	NA	Colombia	37	0.0053
2016-12-01	NA	Congo	1	1e-04
2016-12-01	NA	Costa Rica	5	7e-04
2016-12-01	NA	Côte d'Ivoire	3	4e-04
2016-12-01	NA	Croatia	4	6e-04
2016-12-01	NA	Cuba	5	7e-04
2016-12-01	NA	Cyprus	1	1e-04
2016-12-01	NA	Czech Republic	35	0.005
2016-12-01	NA	Denmark	18	0.0026
2016-12-01	NA	Dominica	1	1e-04
2016-12-01	NA	Dominican Republic	8	0.0011
2016-12-01	NA	Ecuador	6	9e-04
2016-12-01	NA	Egypt	22	0.0031
2016-12-01	NA	El Salvador	4	6e-04
2016-12-01	NA	Estonia	4	6e-04
2016-12-01	NA	Ethiopia	4	6e-04
2016-12-01	NA	Fiji	1	1e-04
2016-12-01	NA	Finland	20	0.0029
2016-12-01	NA	France	83	0.0119
2016-12-01	NA	Georgia	12	0.0017
2016-12-01	NA	Germany	286	0.0408
2016-12-01	NA	Ghana	6	9e-04
2016-12-01	NA	Greece	24	0.0034
2016-12-01	NA	Grenada	1	1e-04
2016-12-01	NA	Guatemala	5	7e-04
2016-12-01	NA	Guernsey	1	1e-04
2016-12-01	NA	Guinea	2	3e-04
2016-12-01	NA	Haiti	4	6e-04
2016-12-01	NA	Honduras	2	3e-04
2016-12-01	NA	Hong Kong	27	0.0039
2016-12-01	NA	Hungary	18	0.0026
2016-12-01	NA	Iceland	4	6e-04
2016-12-01	NA	India	218	0.0311
2016-12-01	NA	Indonesia	49	0.007
2016-12-01	NA	Iran, Islamic Republic of	28	0.004
2016-12-01	NA	Iraq	11	0.0016
2016-12-01	NA	Ireland	19	0.0027
2016-12-01	NA	Israel	39	0.0056
2016-12-01	NA	Italy	49	0.007
2016-12-01	NA	Jamaica	10	0.0014
2016-12-01	NA	Japan	23	0.0033
2016-12-01	NA	Jersey	2	3e-04
2016-12-01	NA	Jordan	3	4e-04
2016-12-01	NA	Kazakhstan	11	0.0016
2016-12-01	NA	Kenya	13	0.0019
2016-12-01	NA	Korea, Republic of	27	0.0039
2016-12-01	NA	Kuwait	3	4e-04
2016-12-01	NA	Kyrgyzstan	1	1e-04
2016-12-01	NA	Latvia	4	6e-04
2016-12-01	NA	Lebanon	2	3e-04
2016-12-01	NA	Libya	1	1e-04
2016-12-01	NA	Lithuania	6	9e-04
2016-12-01	NA	Luxembourg	7	0.001
2016-12-01	NA	Macao	3	4e-04
2016-12-01	NA	Macedonia, Republic of	7	0.001
2016-12-01	NA	Madagascar	3	4e-04
2016-12-01	NA	Malaysia	38	0.0054
2016-12-01	NA	Maldives	1	1e-04
2016-12-01	NA	Mali	2	3e-04
2016-12-01	NA	Malta	2	3e-04
2016-12-01	NA	Mauritius	1	1e-04
2016-12-01	NA	Mexico	61	0.0087
2016-12-01	NA	Moldova, Republic of	2	3e-04
2016-12-01	NA	Mongolia	3	4e-04
2016-12-01	NA	Montenegro	1	1e-04
2016-12-01	NA	Morocco	56	0.008
2016-12-01	NA	Myanmar	7	0.001
2016-12-01	NA	Nepal	15	0.0021
2016-12-01	NA	Netherlands	81	0.0116
2016-12-01	NA	New Zealand	14	0.002
2016-12-01	NA	Nicaragua	2	3e-04
2016-12-01	NA	Niger	1	1e-04
2016-12-01	NA	Nigeria	31	0.0044
2016-12-01	NA	Norway	26	0.0037
2016-12-01	NA	Oman	7	0.001
2016-12-01	NA	Other	9	0.0013
2016-12-01	NA	Pakistan	46	0.0066
2016-12-01	NA	Palestine, State of	1	1e-04
2016-12-01	NA	Panama	7	0.001
2016-12-01	NA	Paraguay	2	3e-04
2016-12-01	NA	Peru	9	0.0013
2016-12-01	NA	Philippines	61	0.0087
2016-12-01	NA	Poland	37	0.0053
2016-12-01	NA	Portugal	15	0.0021
2016-12-01	NA	Qatar	2	3e-04
2016-12-01	NA	Romania	15	0.0021
2016-12-01	NA	Russian Federation	137	0.0196
2016-12-01	NA	Rwanda	1	1e-04
2016-12-01	NA	Saudi Arabia	14	0.002
2016-12-01	NA	Senegal	4	6e-04
2016-12-01	NA	Serbia	10	0.0014
2016-12-01	NA	Singapore	30	0.0043
2016-12-01	NA	Sint Maarten (Dutch part)	1	1e-04
2016-12-01	NA	Slovakia	8	0.0011
2016-12-01	NA	Slovenia	2	3e-04
2016-12-01	NA	Somalia	2	3e-04
2016-12-01	NA	South Africa	32	0.0046
2016-12-01	NA	Spain	67	0.0096
2016-12-01	NA	Sri Lanka	2	3e-04
2016-12-01	NA	Sudan	4	6e-04
2016-12-01	NA	Suriname	1	1e-04
2016-12-01	NA	Swaziland	1	1e-04
2016-12-01	NA	Sweden	49	0.007
2016-12-01	NA	Switzerland	50	0.0071
2016-12-01	NA	Syrian Arab Republic	1	1e-04
2016-12-01	NA	Taiwan, Province of China	17	0.0024
2016-12-01	NA	Tanzania, United Republic of	7	0.001
2016-12-01	NA	Thailand	35	0.005
2016-12-01	NA	Timor-Leste	2	3e-04
2016-12-01	NA	Trinidad and Tobago	2	3e-04
2016-12-01	NA	Tunisia	10	0.0014
2016-12-01	NA	Turkey	23	0.0033
2016-12-01	NA	Ukraine	31	0.0044
2016-12-01	NA	United Arab Emirates	9	0.0013
2016-12-01	NA	United Kingdom	523	0.0747
2016-12-01	NA	Uruguay	5	7e-04
2016-12-01	NA	U.S. (Midwest)	612	0.0874
2016-12-01	NA	U.S. (Northeast)	730	0.1042
2016-12-01	NA	U.S. (Other)	6	9e-04
2016-12-01	NA	U.S. (Pacific)	613	0.0875
2016-12-01	NA	U.S. (South)	1092	0.1559
2016-12-01	NA	U.S. (West)	218	0.0311
2016-12-01	NA	Uzbekistan	3	4e-04
2016-12-01	NA	Venezuela, Bolivarian Republic of	9	0.0013
2016-12-01	NA	Viet Nam	29	0.0041
2016-12-01	NA	Virgin Islands, British	1	1e-04
2016-12-01	NA	Yemen	3	4e-04
2016-12-01	NA	Zambia	2	3e-04
2016-12-01	NA	Zimbabwe	4	6e-04

Reverting working directory to "/home/bearloga/source/golden"

It took 4s to generate this report.

Report 29 of 49

  1. Executing report "dwell_metrics" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh dwell_metrics 2016-12-01 2016-12-02

Output:

Warning message:
In .doLoadActions(where, attach) :
  trying to execute load actions without 'methods' package
date	Median	95th percentile	99th percentile
2016-12-01	8	205	773

Reverting working directory to "/home/bearloga/source/golden"

It took 3s to generate this report.

Report 30 of 49

  1. Executing report "country_data" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh country_data 2016-12-01 2016-12-02

Output:

Warning message:
In .doLoadActions(where, attach) :
  trying to execute load actions without 'methods' package
date	country	events
2016-12-01	U.S. (West)	435
2016-12-01	U.S. (South)	2269
2016-12-01	U.S. (Pacific)	1199
2016-12-01	U.S. (Other)	9
2016-12-01	U.S. (Northeast)	1490
2016-12-01	U.S. (Midwest)	1243
2016-12-01	United Kingdom	894
2016-12-01	Russia	225
2016-12-01	Philippines	114
2016-12-01	Other	4123
2016-12-01	India	396
2016-12-01	Germany	510
2016-12-01	France	126
2016-12-01	China	310
2016-12-01	Canada	510
2016-12-01	Australia	162

Reverting working directory to "/home/bearloga/source/golden"

It took 3s to generate this report.

Report 31 of 49

  1. Executing report "clickthrough_sisterprojects" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh clickthrough_sisterprojects 2016-12-01 2016-12-02

Output:

Warning message:
In .doLoadActions(where, attach) :
  trying to execute load actions without 'methods' package
date	destination	users	clicks
2016-12-01	commons.wikimedia.org	8	8
2016-12-01	mediawiki.org	6	7
2016-12-01	meta.wikimedia.org	4	5
2016-12-01	wikibooks.org	6	8
2016-12-01	wikidata.org	3	3
2016-12-01	wikimediafoundation.org	2	6
2016-12-01	wikinews.org	1	2
2016-12-01	wikiquote.org	1	1
2016-12-01	wikisource.org	1	1
2016-12-01	wikivoyage.org	2	2
2016-12-01	wiktionary.org	7	8

Reverting working directory to "/home/bearloga/source/golden"

It took 3s to generate this report.

Report 32 of 49

  1. Executing report "clickthrough_rate" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh clickthrough_rate 2016-12-01 2016-12-02

Output:

Warning message:
In .doLoadActions(where, attach) :
  trying to execute load actions without 'methods' package
date	type	events
2016-12-01	clickthrough	5227
2016-12-01	landing	8676

Reverting working directory to "/home/bearloga/source/golden"

It took 3s to generate this report.

Report 33 of 49

  1. Executing report "clickthrough_firstvisit" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh clickthrough_firstvisit 2016-12-01 2016-12-02

Output:

Warning message:
In .doLoadActions(where, attach) :
  trying to execute load actions without 'methods' package
date	no action	primary links	search	secondary links	other languagesother projects
2016-12-01	0.6218	0.0935	0.2787	0.0029	0	0.0031

Reverting working directory to "/home/bearloga/source/golden"

It took 3s to generate this report.

Report 34 of 49

  1. Executing report "clickthrough_breakdown" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh clickthrough_breakdown 2016-12-01 2016-12-02

Output:

Warning message:
In .doLoadActions(where, attach) :
  trying to execute load actions without 'methods' package
date	section_used	events
2016-12-01	no action	3069
2016-12-01	other projects	26
2016-12-01	primary links	996
2016-12-01	search	2906
2016-12-01	secondary links	23

Reverting working directory to "/home/bearloga/source/golden"

It took 3s to generate this report.

Report 35 of 49

  1. Executing report "all_country_data" from the metrics/portal module.
  2. Setting working directory to "modules/metrics/portal"
  3. About to run the following command: sh all_country_data 2016-12-01 2016-12-02

Output:

Warning message:
In .doLoadActions(where, attach) :
  trying to execute load actions without 'methods' package
date	country	events	ctr	n_visit	ctr_visit	n_session	ctr_session
2016-12-01	Zimbabwe	4	0	4	0	4	0
2016-12-01	Zambia	4	0	4	0	2	0
2016-12-01	Yemen	3	0	3	0	3	0
2016-12-01	Virgin Islands, British	2	0.5	1	1	1	1
2016-12-01	Viet Nam	44	0.1818	32	0.25	29	0.2759
2016-12-01	Venezuela, Bolivarian Republic of	17	0.2941	12	0.4167	9	0.5556
2016-12-01	Uzbekistan	4	0.25	3	0.3333	3	0.3333
2016-12-01	U.S. (West)	435	0.4184	256	0.707	219	0.7671
2016-12-01	U.S. (South)	2269	0.4156	1330	0.7	1093	0.7383
2016-12-01	U.S. (Pacific)	1199	0.3686	762	0.5669	615	0.6065
2016-12-01	U.S. (Other)	9	0.3333	6	0.5	6	0.5
2016-12-01	U.S. (Northeast)	1490	0.4128	877	0.691	730	0.7397
2016-12-01	U.S. (Midwest)	1243	0.4095	739	0.6834	614	0.7329
2016-12-01	Uruguay	13	0.2308	10	0.3	5	0.6
2016-12-01	United Kingdom	894	0.3289	596	0.4866	523	0.4895
2016-12-01	United Arab Emirates	20	0.45	11	0.7273	9	0.8889
2016-12-01	Ukraine	53	0.283	37	0.3784	31	0.3871
2016-12-01	Turkey	35	0.2857	25	0.36	23	0.3478
2016-12-01	Tunisia	23	0.3043	15	0.4667	10	0.5
2016-12-01	Trinidad and Tobago	5	0.4	4	0.5	2	1
2016-12-01	Timor-Leste	34	0.4706	18	0.5556	2	1
2016-12-01	Thailand	59	0.2373	44	0.2727	35	0.2571
2016-12-01	Tanzania, United Republic of	10	0.2	8	0.25	0.2857
2016-12-01	Taiwan, Province of China	32	0.3125	22	0.4545	17	0.4706
2016-12-01	Syrian Arab Republic	1	0	1	0	1	0
2016-12-01	Switzerland	99	0.2727	72	0.375	50	0.5
2016-12-01	Sweden	103	0.4272	57	0.7544	49	0.7959
2016-12-01	Swaziland	2	0.5	1	1	1	1
2016-12-01	Suriname	4	0.5	2	1	1	1
2016-12-01	Sudan	4	0	4	0	4	0
2016-12-01	Sri Lanka	3	0	3	0	2	0
2016-12-01	Spain	111	0.2793	78	0.3846	67	0.403
2016-12-01	South Africa	51	0.2941	36	0.3611	32	0.4062
2016-12-01	Somalia	4	0.5	2	1	2	1
2016-12-01	Slovenia	2	0	2	0	2	0
2016-12-01	Slovakia	14	0.4286	8	0.75	8	0.75
2016-12-01	Sint Maarten (Dutch part)	2	0.5	1	1	1
2016-12-01	Singapore	53	0.3774	33	0.6061	30	0.6333
2016-12-01	Serbia	18	0.2778	11	0.4545	10	0.5
2016-12-01	Senegal	17	0.3529	11	0.5455	4	0.5
2016-12-01	Saudi Arabia	27	0.3704	16	0.4375	14	0.3571
2016-12-01	Rwanda	1	0	1	0	1	0
2016-12-01	Russian Federation	225	0.3022	155	0.4129	138	0.4203
2016-12-01	Romania	29	0.3448	18	0.5556	15	0.5333
2016-12-01	Qatar	5	0.4	3	0.6667	2	1
2016-12-01	Portugal	37	0.4054	22	0.6818	15	0.7333
2016-12-01	Poland	79	0.4051	47	0.6809	37	0.7568
2016-12-01	Philippines	114	0.3596	73	0.5479	62	0.5968
2016-12-01	Peru	24	0.375	15	0.6	9	0.5556
2016-12-01	Paraguay	4	0	4	0	2	0
2016-12-01	Panama	14	0.3571	9	0.5556	7	0.7143
2016-12-01	Palestine, State of	1	0	1	0	1	0
2016-12-01	Pakistan	85	0.2824	62	0.371	46	0.4348
2016-12-01	Other	16	0.3125	11	0.4545	9	0.4444
2016-12-01	Oman	11	0.2727	7	0.2857	7	0.2857
2016-12-01	Norway	47	0.383	30	0.5667	26	0.6154
2016-12-01	Nigeria	50	0.24	38	0.3158	31	0.3871
2016-12-01	Niger	3	0.3333	1	1	1	1
2016-12-01	Nicaragua	4	0.5	2	1	2	1
2016-12-01	New Zealand	40	0.45	23	0.6957	14	0.7857
2016-12-01	Netherlands	276	0.442	156	0.7436	81	0.716
2016-12-01	Nepal	30	0.3667	21	0.4286	15	0.6
2016-12-01	Myanmar	11	0.1818	9	0.2222	7	0.2857
2016-12-01	Morocco	185	0.3135	117	0.4872	56	0.6786
2016-12-01	Montenegro	2	0.5	1	1	1	1
2016-12-01	Mongolia	9	0.3333	5	0.6	3	1
2016-12-01	Moldova, Republic of	8	0.25	5	0.4	2	0.5
2016-12-01	Mexico	101	0.297	71	0.4225	62	0.4032
2016-12-01	Mauritius	4	0.5	2	1	1	1
2016-12-01	Malta	7	0.5714	3	0.6667	2	0.5
2016-12-01	Mali	4	0	4	0	2	0
2016-12-01	Maldives	2	0.5	1	1	1	1
2016-12-01	Malaysia	65	0.3231	43	0.4651	38	0.5
2016-12-01	Madagascar	8	0.5	4	1	3	1
2016-12-01	Macedonia, Republic of	16	0.375	9	0.6667	7	0.7143
2016-12-01	Macao	7	0.4286	4	0.75	3	0.6667
2016-12-01	Luxembourg	16	0.3125	11	0.4545	7	0.5714
2016-12-01	Lithuania	14	0.5	7	1	6	1
2016-12-01	Libya	2	0	2	0	1	0
2016-12-01	Lebanon	4	0	4	0	2	0
2016-12-01	Latvia	7	0.4286	4	0.75	4	0.75
2016-12-01	Kyrgyzstan	2	0.5	1	1	1	1
2016-12-01	Kuwait	9	0.4444	5	0.8	3	0.6667
2016-12-01	Korea, Republic of	62	0.3226	41	0.4878	27	0.5926
2016-12-01	Kenya	27	0.4074	17	0.4118	13	0.3846
2016-12-01	Kazakhstan	18	0.2778	13	0.3846	11	0.4545
2016-12-01	Jordan	4	0	4	0	3	0
2016-12-01	Jersey	3	0.3333	2	0.5	2	0.5
2016-12-01	Japan	41	0.2927	28	0.4286	24	0.4583
2016-12-01	Jamaica	21	0.4286	14	0.5714	11	0.6364
2016-12-01	Italy	94	0.3404	63	0.5079	49	0.4694
2016-12-01	Israel	46	0.1304	40	0.15	39	0.1282
2016-12-01	Ireland	35	0.3143	24	0.4583	19	0.5263
2016-12-01	Iraq	26	0.3077	19	0.4211	12	0.4167
2016-12-01	Iran, Islamic Republic of	45	0.3111	31	0.4516	28	0.5
2016-12-01	Indonesia	82	0.3415	53	0.3962	49	0.4286
2016-12-01	India	396	0.2854	280	0.4036	218	0.4679
2016-12-01	Iceland	9	0.3333	6	0.5	4	0.75
2016-12-01	Hungary	38	0.3684	24	0.5833	18	0.7778
2016-12-01	Hong Kong	47	0.2766	33	0.3939	27	0.4444
2016-12-01	Honduras	5	0.4	3	0.6667	2	1
2016-12-01	Haiti	9	0.2222	7	0.2857	4	0.5
2016-12-01	Guinea	10	0.4	5	0.8	2	1
2016-12-01	Guernsey	2	0.5	1	1	1	1
2016-12-01	Guatemala	10	0.4	6	0.6667	5	0.6
2016-12-01	Grenada	1	0	1	0	1	0
2016-12-01	Greece	39	0.2564	28	0.3571	24	0.4167
2016-12-01	Ghana	10	0.2	8	0.25	6	0.3333
2016-12-01	Germany	510	0.3451	325	0.5292	289	0.5467
2016-12-01	Georgia	25	0.36	15	0.6	12	0.6667
2016-12-01	France	126	0.2937	88	0.4205	83	0.4217
2016-12-01	Finland	36	0.3889	22	0.6364	20	0.7
2016-12-01	Fiji	2	0.5	1	1	1	1
2016-12-01	Ethiopia	6	0.3333	4	0.25	4	0.25
2016-12-01	Estonia	7	0.4286	4	0.75	4	0.75
2016-12-01	El Salvador	9	0.2222	7	0.2857	4	0.5
2016-12-01	Egypt	42	0.3095	28	0.4286	23	0.3913
2016-12-01	Ecuador	10	0.2	8	0.25	6	0.3333
2016-12-01	Dominican Republic	13	0.3077	9	0.4444	8	0.5
2016-12-01	Dominica	1	0	1	0	1	0
2016-12-01	Denmark	37	0.4324	21	0.7619	18	0.7778
2016-12-01	Czech Republic	72	0.375	43	0.6279	35	0.6857
2016-12-01	Cyprus	3	0.6667	1	1	1	1
2016-12-01	Cuba	18	0.5	10	0.9	6	1
2016-12-01	Croatia	8	0.25	5	0.4	4	0.5
2016-12-01	Côte d'Ivoire	4	0.25	3	0.3333	3	0.3333
2016-12-01	Costa Rica	19	0.2632	11	0.4545	5	0.6
2016-12-01	Congo	1	0	1	0	1	0
2016-12-01	Colombia	53	0.1509	45	0.1778	37	0.1892
2016-12-01	China	310	0.4581	164	0.5976	110	0.6818
2016-12-01	Chile	32	0.3438	23	0.4783	20	0.55
2016-12-01	Cayman Islands	2	0.5	1	1	1	1
2016-12-01	Canada	510	0.4157	301	0.6877	218	0.6927
2016-12-01	Cameroon	8	0.25	6	0.3333	5	0.4
2016-12-01	Cambodia	10	0.2	8	0.25	5	0.2
2016-12-01	Burundi	4	0.5	2	1	1	1
2016-12-01	Bulgaria	22	0.2727	16	0.375	13	0.3846
2016-12-01	Brazil	142	0.3239	97	0.4536	79	0.5063
2016-12-01	Botswana	5	0.4	3	0.6667	2	1
2016-12-01	Bosnia and Herzegovina	2	0	2	0	2	0
2016-12-01	Bolivia, Plurinational State of	5	0.2	4	0.25	1
2016-12-01	Benin	4	0	4	0	2	0
2016-12-01	Belize	3	0.3333	2	0.5	1	1
2016-12-01	Belgium	56	0.3929	32	0.6562	28	0.6786
2016-12-01	Belarus	17	0.2353	13	0.3077	12	0.3333
2016-12-01	Barbados	8	0.5	4	1	3	1
2016-12-01	Bangladesh	46	0.3478	30	0.3667	25	0.4
2016-12-01	Bahrain	1	0	1	0	1	0
2016-12-01	Azerbaijan	9	0.2222	6	0.3333	6	0.3333
2016-12-01	Austria	59	0.4237	34	0.7353	31	0.7419
2016-12-01	Australia	162	0.358	103	0.5534	88	0.5568
2016-12-01	Armenia	12	0.4167	7	0.7143	7	0.7143
2016-12-01	Argentina	66	0.3939	42	0.5476	30	0.6667
2016-12-01	Angola	350	0.38	208	0.5529	123	0.5935
2016-12-01	Algeria	80	0.3125	50	0.36	34	0.3824
2016-12-01	Albania	7	0.2857	5	0.4	5	0.4
2016-12-01	Åland Islands	2	0.5	1	1	1	1
2016-12-01	Afghanistan	5	0.4	3	0.6667	1	1

Reverting working directory to "/home/bearloga/source/golden"

It took 4s to generate this report.

Report 36 of 49

  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:
SELECT
  DATE('20161201') AS date,
  event_feature AS feature,
  COUNT(DISTINCT(event_userToken)) AS users
FROM GeoFeatures_12914994
WHERE timestamp >= '20161201' AND timestamp < '20161202'
GROUP BY date, feature;

Output:

date	feature	users
2016-12-01	GeoHack	42705
2016-12-01	WIWOSM	1815
2016-12-01	WikiMiniAtlas	2064
2016-12-01	Wikivoyage	209

It took 5m 30s to generate this report.

Report 37 of 49

  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:
SELECT
  DATE('20161201') AS date,
  event_feature AS feature,
  event_action AS action,
  COUNT(*) AS events
FROM GeoFeatures_12914994
WHERE timestamp >= '20161201' AND timestamp < '20161202'
GROUP BY date, feature, action;

Output:

date	feature	action	events
2016-12-01	GeoHack	open	55477
2016-12-01	WIWOSM	close	1128
2016-12-01	WIWOSM	interaction	719
2016-12-01	WIWOSM	open	440
2016-12-01	WikiMiniAtlas	close	1628
2016-12-01	WikiMiniAtlas	interaction	950
2016-12-01	WikiMiniAtlas	open	2355
2016-12-01	Wikivoyage	interaction	165
2016-12-01	Wikivoyage	view	54

It took 17s to generate this report.

Report 38 of 49

  1. Executing report "users_by_country" from the metrics/maps module.
  2. Setting working directory to "modules/metrics/maps"
  3. About to run the following command: sh users_by_country 2016-12-01 2016-12-02

Output:

date	country	users
2016-12-01	DE	4944
2016-12-01	ES	13257
2016-12-01	FR	3781
2016-12-01	GB	3851
2016-12-01	IN	3941
2016-12-01	IT	4569
2016-12-01	Other	222401
2016-12-01	RU	5798
2016-12-01	UA	1550
2016-12-01	US	14720

Reverting working directory to "/home/bearloga/source/golden"

It took 2m 14s to generate this report.

Report 39 of 49

  1. Executing report "tile_aggregates_with_automata" from the metrics/maps module.
  2. Setting working directory to "modules/metrics/maps"
  3. About to run the following command: sh tile_aggregates_with_automata 2016-12-01 2016-12-02

Output:

date	style	zoom	scale	format	cache	users	total	average	median	percentile95	percentile99
2016-12-01	osm-intl	0	1	png	hit	679	992	11
2016-12-01	osm-intl	0	1.5	png	hit	16	17	2
2016-12-01	osm-intl	0	2	png	hit	29	87	43
2016-12-01	osm-intl	0	3	png	hit	3	6	4
2016-12-01	osm-intl	1	1	png	hit	1068	4341	12
2016-12-01	osm-intl	1	1.5	png	hit	13	49	6
2016-12-01	osm-intl	1	2	png	hit	27	124	14
2016-12-01	osm-intl	10	1	png	hit	11746	290695	25	12	75	162
2016-12-01	osm-intl	10	1	png	miss	5686	54072	10	4	27	71
2016-12-01	osm-intl	10	1	png	pass	40	61	8
2016-12-01	osm-intl	10	1.3	png	miss	39	872	22	9	82	174
2016-12-01	osm-intl	10	1.5	png	hit	26	277	11	9	18	23
2016-12-01	osm-intl	10	1.5	png	miss	47	832	18	9	42	164
2016-12-01	osm-intl	10	2	png	hit	93	1146	12	8	37	56
2016-12-01	osm-intl	10	2	png	miss	101	1145	11	8	28	69
2016-12-01	osm-intl	10	2.6	png	hit	6	11	5
2016-12-01	osm-intl	10	3	png	hit	22	291	13	12	27	54
2016-12-01	osm-intl	10	3	png	miss	41	385	24	27
2016-12-01	osm-intl	11	1	png	hit	14224	295801	21	10	60	143
2016-12-01	osm-intl	11	1	png	miss	8637	118510	14	5	28	74
2016-12-01	osm-intl	11	1	png	pass	50	77	10
2016-12-01	osm-intl	11	1.3	png	miss	51	892	17	9	47	89
2016-12-01	osm-intl	11	1.5	png	hit	29	249	22	33
2016-12-01	osm-intl	11	1.5	png	miss	61	782	13	8	35	50
2016-12-01	osm-intl	11	1.5	png	pass	2	2	1
2016-12-01	osm-intl	11	2	png	hit	111	1180	11	7	22	67
2016-12-01	osm-intl	11	2	png	miss	124	1630	13	9	40	75
2016-12-01	osm-intl	11	2.6	png	miss	4	34	12	12
2016-12-01	osm-intl	11	3	png	hit	37	579	16	7	45	155
2016-12-01	osm-intl	11	3	png	miss	53	723	14	8	21	164
2016-12-01	osm-intl	12	1	png	hit	50284	200052840	15	152	377
2016-12-01	osm-intl	12	1	png	miss	12484	156055	13	6	34	104
2016-12-01	osm-intl	12	1	png	pass	122	148	4
2016-12-01	osm-intl	12	1.3	png	hit	35	224	16	28
2016-12-01	osm-intl	12	1.3	png	miss	84	1199	14	9	52	80
2016-12-01	osm-intl	12	1.5	png	hit	38	251	17	25
2016-12-01	osm-intl	12	1.5	png	miss	91	1183	13	9	34	65
2016-12-01	osm-intl	12	2	png	hit	193	1689	24	35
2016-12-01	osm-intl	12	2	png	miss	232	2594	11	7	32	106
2016-12-01	osm-intl	12	3	png	hit	58	532	21	28
2016-12-01	osm-intl	12	3	png	miss	101	1258	12	10	30	74
2016-12-01	osm-intl	13	1	png	hit	67035	524132078	23	320	853
2016-12-01	osm-intl	13	1	png	miss	10411	203572	20	7	42	120
2016-12-01	osm-intl	13	1	png	pass	124	142	4
2016-12-01	osm-intl	13	1.3	png	hit	68	503	18	21
2016-12-01	osm-intl	13	1.3	png	miss	149	1667	11	6	36	63
2016-12-01	osm-intl	13	1.5	png	hit	64	337	16	27
2016-12-01	osm-intl	13	1.5	png	miss	151	1832	12	8	39	64
2016-12-01	osm-intl	13	2	png	hit	352	3967	11	8	27	73
2016-12-01	osm-intl	13	2	png	miss	425	5032	12	6	36	140
2016-12-01	osm-intl	13	2.6	png	miss	23	195	24	27
2016-12-01	osm-intl	13	3	png	hit	73	905	12	11	29	57
2016-12-01	osm-intl	13	3	png	miss	147	2220	15	12	39	103
2016-12-01	osm-intl	14	1	png	hit	86827	824132795	29	403	975
2016-12-01	osm-intl	14	1	png	miss	12758	343534	27	9	49	141
2016-12-01	osm-intl	14	1	png	pass	181	214	6
2016-12-01	osm-intl	14	1.3	png	hit	30	235	25	39
2016-12-01	osm-intl	14	1.3	png	miss	99	1521	15	7	46	95
2016-12-01	osm-intl	14	1.5	png	hit	36	213	16	22
2016-12-01	osm-intl	14	1.5	png	miss	97	1353	14	8	46	92
2016-12-01	osm-intl	14	2	png	hit	206	1922	29	69
2016-12-01	osm-intl	14	2	png	miss	244	2872	12	8	26	97
2016-12-01	osm-intl	14	2.6	png	hit	3	38	13	12	17	17
2016-12-01	osm-intl	14	2.6	png	miss	10	167	17	11	56	79
2016-12-01	osm-intl	14	3	png	hit	33	330	10	9	21	27
2016-12-01	osm-intl	14	3	png	miss	75	1014	14	10	25	109
2016-12-01	osm-intl	15	1	png	hit	121501	116550796	29	405	968
2016-12-01	osm-intl	15	1	png	miss	17272	486757	28	7	40	121
2016-12-01	osm-intl	15	1	png	pass	286	334	4
2016-12-01	osm-intl	15	1.3	png	hit	18	181	10	6	27	40
2016-12-01	osm-intl	15	1.3	png	miss	61	1138	19	9	56	78
2016-12-01	osm-intl	15	1.5	png	miss	58	1068	18	9	80	89
2016-12-01	osm-intl	15	2	png	hit	130	1180	30	54
2016-12-01	osm-intl	15	2	png	miss	192	2276	12	8	39	87
2016-12-01	osm-intl	15	3	png	miss	64	833	13	10	30	85
2016-12-01	osm-intl	16	1	png	hit	94260	679294372	23	299	698
2016-12-01	osm-intl	16	1	png	miss	11511	218925	19	6	52	149
2016-12-01	osm-intl	16	1	png	pass	338	389	3
2016-12-01	osm-intl	16	1.3	png	miss	30	791	26	10	79	155
2016-12-01	osm-intl	16	2	png	hit	38	432	11	9	30	44
2016-12-01	osm-intl	16	2	png	miss	82	1385	17	10	67	94
2016-12-01	osm-intl	16	2.6	png	miss	1	15	15	15	15	15
2016-12-01	osm-intl	16	3	png	hit	8	57	15	16
2016-12-01	osm-intl	16	3	png	miss	28	271	10	9	17	29
2016-12-01	osm-intl	17	1	png	hit	66782	392021159	24	224	491
2016-12-01	osm-intl	17	1	png	miss	14805	169213	11	4	39	107
2016-12-01	osm-intl	17	1	png	pass	497	530	3
2016-12-01	osm-intl	17	1.3	png	miss	30	973	32	25	83	100
2016-12-01	osm-intl	17	1.5	png	miss	28	626	22	21	50	76
2016-12-01	osm-intl	17	2	png	hit	14	276	20	9	59	62
2016-12-01	osm-intl	17	3	png	hit	4	34	15	15
2016-12-01	osm-intl	18	1	png	hit	39601	159171040	20	140	303
2016-12-01	osm-intl	18	1	png	miss	19498	214167	11	5	35	102
2016-12-01	osm-intl	18	1	png	pass	481	539	3
2016-12-01	osm-intl	18	1.3	png	miss	11	311	28	18	62	62
2016-12-01	osm-intl	18	1.5	png	hit	2	32	16	16	24	24
2016-12-01	osm-intl	18	1.5	png	miss	20	526	26	15	51	187
2016-12-01	osm-intl	18	2	png	hit	11	548	50	40	119	131
2016-12-01	osm-intl	18	2	png	miss	27	709	26	11	108	134
2016-12-01	osm-intl	18	3	png	hit	2	5	3
2016-12-01	osm-intl	18	3	png	miss	5	67	13	12	19	19
2016-12-01	osm-intl	2	1	png	hit	17796	382763	22	16	48	112
2016-12-01	osm-intl	2	1.3	png	hit	3	33	11	10	16	16
2016-12-01	osm-intl	2	1.5	png	miss	4	8	4
2016-12-01	osm-intl	2	3	png	miss	5	12	4
2016-12-01	osm-intl	3	1	png	hit	7160	180177	25	14	71	161
2016-12-01	osm-intl	3	1.5	png	hit	29	255	22	22
2016-12-01	osm-intl	3	2	png	hit	17	217	13	8	43	44
2016-12-01	osm-intl	3	2	png	miss	12	34	6
2016-12-01	osm-intl	3	3	png	miss	7	37	12	13
2016-12-01	osm-intl	4	1	png	hit	5254	96206	18	12	53	112
2016-12-01	osm-intl	4	1	png	miss	80	117	7
2016-12-01	osm-intl	4	1.3	png	hit	9	123	14	7	40	41
2016-12-01	osm-intl	4	1.5	png	hit	44	577	13	10	34	36
2016-12-01	osm-intl	4	1.5	png	miss	21	79	20
2016-12-01	osm-intl	4	2	png	hit	40	405	10	7	20	64
2016-12-01	osm-intl	4	2	png	miss	18	80	12	16
2016-12-01	osm-intl	4	3	png	hit	15	115	16	17
2016-12-01	osm-intl	4	3	png	miss	14	63	13	19
2016-12-01	osm-intl	5	1	png	hit	7578	148289	20	12	53	132
2016-12-01	osm-intl	5	1	png	miss	250	658	16
2016-12-01	osm-intl	5	1	png	pass	9	9	1
2016-12-01	osm-intl	5	1.3	png	hit	14	214	15	7	52	64
2016-12-01	osm-intl	5	1.3	png	miss	13	137	11	2	46	57
2016-12-01	osm-intl	5	1.5	png	hit	25	180	16	17
2016-12-01	osm-intl	5	2	png	hit	90	1479	16	9	57	115
2016-12-01	osm-intl	5	2	png	miss	36	216	13	52
2016-12-01	osm-intl	5	3	png	hit	13	107	21	25
2016-12-01	osm-intl	6	1	png	hit	9737	218375	22	12	51	116
2016-12-01	osm-intl	6	1	png	miss	644	3171	25
2016-12-01	osm-intl	6	1	png	pass	24	26	2
2016-12-01	osm-intl	6	1.3	png	hit	9	91	10	11	20	20
2016-12-01	osm-intl	6	1.3	png	miss	14	234	17	9	51	71
2016-12-01	osm-intl	6	1.5	png	hit	30	268	22	26
2016-12-01	osm-intl	6	1.5	png	miss	24	213	31	41
2016-12-01	osm-intl	6	2	png	hit	47	440	30	46
2016-12-01	osm-intl	6	2	png	miss	34	189	14	27
2016-12-01	osm-intl	6	2.6	png	miss	2	17	9
2016-12-01	osm-intl	6	3	png	hit	14	98	15	18
2016-12-01	osm-intl	6	3	png	miss	17	110	18	26
2016-12-01	osm-intl	7	1	png	hit	84637	153186118	12	48	120
2016-12-01	osm-intl	7	1	png	miss	1324	14013	11	2	11	29
2016-12-01	osm-intl	7	1	png	pass	41	42	2
2016-12-01	osm-intl	7	1.3	png	hit	16	215	13	12	31	33
2016-12-01	osm-intl	7	1.3	png	miss	19	248	13	8	39	40
2016-12-01	osm-intl	7	1.5	png	hit	27	205	17	20
2016-12-01	osm-intl	7	1.5	png	miss	28	333	12	6	45	72
2016-12-01	osm-intl	7	2	png	hit	56	725	13	9	37	48
2016-12-01	osm-intl	7	2	png	miss	47	369	21	37
2016-12-01	osm-intl	7	2.6	png	hit	2	17	13	13
2016-12-01	osm-intl	7	3	png	miss	22	176	15	39
2016-12-01	osm-intl	8	1	png	hit	14558	424808	29	20	79	171
2016-12-01	osm-intl	8	1	png	miss	2534	19917	10	25
2016-12-01	osm-intl	8	1	png	pass	35	54	12
2016-12-01	osm-intl	8	1.3	png	hit	22	352	16	8	43	51
2016-12-01	osm-intl	8	1.3	png	miss	28	412	15	9	47	54
2016-12-01	osm-intl	8	1.5	png	hit	30	302	10	9	22	31
2016-12-01	osm-intl	8	1.5	png	miss	30	344	11	7	34	70
2016-12-01	osm-intl	8	2	png	hit	60	664	11	8	32	46
2016-12-01	osm-intl	8	2	png	miss	58	532	26	46
2016-12-01	osm-intl	8	3	png	miss	31	244	17	18
2016-12-01	osm-intl	9	1	png	hit	14854	417975	28	16	80	171
2016-12-01	osm-intl	9	1	png	miss	4129	114724	28	3	21	54
2016-12-01	osm-intl	9	1	png	pass	68	83	3
2016-12-01	osm-intl	9	1.3	png	miss	27	643	24	9	72	104
2016-12-01	osm-intl	9	1.5	png	hit	21	216	10	10	24	26
2016-12-01	osm-intl	9	1.5	png	miss	35	431	12	9	32	66
2016-12-01	osm-intl	9	2	png	hit	65	725	11	6	34	46
2016-12-01	osm-intl	9	2	png	miss	73	785	11	6	22	68
2016-12-01	osm-intl	9	3	png	hit	12	136	11	9	25	36
2016-12-01	osm-intl	9	3	png	miss	24	215	17	24
2016-12-01	osm-intl	0	1.5	png	miss	1	1	1
2016-12-01	osm-intl	1	3	png	hit	4	16	8
2016-12-01	osm-intl	10	1.3	png	hit	20	302	15	10	37	59
2016-12-01	osm-intl	10	2.6	png	miss	9	50	12	13
2016-12-01	osm-intl	15	2.6	png	miss	7	118	17	9	51	63
2016-12-01	osm-intl	15	3	png	hit	24	253	11	9	24	24
2016-12-01	osm-intl	16	1.5	png	hit	12	142	12	13	24	24
2016-12-01	osm-intl	16	1.5	png	miss	48	799	17	10	52	73
2016-12-01	osm-intl	17	1.3	png	hit	4	35	19	19
2016-12-01	osm-intl	17	2	png	miss	56	1311	23	12	94	122
2016-12-01	osm-intl	17	3	png	miss	15	165	11	9	20	24
2016-12-01	osm-intl	2	1.3	png	miss	2	11	9
2016-12-01	osm-intl	2	1.5	png	hit	16	150	10	15	19
2016-12-01	osm-intl	2	2	png	hit	7	70	10	10	15	15
2016-12-01	osm-intl	3	1	png	miss	9	10	2
2016-12-01	osm-intl	3	1.3	png	hit	10	134	13	9	32	37
2016-12-01	osm-intl	4	1.3	png	miss	8	93	12	7	31	35
2016-12-01	osm-intl	5	1.5	png	miss	22	95	19	21
2016-12-01	osm-intl	5	3	png	miss	14	87	19	23
2016-12-01	osm-intl	7	2.6	png	miss	2	20	10	10	15	15
2016-12-01	osm-intl	7	3	png	hit	18	147	15	16
2016-12-01	osm-intl	8	2	png	pass	1	1	1
2016-12-01	osm-intl	8	3	png	hit	16	104	13	16
2016-12-01	osm-intl	1	2.6	png	miss	4	5	2
2016-12-01	osm-intl	11	1	json	miss	1	1	1
2016-12-01	osm-intl	11	1.3	png	hit	14	123	26	29
2016-12-01	osm-intl	12	2.6	png	miss	7	137	20	21	33	33
2016-12-01	osm-intl	15	1.5	png	hit	19	160	23	33
2016-12-01	osm-intl	16	1.3	png	hit	2	31	16	16	27	28
2016-12-01	osm-intl	18	2.6	png	miss	1	6	6
2016-12-01	osm-intl	2	2	png	miss	4	13	10
2016-12-01	osm-intl	3	1.5	png	miss	12	42	10	13
2016-12-01	osm-intl	3	3	png	hit	9	48	11	11
2016-12-01	osm-intl	4	1	png	pass	7	7	1
2016-12-01	osm-intl	8	2.6	png	miss	1	15	15	15	15	15
2016-12-01	osm-intl	9	1.3	png	hit	15	287	19	20	47	50
2016-12-01	osm-intl	1	1.3	png	hit	9	33	4
2016-12-01	osm-intl	10	3	png	pass	1	1	1
2016-12-01	osm-intl	13	1.3	png	pass	1	1	1
2016-12-01	osm-intl	2	3	png	hit	9	53	9
2016-12-01	osm-intl	3	1	png	pass	3	3	1
2016-12-01	osm-intl	3	1.3	png	miss	6	27	10	11
2016-12-01	osm-intl	1	3	png	miss	3	5	2
2016-12-01	osm-intl	13	1.5	png	pass	1	1	1
2016-12-01	osm-intl	13	2.6	png	hit	8	33	12	13
2016-12-01	osm-intl	15	1.3	png	pass	1	1	1
2016-12-01	osm-intl	15	2.6	png	hit	3	47	16	9	33	35
2016-12-01	osm-intl	2	1	png	pass	3	3	1
2016-12-01	osm-intl	1	1.3	png	miss	4	7	4
2016-12-01	osm-intl	12	2	png	pass	2	3	2
2016-12-01	osm-intl	5	2.6	png	miss	1	9	9
2016-12-01	osm-intl	9	2.6	png	hit	1	6	6
2016-12-01	osm-intl	1	2	png	miss	2	3	2
2016-12-01	osm-intl	10	2	png	pass	1	1	1
2016-12-01	osm-intl	12	3	png	pass	1	1	1
2016-12-01	osm-intl	16	2	png	pass	1	1	1
2016-12-01	osm-intl	18	1.3	png	hit	2	31	16	16	24	24
2016-12-01	osm-intl	7	1.5	png	pass	1	1	1
2016-12-01	osm-intl	1	1	png	miss	1	1	1
2016-12-01	osm-intl	1	1.5	png	miss	2	4	2
2016-12-01	osm-intl	1	2.6	png	hit	2	3	2
2016-12-01	osm-intl	17	1.5	png	hit	1	6	6
2016-12-01	osm-intl	9	1.5	png	pass	1	1	1
2016-12-01	osm-intl	17	2.6	png	miss	1	9	9
2016-12-01	osm-intl	8	1.3	png	pass	2	5	4
2016-12-01	osm-intl	0	1.3	png	miss	1	1	1
2016-12-01	osm-intl	0	3	png	miss	1	1	1
2016-12-01	osm-intl	13	2	png	pass	1	1	1
2016-12-01	osm-intl	9	2.6	png	miss	1	8	8
2016-12-01	osm-intl	12	2.6	png	pass	1	1	1
2016-12-01	osm-intl	2	1	png	miss	1	1	1
2016-12-01	osm-intl	12	1.3	png	pass	1	1	1
2016-12-01	osm-intl	15	2	png	pass	1	1	1

Reverting working directory to "/home/bearloga/source/golden"

It took 3m 36s to generate this report.

Report 40 of 49

  1. Executing report "tile_aggregates_no_automata" from the metrics/maps module.
  2. Setting working directory to "modules/metrics/maps"
  3. About to run the following command: sh tile_aggregates_no_automata 2016-12-01 2016-12-02

Output:

date	style	zoom	scale	format	cache	users	total	average	median	percentile95	percentile99
2016-12-01	osm-intl	0	1	png	hit	675	967	10
2016-12-01	osm-intl	0	1.5	png	hit	15	16	2
2016-12-01	osm-intl	0	2	png	hit	29	87	43
2016-12-01	osm-intl	0	3	png	hit	3	6	4
2016-12-01	osm-intl	1	1	png	hit	1065	4338	12
2016-12-01	osm-intl	1	1.5	png	hit	13	49	6
2016-12-01	osm-intl	1	2	png	hit	27	124	14
2016-12-01	osm-intl	10	1	png	hit	11721	290203	25	12	75	161
2016-12-01	osm-intl	10	1	png	miss	5675	53909	27	69
2016-12-01	osm-intl	10	1	png	pass	40	61	8
2016-12-01	osm-intl	10	1.3	png	miss	39	872	22	9	82	174
2016-12-01	osm-intl	10	1.5	png	hit	26	277	11	9	18	23
2016-12-01	osm-intl	10	1.5	png	miss	47	832	18	9	42	164
2016-12-01	osm-intl	10	2	png	hit	93	1146	12	8	37	56
2016-12-01	osm-intl	10	2	png	miss	101	1145	11	8	28	69
2016-12-01	osm-intl	10	2.6	png	hit	6	11	5
2016-12-01	osm-intl	10	3	png	hit	22	291	13	12	27	54
2016-12-01	osm-intl	10	3	png	miss	41	385	24	27
2016-12-01	osm-intl	11	1	png	hit	14198	294777	21	10	60	142
2016-12-01	osm-intl	11	1	png	miss	8623	117947	14	5	28	72
2016-12-01	osm-intl	11	1	png	pass	50	77	10
2016-12-01	osm-intl	11	1.3	png	miss	51	892	17	9	47	89
2016-12-01	osm-intl	11	1.5	png	hit	29	249	22	33
2016-12-01	osm-intl	11	1.5	png	miss	61	782	13	8	35	50
2016-12-01	osm-intl	11	1.5	png	pass	2	2	1
2016-12-01	osm-intl	11	2	png	hit	111	1180	11	7	22	67
2016-12-01	osm-intl	11	2	png	miss	124	1630	13	9	40	75
2016-12-01	osm-intl	11	2.6	png	miss	4	34	12	12
2016-12-01	osm-intl	11	3	png	hit	37	579	16	7	45	155
2016-12-01	osm-intl	11	3	png	miss	53	723	14	8	21	164
2016-12-01	osm-intl	12	1	png	hit	50242	199971240	15	152	377
2016-12-01	osm-intl	12	1	png	miss	12459	155383	12	6	34	103
2016-12-01	osm-intl	12	1	png	pass	122	148	4
2016-12-01	osm-intl	12	1.3	png	hit	35	224	16	28
2016-12-01	osm-intl	12	1.3	png	miss	84	1199	14	9	52	80
2016-12-01	osm-intl	12	1.5	png	hit	38	251	17	25
2016-12-01	osm-intl	12	1.5	png	miss	91	1183	13	9	34	65
2016-12-01	osm-intl	12	2	png	hit	193	1689	24	35
2016-12-01	osm-intl	12	2	png	miss	232	2594	11	7	32	106
2016-12-01	osm-intl	12	3	png	hit	58	532	21	28
2016-12-01	osm-intl	12	3	png	miss	101	1258	12	10	30	74
2016-12-01	osm-intl	13	1	png	hit	66998	524034978	23	320	853
2016-12-01	osm-intl	13	1	png	miss	10386	202652	20	7	42	120
2016-12-01	osm-intl	13	1	png	pass	124	142	4
2016-12-01	osm-intl	13	1.3	png	hit	68	503	18	21
2016-12-01	osm-intl	13	1.3	png	miss	149	1667	11	6	36	63
2016-12-01	osm-intl	13	1.5	png	hit	64	337	16	27
2016-12-01	osm-intl	13	1.5	png	miss	151	1832	12	8	39	64
2016-12-01	osm-intl	13	2	png	hit	352	3967	11	8	27	73
2016-12-01	osm-intl	13	2	png	miss	425	5032	12	6	36	140
2016-12-01	osm-intl	13	2.6	png	miss	20	186	25	27
2016-12-01	osm-intl	13	3	png	hit	73	905	12	11	29	57
2016-12-01	osm-intl	13	3	png	miss	147	2220	15	12	39	103
2016-12-01	osm-intl	14	1	png	hit	86800	823931295	29	403	975
2016-12-01	osm-intl	14	1	png	miss	12733	341461	27	9	49	140
2016-12-01	osm-intl	14	1	png	pass	180	213	6
2016-12-01	osm-intl	14	1.3	png	hit	30	235	25	39
2016-12-01	osm-intl	14	1.3	png	miss	99	1521	15	7	46	95
2016-12-01	osm-intl	14	1.5	png	hit	36	213	16	22
2016-12-01	osm-intl	14	1.5	png	miss	97	1353	14	8	46	92
2016-12-01	osm-intl	14	2	png	hit	206	1922	29	69
2016-12-01	osm-intl	14	2	png	miss	244	2872	12	8	26	97
2016-12-01	osm-intl	14	2.6	png	hit	3	38	13	12	17	17
2016-12-01	osm-intl	14	2.6	png	miss	9	166	18	12	59	79
2016-12-01	osm-intl	14	3	png	hit	33	330	10	9	21	27
2016-12-01	osm-intl	14	3	png	miss	75	1014	14	10	25	109
2016-12-01	osm-intl	15	1	png	hit	121428	116541396	29	406	969
2016-12-01	osm-intl	15	1	png	miss	17206	486074	28	7	40	120
2016-12-01	osm-intl	15	1	png	pass	286	334	4
2016-12-01	osm-intl	15	1.3	png	hit	18	181	10	6	27	40
2016-12-01	osm-intl	15	1.3	png	miss	61	1138	19	9	56	78
2016-12-01	osm-intl	15	1.5	png	miss	58	1068	18	9	80	89
2016-12-01	osm-intl	15	2	png	hit	130	1180	30	54
2016-12-01	osm-intl	15	2	png	miss	192	2276	12	8	39	87
2016-12-01	osm-intl	15	3	png	miss	64	833	13	10	30	85
2016-12-01	osm-intl	16	1	png	hit	93424	678513173	23	300	701
2016-12-01	osm-intl	16	1	png	miss	10861	212458	20	6	53	155
2016-12-01	osm-intl	16	1	png	pass	338	389	3
2016-12-01	osm-intl	16	1.3	png	miss	30	791	26	10	79	155
2016-12-01	osm-intl	16	2	png	hit	38	432	11	9	30	44
2016-12-01	osm-intl	16	2	png	miss	82	1385	17	10	67	94
2016-12-01	osm-intl	16	2.6	png	miss	1	15	15	15	15	15
2016-12-01	osm-intl	16	3	png	hit	8	57	15	16
2016-12-01	osm-intl	16	3	png	miss	28	271	10	9	17	29
2016-12-01	osm-intl	17	1	png	hit	66772	392013259	24	224	491
2016-12-01	osm-intl	17	1	png	miss	14788	169018	11	4	39	108
2016-12-01	osm-intl	17	1	png	pass	497	530	3
2016-12-01	osm-intl	17	1.3	png	miss	30	973	32	25	83	100
2016-12-01	osm-intl	17	1.5	png	miss	28	626	22	21	50	76
2016-12-01	osm-intl	17	2	png	hit	14	276	20	9	59	62
2016-12-01	osm-intl	17	3	png	hit	4	34	15	15
2016-12-01	osm-intl	18	1	png	hit	39598	159168440	20	140	304
2016-12-01	osm-intl	18	1	png	miss	19485	214022	11	5	35	102
2016-12-01	osm-intl	18	1	png	pass	481	539	3
2016-12-01	osm-intl	18	1.3	png	miss	11	311	28	18	62	62
2016-12-01	osm-intl	18	1.5	png	hit	2	32	16	16	24	24
2016-12-01	osm-intl	18	1.5	png	miss	20	526	26	15	51	187
2016-12-01	osm-intl	18	2	png	hit	11	548	50	40	119	131
2016-12-01	osm-intl	18	2	png	miss	27	709	26	11	108	134
2016-12-01	osm-intl	18	3	png	hit	2	5	3
2016-12-01	osm-intl	18	3	png	miss	5	67	13	12	19	19
2016-12-01	osm-intl	2	1	png	hit	17794	382741	22	16	48	112
2016-12-01	osm-intl	2	1.3	png	hit	3	33	11	10	16	16
2016-12-01	osm-intl	2	1.5	png	miss	4	8	4
2016-12-01	osm-intl	2	3	png	miss	5	12	4
2016-12-01	osm-intl	3	1	png	hit	7155	180141	25	14	71	161
2016-12-01	osm-intl	3	1.5	png	hit	29	255	22	22
2016-12-01	osm-intl	3	2	png	hit	17	217	13	8	43	44
2016-12-01	osm-intl	3	2	png	miss	12	34	6
2016-12-01	osm-intl	3	3	png	miss	7	37	12	13
2016-12-01	osm-intl	4	1	png	hit	5248	96120	18	12	53	113
2016-12-01	osm-intl	4	1	png	miss	80	117	7
2016-12-01	osm-intl	4	1.3	png	hit	9	123	14	7	40	41
2016-12-01	osm-intl	4	1.5	png	hit	44	577	13	10	34	36
2016-12-01	osm-intl	4	1.5	png	miss	21	79	20
2016-12-01	osm-intl	4	2	png	hit	40	405	10	7	20	64
2016-12-01	osm-intl	4	2	png	miss	18	80	12	16
2016-12-01	osm-intl	4	3	png	hit	15	115	16	17
2016-12-01	osm-intl	4	3	png	miss	14	63	13	19
2016-12-01	osm-intl	5	1	png	hit	7568	147247	19	12	53	131
2016-12-01	osm-intl	5	1	png	miss	249	554	12
2016-12-01	osm-intl	5	1	png	pass	9	9	1
2016-12-01	osm-intl	5	1.3	png	hit	14	214	15	7	52	64
2016-12-01	osm-intl	5	1.3	png	miss	13	137	11	2	46	57
2016-12-01	osm-intl	5	1.5	png	hit	25	180	16	17
2016-12-01	osm-intl	5	2	png	hit	90	1479	16	9	57	115
2016-12-01	osm-intl	5	2	png	miss	36	216	13	52
2016-12-01	osm-intl	5	3	png	hit	13	107	21	25
2016-12-01	osm-intl	6	1	png	hit	9720	192192	20	12	51	115
2016-12-01	osm-intl	6	1	png	miss	640	2021	25
2016-12-01	osm-intl	6	1	png	pass	24	26	2
2016-12-01	osm-intl	6	1.3	png	hit	9	91	10	11	20	20
2016-12-01	osm-intl	6	1.3	png	miss	14	234	17	9	51	71
2016-12-01	osm-intl	6	1.5	png	hit	30	268	22	26
2016-12-01	osm-intl	6	1.5	png	miss	24	213	31	41
2016-12-01	osm-intl	6	2	png	hit	47	440	30	46
2016-12-01	osm-intl	6	2	png	miss	34	189	14	27
2016-12-01	osm-intl	6	2.6	png	miss	2	17	9
2016-12-01	osm-intl	6	3	png	hit	14	98	15	18
2016-12-01	osm-intl	6	3	png	miss	17	110	18	26
2016-12-01	osm-intl	7	1	png	hit	84611	152148618	12	48	120
2016-12-01	osm-intl	7	1	png	miss	1319	6677	11	29
2016-12-01	osm-intl	7	1	png	pass	41	42	2
2016-12-01	osm-intl	7	1.3	png	hit	16	215	13	12	31	33
2016-12-01	osm-intl	7	1.3	png	miss	19	248	13	8	39	40
2016-12-01	osm-intl	7	1.5	png	hit	27	205	17	20
2016-12-01	osm-intl	7	1.5	png	miss	28	333	12	6	45	72
2016-12-01	osm-intl	7	2	png	hit	56	725	13	9	37	48
2016-12-01	osm-intl	7	2	png	miss	47	369	21	37
2016-12-01	osm-intl	7	2.6	png	hit	2	17	13	13
2016-12-01	osm-intl	7	3	png	miss	22	176	15	39
2016-12-01	osm-intl	8	1	png	hit	14542	424254	29	20	79	170
2016-12-01	osm-intl	8	1	png	miss	2531	19845	10	24
2016-12-01	osm-intl	8	1	png	pass	35	54	12
2016-12-01	osm-intl	8	1.3	png	hit	22	352	16	8	43	51
2016-12-01	osm-intl	8	1.3	png	miss	28	412	15	9	47	54
2016-12-01	osm-intl	8	1.5	png	hit	30	302	10	9	22	31
2016-12-01	osm-intl	8	1.5	png	miss	30	344	11	7	34	70
2016-12-01	osm-intl	8	2	png	hit	60	664	11	8	32	46
2016-12-01	osm-intl	8	2	png	miss	58	532	26	46
2016-12-01	osm-intl	8	3	png	miss	31	244	17	18
2016-12-01	osm-intl	9	1	png	hit	14821	404544	27	16	80	170
2016-12-01	osm-intl	9	1	png	miss	4115	36647	21	53
2016-12-01	osm-intl	9	1	png	pass	68	83	3
2016-12-01	osm-intl	9	1.3	png	miss	27	643	24	9	72	104
2016-12-01	osm-intl	9	1.5	png	hit	21	216	10	10	24	26
2016-12-01	osm-intl	9	1.5	png	miss	35	431	12	9	32	66
2016-12-01	osm-intl	9	2	png	hit	65	725	11	6	34	46
2016-12-01	osm-intl	9	2	png	miss	73	785	11	6	22	68
2016-12-01	osm-intl	9	3	png	hit	12	136	11	9	25	36
2016-12-01	osm-intl	9	3	png	miss	24	215	17	24
2016-12-01	osm-intl	0	1.5	png	miss	1	1	1
2016-12-01	osm-intl	1	3	png	hit	4	16	8
2016-12-01	osm-intl	10	1.3	png	hit	20	302	15	10	37	59
2016-12-01	osm-intl	10	2.6	png	miss	9	50	12	13
2016-12-01	osm-intl	15	2.6	png	miss	7	118	17	9	51	63
2016-12-01	osm-intl	15	3	png	hit	24	253	11	9	24	24
2016-12-01	osm-intl	16	1.5	png	hit	12	142	12	13	24	24
2016-12-01	osm-intl	16	1.5	png	miss	48	799	17	10	52	73
2016-12-01	osm-intl	17	1.3	png	hit	4	35	19	19
2016-12-01	osm-intl	17	2	png	miss	56	1311	23	12	94	122
2016-12-01	osm-intl	17	3	png	miss	15	165	11	9	20	24
2016-12-01	osm-intl	2	1.3	png	miss	2	11	9
2016-12-01	osm-intl	2	1.5	png	hit	16	150	10	15	19
2016-12-01	osm-intl	2	2	png	hit	7	70	10	10	15	15
2016-12-01	osm-intl	3	1	png	miss	9	10	2
2016-12-01	osm-intl	3	1.3	png	hit	10	134	13	9	32	37
2016-12-01	osm-intl	4	1.3	png	miss	8	93	12	7	31	35
2016-12-01	osm-intl	5	1.5	png	miss	22	95	19	21
2016-12-01	osm-intl	5	3	png	miss	14	87	19	23
2016-12-01	osm-intl	7	2.6	png	miss	2	20	10	10	15	15
2016-12-01	osm-intl	7	3	png	hit	18	147	15	16
2016-12-01	osm-intl	8	2	png	pass	1	1	1
2016-12-01	osm-intl	8	3	png	hit	16	104	13	16
2016-12-01	osm-intl	1	2.6	png	miss	4	5	2
2016-12-01	osm-intl	11	1.3	png	hit	14	123	26	29
2016-12-01	osm-intl	12	2.6	png	miss	7	137	20	21	33	33
2016-12-01	osm-intl	15	1.5	png	hit	19	160	23	33
2016-12-01	osm-intl	16	1.3	png	hit	2	31	16	16	27	28
2016-12-01	osm-intl	18	2.6	png	miss	1	6	6
2016-12-01	osm-intl	2	2	png	miss	4	13	10
2016-12-01	osm-intl	3	1.5	png	miss	12	42	10	13
2016-12-01	osm-intl	3	3	png	hit	9	48	11	11
2016-12-01	osm-intl	4	1	png	pass	7	7	1
2016-12-01	osm-intl	8	2.6	png	miss	1	15	15	15	15	15
2016-12-01	osm-intl	9	1.3	png	hit	15	287	19	20	47	50
2016-12-01	osm-intl	1	1.3	png	hit	9	33	4
2016-12-01	osm-intl	10	3	png	pass	1	1	1
2016-12-01	osm-intl	13	1.3	png	pass	1	1	1
2016-12-01	osm-intl	2	3	png	hit	9	53	9
2016-12-01	osm-intl	3	1	png	pass	3	3	1
2016-12-01	osm-intl	3	1.3	png	miss	6	27	10	11
2016-12-01	osm-intl	1	3	png	miss	3	5	2
2016-12-01	osm-intl	13	1.5	png	pass	1	1	1
2016-12-01	osm-intl	13	2.6	png	hit	8	33	12	13
2016-12-01	osm-intl	15	1.3	png	pass	1	1	1
2016-12-01	osm-intl	15	2.6	png	hit	3	47	16	9	33	35
2016-12-01	osm-intl	2	1	png	pass	3	3	1
2016-12-01	osm-intl	1	1.3	png	miss	4	7	4
2016-12-01	osm-intl	12	2	png	pass	2	3	2
2016-12-01	osm-intl	5	2.6	png	miss	1	9	9
2016-12-01	osm-intl	9	2.6	png	hit	1	6	6
2016-12-01	osm-intl	1	2	png	miss	2	3	2
2016-12-01	osm-intl	10	2	png	pass	1	1	1
2016-12-01	osm-intl	12	3	png	pass	1	1	1
2016-12-01	osm-intl	16	2	png	pass	1	1	1
2016-12-01	osm-intl	18	1.3	png	hit	2	31	16	16	24	24
2016-12-01	osm-intl	7	1.5	png	pass	1	1	1
2016-12-01	osm-intl	1	1	png	miss	1	1	1
2016-12-01	osm-intl	1	1.5	png	miss	2	4	2
2016-12-01	osm-intl	1	2.6	png	hit	2	3	2
2016-12-01	osm-intl	17	1.5	png	hit	1	6	6
2016-12-01	osm-intl	9	1.5	png	pass	1	1	1
2016-12-01	osm-intl	17	2.6	png	miss	1	9	9
2016-12-01	osm-intl	8	1.3	png	pass	2	5	4
2016-12-01	osm-intl	0	1.3	png	miss	1	1	1
2016-12-01	osm-intl	0	3	png	miss	1	1	1
2016-12-01	osm-intl	13	2	png	pass	1	1	1
2016-12-01	osm-intl	9	2.6	png	miss	1	8	8
2016-12-01	osm-intl	12	2.6	png	pass	1	1	1
2016-12-01	osm-intl	2	1	png	miss	1	1	1
2016-12-01	osm-intl	12	1.3	png	pass	1	1	1
2016-12-01	osm-intl	15	2	png	pass	1	1	1

Reverting working directory to "/home/bearloga/source/golden"

It took 3m 51s to generate this report.

Report 41 of 49

  1. Executing report "referer_data" from the metrics/external_traffic module.
  2. Setting working directory to "modules/metrics/external_traffic"
  3. About to run the following command: sh referer_data 2016-12-01 2016-12-02

Output:

date	is_search	referer_class	search_engine	access_method	pageviews
2016-12-01	FALSE	external	none	desktop	9122766
2016-12-01	TRUE	external (search engine)	Yahoo	desktop	4517369
2016-12-01	TRUE	external (search engine)	Baidu	mobile web	146670
2016-12-01	TRUE	external (search engine)	Bing	mobile web	1574776
2016-12-01	TRUE	external (search engine)	Yandex	mobile web	1657151
2016-12-01	TRUE	external (search engine)	Baidu	desktop	292064
2016-12-01	FALSE	none	none	desktop	158340525
2016-12-01	TRUE	external (search engine)	Bing	desktop	5217372
2016-12-01	TRUE	external (search engine)	DuckDuckGo	desktop530683
2016-12-01	TRUE	external (search engine)	Yandex	desktop	4791145
2016-12-01	FALSE	none	none	mobile web	85576349
2016-12-01	TRUE	external (search engine)	DuckDuckGo	mobile web	159604
2016-12-01	FALSE	internal	none	mobile web	37351431
2016-12-01	FALSE	internal	none	desktop	122040120
2016-12-01	TRUE	external (search engine)	Google	mobile web	109186137
2016-12-01	FALSE	external	none	mobile web	4272350
2016-12-01	TRUE	external (search engine)	Yahoo	mobile web	4577191
2016-12-01	TRUE	external (search engine)	Google	desktop	110668990

Reverting working directory to "/home/bearloga/source/golden"

It took 30m 29s to generate this report.

Report 42 of 49

  1. Executing report "sparql_usage_bsts" from the forecasts/wdqs module.
  2. Setting working directory to "modules/forecasts/wdqs"
  3. About to run the following command: sh sparql_usage_bsts 2016-12-01 2016-12-02

Output:

date	point_est	lower_80	upper_80	lower_95	upper_95
2016-12-01	91316.613	35137.179	235774.601	21791.045	390115.025

Reverting working directory to "/home/bearloga/source/golden"

It took 11m 35s to generate this report.

Report 43 of 49

  1. Executing report "sparql_usage_arima" from the forecasts/wdqs module.
  2. Setting working directory to "modules/forecasts/wdqs"
  3. About to run the following command: sh sparql_usage_arima 2016-12-01 2016-12-02

Output:

date	point_est	lower_80	upper_80	lower_95	upper_95
2016-12-01	91473.6849	42161.2569	244631.721	20029.3398	523727.9668

Reverting working directory to "/home/bearloga/source/golden"

It took 21s to generate this report.

Report 44 of 49

  1. Executing report "homepage_traffic_bsts" from the forecasts/wdqs module.
  2. Setting working directory to "modules/forecasts/wdqs"
  3. About to run the following command: sh homepage_traffic_bsts 2016-12-01 2016-12-02

Output:

date	point_est	lower_80	upper_80	lower_95	upper_95
2016-12-01	1014.994	615.864	1740.133	489.116	2365.371

Reverting working directory to "/home/bearloga/source/golden"

It took 12m 4s to generate this report.

Report 45 of 49

  1. Executing report "homepage_traffic_arima" from the forecasts/wdqs module.
  2. Setting working directory to "modules/forecasts/wdqs"
  3. About to run the following command: sh homepage_traffic_arima 2016-12-01 2016-12-02

Output:

date	point_est	lower_80	upper_80	lower_95	upper_95
2016-12-01	974.7171	698.6239	1471.5191	504.7796	2155.8514

Reverting working directory to "/home/bearloga/source/golden"

It took 20s to generate this report.

Report 46 of 49

  1. Executing report "zrr_overall_bsts" from the forecasts/search module.
  2. Setting working directory to "modules/forecasts/search"
  3. About to run the following command: sh zrr_overall_bsts 2016-12-01 2016-12-02

Output:

date	point_est	lower_80	upper_80	lower_95	upper_95
2016-12-01	0.238	0.228	0.249	0.223	0.256

Reverting working directory to "/home/bearloga/source/golden"

It took 7m 1s to generate this report.

Report 47 of 49

  1. Executing report "zrr_overall_arima" from the forecasts/search module.
  2. Setting working directory to "modules/forecasts/search"
  3. About to run the following command: sh zrr_overall_arima 2016-12-01 2016-12-02

Output:

date	point_est	lower_80	upper_80	lower_95	upper_95
2016-12-01	0.237	0.2279	0.2464	0.2186	0.2561

Reverting working directory to "/home/bearloga/source/golden"

It took 20s to generate this report.

Report 48 of 49

  1. Executing report "api_cirrus_bsts" from the forecasts/search module.
  2. Setting working directory to "modules/forecasts/search"
  3. About to run the following command: sh api_cirrus_bsts 2016-12-01 2016-12-02

Output:

date	point_est	lower_80	upper_80	lower_95	upper_95
2016-12-01	9749335.911	8748453.293	10742351.718	8314954.33	11362660.914

Reverting working directory to "/home/bearloga/source/golden"

It took 12m 43s to generate this report.

Report 49 of 49

  1. Executing report "api_cirrus_arima" from the forecasts/search module.
  2. Setting working directory to "modules/forecasts/search"
  3. About to run the following command: sh api_cirrus_arima 2016-12-01 2016-12-02

Output:

date	point_est	lower_80	upper_80	lower_95	upper_95
2016-12-01	9257339.8719	7868258.4585	10644963.2759	6487080.7001	12029612.1818

Reverting working directory to "/home/bearloga/source/golden"

It took 48s to generate this report. Warning message: In .doLoadActions(where, attach) : trying to execute load actions without 'methods' package

Summary Statistics

Error in lubridate::seconds_to_period(sum(seconds_elapsed)) : object 'seconds_elapsed' not found Calls: message -> tolower -> Execution halted

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment