What is the maximum number of URL parameters that can be added to the exclusion list for Google Analytics

I installed a profile for Google Analytics. I have dozens of URL parameters that use different pages, and I want to exclude. Fortunately, google has a field that you can change in the general profile settings [Exclude URL Query Parameters:]. Out of a few dozen points, they all work for me and are not considered part of the URL. Except forpropid

I added propidto the comma-separated list on Monday. But every time I check GA, I'm pretty sure that they are still connecting.

So, am I trying to exclude too many parameters? I could not find the documentation on the GA site to say that there was a limit.

here is the exact contentexclude URL Query parameter field There is a reason why so many bha, before me did not know the difference between get / post.

propid,account,pp,kw1,kw2,kw3,sortby,page,msg,sd,ed,ea,ec,sc,subname,subcode,sa,qc,type,code,propid,acct,minbr,maxbr,minfb,maxfb,minhb,maxhb,minrm,maxrm,minst,maxst,minun,maxun,minyb,maxyb,minla,maxla,minba,maxba,minuc,maxuc,card,print,year,type

Update

I thought that after more time has passed, “bad data” will fall from GA. But as of yesterday, it still reports the predicted querystring value, despite being added to the list of exceptions, as well as other variables.

Update2

I found this post on google https://www.google.com/support/forum/p/Google+Analytics/thread?tid=72de4afc7b734c4e&hl=en

He reads that the field allows 255 char, Ok. The problem is solved. With the exception of my value field, only 247 characters. ARGGGHH!

* Update 3 *

, , googleAnalytics.asp, asp. - ? . ( *.inc, intellisense)

<script type="text/javascript">
<% GAPageDisplayName = REQUEST.ServerVariables("PATH_INFO") %> 
    var _gaq = _gaq || [];
    _gaq.push(['_setAccount', 'UA-20842347-1']);
    _gaq.push(['_setDomainName', '.sc-pa.com']);
    <% if GAPageDisplayName <> "" then %> 
    _gaq.push(['_trackPageview','<%=GAPageDisplayName %>']);
    <% else %>
    _gaq.push(['_trackPageview']);
    <% end if %>


    (function () {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    })();

</script>

4

, -, . , , Google. , , , , .

+3
3

, (, , )?

trackPageView, "" / " ". , GA / URL-, pagename , .

, GA : _gaq.push(['_trackPageview']);, : _gaq.push(['_trackPageview', 'Homepage']);. , , www.site.com, , , GA " ". , www.site.com/index.php, www.site.com/?a=b www.site.com/?1=2&x=y " ", .

, , , , , ; , , .

, !

+3

, propid ? , . , . , , .

type, , propid, type.

0

Google limits the characters in the Exclude URL field (maximum 2048 characters), not the number of requests. I had the same problem as mine, and I found that I populated a list of query string parameters based on pagenames in the report on my pages. Well, these pagenames first go through the lower level filter I created. And since the Exclude URL request field is case sensitive, some parameters have passed. Hope this helps.

0
source

Source: https://habr.com/ru/post/1793144/


All Articles