I have a Drupal 7 site on Pantheon and I'm trying to opt of the Google Analytics check because I set the GA ID in $conf and Site Audit doesn't detect it, so it reports "Google Analytics not configured" even when it is.

I tried to find the name of what to exclude to remove the Google Analytics check but I couldn't find anything that worked. I was trying things like SystemStatusGoogleAnalyticsmodule, StatusGoogleanalyticsmodule, and so on.

$conf['site_audit']['opt_out']['???'] = TRUE;

The relevant line from drush @mysite as --detail is:
System Status: Drupal's status report.
Google Analytics module: Warning - Not configured

Comments

ptmkenny created an issue. See original summary.

FluxSauce’s picture

Assigned: Unassigned » FluxSauce
Status: Active » Closed (fixed)

Hi, the correct combination is:

InsightsAnalyze

It's the Insights report, Analyze check.

$conf['site_audit']['opt_out']['InsightsAnalyze'] = TRUE;

Let me know if that doesn't sort it!