Bearloga has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/374900 )

Change subject: Duplicate reports without max data points limit to keep data 
longer
......................................................................


Duplicate reports without max data points limit to keep data longer

Bug: T172453
Change-Id: Iabadd6af646cf186aff811aef8f91d2d9106a3dd
---
A modules/metrics/portal/all_country_data_history
M modules/metrics/portal/config.yaml
A modules/metrics/portal/first_visits_country_history
A modules/metrics/portal/last_action_country_history
A modules/metrics/portal/most_common_country_history
A modules/metrics/search/app_event_counts_langproj_breakdown_history
A modules/metrics/search/cirrus_langproj_breakdown_no_automata_history
A modules/metrics/search/cirrus_langproj_breakdown_with_automata_history
M modules/metrics/search/config.yaml
A modules/metrics/search/desktop_event_counts_langproj_breakdown_history
A modules/metrics/search/mobile_event_counts_langproj_breakdown_history
A 
modules/metrics/search/paulscore_approximations_fulltext_langproj_breakdown_history
A modules/metrics/search/search_threshold_pass_rate_langproj_breakdown_history
13 files changed, 99 insertions(+), 0 deletions(-)

Approvals:
  Bearloga: Verified; Looks good to me, approved



diff --git a/modules/metrics/portal/all_country_data_history 
b/modules/metrics/portal/all_country_data_history
new file mode 100755
index 0000000..d295ff7
--- /dev/null
+++ b/modules/metrics/portal/all_country_data_history
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+Rscript modules/metrics/portal/geographic_breakdown.R -d $1 --include_all
diff --git a/modules/metrics/portal/config.yaml 
b/modules/metrics/portal/config.yaml
index b980a64..3a44813 100644
--- a/modules/metrics/portal/config.yaml
+++ b/modules/metrics/portal/config.yaml
@@ -53,6 +53,12 @@
         max_data_points: 60
         funnel: true
         type: script
+    all_country_data_history:
+        description: Sampled traffic to Wikipedia.org Portal, broken down by 
country. Historical data store.
+        granularity: days
+        starts: 2017-04-01
+        funnel: true
+        type: script
     app_link_clicks:
         description: Clicks to Wikipedia mobile apps and list of apps
         granularity: days
@@ -66,6 +72,12 @@
         max_data_points: 60
         funnel: true
         type: script
+    last_action_country_history:
+        description: Last action performed on Wikipedia.org Portal per user 
session. Historical data store.
+        granularity: days
+        starts: 2017-04-01
+        funnel: true
+        type: script
     most_common_country:
         description: Most common action performed on Wikipedia.org Portal per 
user session, broken down by country
         granularity: days
@@ -73,6 +85,12 @@
         max_data_points: 60
         funnel: true
         type: script
+    most_common_country_history:
+        description: Most common action performed on Wikipedia.org Portal per 
user session, broken down by country. Historical data store.
+        granularity: days
+        starts: 2017-04-01
+        funnel: true
+        type: script
     first_visits_country:
         description: Action performed on Wikipedia.org Portal on each user's 
initial visit, broken down by country
         granularity: days
@@ -80,6 +98,12 @@
         max_data_points: 60
         funnel: true
         type: script
+    first_visits_country_history:
+        description: Action performed on Wikipedia.org Portal on each user's 
initial visit, broken down by country. Historical data store.
+        granularity: days
+        starts: 2017-04-01
+        funnel: true
+        type: script
     clickthrough_rate:
         description: Last action (no action vs clickthrough) by Wikipedia.org 
Portal visitors
         granularity: days
diff --git a/modules/metrics/portal/first_visits_country_history 
b/modules/metrics/portal/first_visits_country_history
new file mode 100755
index 0000000..2312008
--- /dev/null
+++ b/modules/metrics/portal/first_visits_country_history
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+Rscript modules/metrics/portal/engagement.R -d $1 -o clickthrough_firstvisit 
--by_country
diff --git a/modules/metrics/portal/last_action_country_history 
b/modules/metrics/portal/last_action_country_history
new file mode 100755
index 0000000..dd3d177
--- /dev/null
+++ b/modules/metrics/portal/last_action_country_history
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+Rscript modules/metrics/portal/engagement.R -d $1 -o clickthrough_breakdown 
--by_country
diff --git a/modules/metrics/portal/most_common_country_history 
b/modules/metrics/portal/most_common_country_history
new file mode 100755
index 0000000..d17ce0b
--- /dev/null
+++ b/modules/metrics/portal/most_common_country_history
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+Rscript modules/metrics/portal/engagement.R -d $1 -o most_common_per_visit 
--by_country
diff --git a/modules/metrics/search/app_event_counts_langproj_breakdown_history 
b/modules/metrics/search/app_event_counts_langproj_breakdown_history
new file mode 100755
index 0000000..c4381ce
--- /dev/null
+++ b/modules/metrics/search/app_event_counts_langproj_breakdown_history
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+Rscript modules/metrics/search/app_event_counts.R -d $1 -o langproj
diff --git 
a/modules/metrics/search/cirrus_langproj_breakdown_no_automata_history 
b/modules/metrics/search/cirrus_langproj_breakdown_no_automata_history
new file mode 100755
index 0000000..ca6df32
--- /dev/null
+++ b/modules/metrics/search/cirrus_langproj_breakdown_no_automata_history
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+Rscript modules/metrics/search/cirrus_aggregates.R -d $1 -o langproj
diff --git 
a/modules/metrics/search/cirrus_langproj_breakdown_with_automata_history 
b/modules/metrics/search/cirrus_langproj_breakdown_with_automata_history
new file mode 100755
index 0000000..b83ae2d
--- /dev/null
+++ b/modules/metrics/search/cirrus_langproj_breakdown_with_automata_history
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+Rscript modules/metrics/search/cirrus_aggregates.R -d $1 -o langproj 
--include_automata
diff --git a/modules/metrics/search/config.yaml 
b/modules/metrics/search/config.yaml
index 7514982..866d53b 100644
--- a/modules/metrics/search/config.yaml
+++ b/modules/metrics/search/config.yaml
@@ -20,6 +20,12 @@
         funnel: true
         max_data_points: 30
         type: script
+    app_event_counts_langproj_breakdown_history:
+        description: Clicks and other events by users searching on Android and 
iOS apps broken down by language. Historical data store.
+        granularity: days
+        starts: 2017-04-01
+        funnel: true
+        type: script
     app_load_times:
         description: User-perceived load times when searching on Android and 
iOS apps
         granularity: days
@@ -51,6 +57,12 @@
         max_data_points: 30
         funnel: true
         type: script
+    mobile_event_counts_langproj_breakdown_history:
+        description: Clicks and other events by users searching on mobile web 
broken down by language-project pairs. Historical data store.
+        granularity: days
+        starts: 2017-04-01
+        funnel: true
+        type: script
     mobile_load_times:
         description: User-perceived load times when searching on mobile web
         granularity: days
@@ -69,6 +81,12 @@
         max_data_points: 30
         funnel: true
         type: script
+    desktop_event_counts_langproj_breakdown_history:
+        description: Clicks and other events by users searching on desktop 
broken down by language-project pairs. Historical data store.
+        granularity: days
+        starts: 2017-04-01
+        funnel: true
+        type: script
     desktop_load_times:
         description: User-perceived load times when searching on desktop
         granularity: days
@@ -85,6 +103,12 @@
         granularity: days
         starts: 2017-03-01
         max_data_points: 30
+        funnel: true
+        type: script
+    paulscore_approximations_fulltext_langproj_breakdown_history:
+        description: Relevancy of our fulltext desktop search as measured by 
[PaulScore](https://www.mediawiki.org/wiki/Wikimedia_Discovery/Search/Glossary#PaulScore)
 broken down by language-project pairs. Historical data store.
+        granularity: days
+        starts: 2017-04-01
         funnel: true
         type: script
     sample_page_visit_ld:
@@ -108,6 +132,12 @@
         granularity: days
         starts: 2017-03-01
         max_data_points: 30
+        funnel: true
+        type: script
+    search_threshold_pass_rate_langproj_breakdown_history:
+        description: Proportion of users having search sessions longer than a 
predetermined threshold (10s) broken down by language-project pairs. Historical 
data store.
+        granularity: days
+        starts: 2017-04-01
         funnel: true
         type: script
     cirrus_query_aggregates_no_automata:
@@ -149,6 +179,12 @@
         funnel: true
         max_data_points: 30
         type: script
+    cirrus_langproj_breakdown_no_automata_history:
+        description: Zero results and total searches broken down by 
language-project pairs (e.g. German Wikiquote ZRR vs. French Wikibooks ZRR), 
excluding known bots/tools. Historical data store.
+        granularity: days
+        starts: 2017-06-01
+        funnel: true
+        type: script
     cirrus_langproj_breakdown_with_automata:
         description: Zero results and total searches broken down by 
language-project pairs (e.g. German Wikiquote ZRR vs. French Wikibooks ZRR)
         granularity: days
@@ -156,6 +192,12 @@
         funnel: true
         max_data_points: 30
         type: script
+    cirrus_langproj_breakdown_with_automata_history:
+        description: Zero results and total searches broken down by 
language-project pairs (e.g. German Wikiquote ZRR vs. French Wikibooks ZRR). 
Historical data store.
+        granularity: days
+        starts: 2017-06-01
+        funnel: true
+        type: script
     sister_search_traffic:
         description: Traffic to various wikis from Wikipedia search results 
pages; broken up by language, destination type (SERP vs not), and access method 
(desktop vs mobile web); exlcudes known automata
         granularity: days
diff --git 
a/modules/metrics/search/desktop_event_counts_langproj_breakdown_history 
b/modules/metrics/search/desktop_event_counts_langproj_breakdown_history
new file mode 100755
index 0000000..88dc535
--- /dev/null
+++ b/modules/metrics/search/desktop_event_counts_langproj_breakdown_history
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+Rscript modules/metrics/search/desktop_event_counts.R -d $1 -o langproj
diff --git 
a/modules/metrics/search/mobile_event_counts_langproj_breakdown_history 
b/modules/metrics/search/mobile_event_counts_langproj_breakdown_history
new file mode 100755
index 0000000..fd30d0f
--- /dev/null
+++ b/modules/metrics/search/mobile_event_counts_langproj_breakdown_history
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+Rscript modules/metrics/search/mobile_event_counts.R -d $1 -o langproj
diff --git 
a/modules/metrics/search/paulscore_approximations_fulltext_langproj_breakdown_history
 
b/modules/metrics/search/paulscore_approximations_fulltext_langproj_breakdown_history
new file mode 100755
index 0000000..d4c830f
--- /dev/null
+++ 
b/modules/metrics/search/paulscore_approximations_fulltext_langproj_breakdown_history
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+Rscript modules/metrics/search/paulscore_approximations.R -d $1 -o langproj
diff --git 
a/modules/metrics/search/search_threshold_pass_rate_langproj_breakdown_history 
b/modules/metrics/search/search_threshold_pass_rate_langproj_breakdown_history
new file mode 100755
index 0000000..c594b08
--- /dev/null
+++ 
b/modules/metrics/search/search_threshold_pass_rate_langproj_breakdown_history
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+Rscript modules/metrics/search/search_threshold_pass_rate.R -d $1 -o langproj

-- 
To view, visit https://gerrit.wikimedia.org/r/374900
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Iabadd6af646cf186aff811aef8f91d2d9106a3dd
Gerrit-PatchSet: 1
Gerrit-Project: wikimedia/discovery/golden
Gerrit-Branch: master
Gerrit-Owner: Chelsyx <[email protected]>
Gerrit-Reviewer: Bearloga <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to