ich möchte bei Google Analytics ein Profil und einen Filter einrichten, der mir nur den Traffic von (lokalen) Suchmaschinen auf einer Website ausgibt.
Analytics selbst kennt standardmäßig diese 20 Suchmaschinen (sieht man in der urchin.js):
- "google";
- "yahoo";
- "msn";
- "aol";
- "lycos";
- "ask";
- "altavista";
- "search";
- "netscape";
- "cnn";
- "looksmart";
- "about";
- "mamma";
- "alltheweb";
- "gigablast";
- "voila";
- "virgilio";
- "live";
- "baidu";
- "alice";
- "seznam";
- "yandex";
Code: Alles auswählen
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-xxxxxx-x";
_uOsr[20]="T-Online"; _uOkw[20]="q";
_uOsr[21]="AOL.de"; _uOkw[21]="q";
_uOsr[22]="Yahoo.de"; _uOkw[22]="p";
_uOsr[23]="Web.de"; _uOkw[23]="su";
_uOsr[24]="Fireball.de"; _uOkw[24]="query";
_uOsr[25]="MSN.de"; _uOkw[25]="q";
_uOsr[26]="Bluewin.ch"; _uOkw[26]="query";
_uOsr[27]="Excite.de"; _uOkw[27]="q";
_uOsr[28]="IXquick.de"; _uOkw[28]="query";
urchinTracker();
</script>
Vielleicht stand der ein oder andere schonmal vor einem ähnlichen Problem...
Danke im voraus!
Tata, Lazy.