Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorThomas Steur <tsteur@users.noreply.github.com>2017-09-04 08:02:11 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2017-09-04 08:02:11 +0300
commit8a23b7e718ed107abeba1efbfbfbdd2d6b9ab58e (patch)
tree18921a500a066ada2f43b5e7b9af858ab1a9a9aa /config
parent143273c6f4d04d8e7de8179409a8df5635e04307 (diff)
Allow different reports pre-archiving frequency for each period (#11979)
* Allow different reports pre-archiving frequency for each period * Add new config settings for archive frequency * added default config for range dates * print changed archive periods * minor change to log output * Clarify wording, processed != requested. * Fix integration test
Diffstat (limited to 'config')
-rw-r--r--config/global.ini.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/config/global.ini.php b/config/global.ini.php
index bb63d92bf1..4ea60cdde4 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -276,6 +276,20 @@ default_period = day
; This setting is only used if it hasn't been overriden via the UI yet, or if enable_general_settings_admin=0
time_before_today_archive_considered_outdated = 150
+; Time in seconds after which an archive will be computed again. This setting is used only for week's statistics.
+; If set to "-1" (default), it will fall back to the UI setting under "General settings" unless enable_general_settings_admin=0
+; is set. In this case it will default to "time_before_today_archive_considered_outdated";
+time_before_week_archive_considered_outdated = -1
+
+; Same as config setting "time_before_week_archive_considered_outdated" but it is only applied to monthly archives
+time_before_month_archive_considered_outdated = -1
+
+; Same as config setting "time_before_week_archive_considered_outdated" but it is only applied to yearly archives
+time_before_year_archive_considered_outdated = -1
+
+; Same as config setting "time_before_week_archive_considered_outdated" but it is only applied to range archives
+time_before_range_archive_considered_outdated = -1
+
; This setting is overriden in the UI, under "General Settings".
; The default value is to allow browsers to trigger the Piwik archiving process.
; This setting is only used if it hasn't been overridden via the UI yet, or if enable_general_settings_admin=0