Aggregated and anonymized data from 80k+ sites using tarteaucitron.
openwebanalytics
requests / 30 days
0% consent
Open Web Analytics and GDPR: how to manage consent
Open Web Analytics is an audience measurement or analytics service. Depending on its configuration, its use may involve browser storage, tracking technologies or the transmission of data to a third-party provider.
When the configuration of Open Web Analytics requires consent, the service should only be activated after the visitor has made a choice. tarteaucitron can condition its loading on that decision.
Managing Open Web Analytics with tarteaucitron
When Open Web Analytics is integrated through tarteaucitron, its activation is managed according to the visitor's consent choice. The service can therefore be loaded only when the corresponding permission has been granted and the visitor can later change this choice through the consent interface.
Cookies and storage used by Open Web Analytics
The current tarteaucitron integration declares 7 cookies associated with Open Web Analytics:
This list corresponds to the cookies currently declared in the tarteaucitron service definition. The service provider may change its technical implementation over time.
Configuring Open Web Analytics
Add the following code to your website after initializing tarteaucitron. Replace the example values with those provided by Open Web Analytics.
<script>
tarteaucitron.user.openwebanalyticsHost = 'HOST';
(tarteaucitron.job = tarteaucitron.job || []).push('openwebanalytics');
</script>
Additional code
The following code can already be present on your website and should be kept where the service is used.
<script>tarteaucitron.user.openwebanalyticsId = 'SITE_ID';</script>
Code to remove
Default HTML code to remove from your website:
<!-- Start Open Web Analytics Tracker -->
<script type='text/javascript'>
//<![CDATA[
var owa_baseUrl = 'HOST';
var owa_cmds = owa_cmds || [];
owa_cmds.push(['setDebug', true]);
owa_cmds.push(['setSiteId', 'SITE_ID']);
owa_cmds.push(['trackPageView']);
owa_cmds.push(['trackClicks']);
(function() {
var _owa = document.createElement('script'); _owa.type = 'text/javascript'; _owa.async = true;
owa_baseUrl = ('https:' == document.location.protocol ? window.owa_baseSecUrl || owa_baseUrl.replace(/http:/, 'https:') : owa_baseUrl );
_owa.src = owa_baseUrl + 'modules/base/js/owa.tracker-combined-min.js';
var _owa_s = document.getElementsByTagName('script')[0]; _owa_s.parentNode.insertBefore(_owa, _owa_s);
}());
//]]>
</script>
<!-- End Open Web Analytics Code -->For a complete guide, read the documentation to install tarteaucitron.js.
Privacy information
For detailed information about the processing of data by Open Web Analytics, cookies and applicable retention periods, refer to the documentation or privacy policy published by the service provider:
Open Web Analytics privacy information
Frequently asked questions about Open Web Analytics
Does Open Web Analytics require consent?
It depends on how Open Web Analytics is configured and which data is processed. Audience measurement tools using non-exempt tracking technologies generally need to be conditioned on the visitor’s consent.
How does tarteaucitron block Open Web Analytics?
tarteaucitron controls the activation of Open Web Analytics according to the consent choice recorded for the visitor. The service code is triggered through tarteaucitron instead of being loaded independently from the consent manager.