From 8f94980bff9d9462d19131ac7562f5a0d39e40ac Mon Sep 17 00:00:00 2001 From: Christopher Butler Date: Tue, 16 Sep 2025 16:10:49 -0400 Subject: [PATCH] Installation of Custom Reports Plugin Why these changes are being introduced: UXWS Requested the installation of the Custom Reports premium plugin. The prep work has already been completed (loading the files into the container). Now it's time to move on to enabling the plugin and ensuring that the container definition is up-to-date. How this addresses that need: * Update the config.ini.php file to match the changes that appeared in the running container Side effects of this change: None. Relevant ticket(s): * https://mitlibraries.atlassian.net/browse/INFRA-576 --- files/config.ini.php | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/files/config.ini.php b/files/config.ini.php index 50d90ac..4f61aae 100644 --- a/files/config.ini.php +++ b/files/config.ini.php @@ -39,7 +39,6 @@ ; maximum number of rows for sub-tables of the Events tables (eg. for the subtables Categories>Actions or Categories>Names). datatable_archiving_maximum_rows_subtable_events = 100 - [mail] [Plugins] @@ -104,6 +103,7 @@ Plugins[] = "FeatureFlags" Plugins[] = "MobileAppMeasurable" Plugins[] = "TagManager" +Plugins[] = "CustomReports" Plugins[] = "CustomVariables" Plugins[] = "EnvironmentVariables" Plugins[] = "HeatmapSessionRecording" @@ -185,6 +185,8 @@ PluginsInstalled[] = "WebsiteMeasurable" PluginsInstalled[] = "Widgetize" PluginsInstalled[] = "SearchEngineKeywordsPerformance" +PluginsInstalled[] = "CustomReports" + [HeatmapSessionRecording] add_tracking_code_only_when_needed = 1 @@ -197,3 +199,21 @@ UsersFlow_num_max_steps = 10 UsersFlow_num_max_rows_in_actions = 100 UsersFlow_num_max_links_per_interaction = 5000 + +[CustomReports] +custom_reports_validate_report_content_all_websites = 1 +custom_reports_always_show_unique_visitors = 0 +custom_reports_max_execution_time = 0 +custom_reports_disabled_dimensions = "" +custom_reports_periods_force_aggregate_report_unique_metrics_evolution = "" +custom_reports_max_dimensions = 3 +datatable_archiving_maximum_rows_custom_reports_dimensions_default = 50 +datatable_archiving_maximum_rows_subtable_custom_reports_dimensions_default = 10 +datatable_archiving_maximum_rows_custom_reports_dimensions_1 = 50 +datatable_archiving_maximum_rows_subtable_custom_reports_dimensions_1 = 10 +datatable_archiving_maximum_rows_custom_reports_dimensions_2 = 50 +datatable_archiving_maximum_rows_subtable_custom_reports_dimensions_2 = 10 +datatable_archiving_maximum_rows_custom_reports_dimensions_3 = 50 +datatable_archiving_maximum_rows_subtable_custom_reports_dimensions_3 = 10 +custom_reports_preview_report_timeframes = "-15 minutes,-1 hour,-3 hours,-6 hours" +custom_reports_preview_report_min_rows_required = 3 \ No newline at end of file