Tagged Questions
4
votes
2answers
2k views
Google Analytics and Python
I'm brand new at Python and I'm trying to write an extension to an app that imports GA information and parses it into MySQL. There is a shamfully sparse amount of infomation on the topic. The Google ...
3
votes
4answers
105 views
Is there a Google Analytics-like solution to track REST calls to a web service?
Just wondering if there's any out of the box solution for this, I am not too familiar with the analytics api maybe I can write some simple js that updates analytics before going to my service etc. -- ...
3
votes
2answers
1k views
Google Analytics - Tracking Unknown
I have created a testing Google Analytics sample app as directed in on Google Analytics SDK for Android documentation and I have initiated Tracking in my code using:
tracker = ...
2
votes
1answer
194 views
Tracking tweets from webpage with Google Analytics
According to Google Analytic's documentation on social tracking, I'm supposed to run this code to notify GA when there's been a tweet:
twttr.events.bind('tweet', function(event) {
if (event) {
...
2
votes
2answers
217 views
Google Analytics - how can I track a page name using the new asynchronous code?
I was using the below code provided by Google for Google Analytics.
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : ...
2
votes
5answers
357 views
Why do Web Analytics such as Google Analytics use Dimensions and Metrics instead of SQL statement?
Just when I get quite familiar with SQL statements once again, when pulling data from Google Analytics, I found that they don't use SQL, but rather, use Dimensions and Metrics and the combinations of ...
1
vote
3answers
89 views
Best way to provide analytics to website users but only for their own pages
I'm building a blog of sorts. The client wants to provide analytics to users for their own posts, including views over time, location of viewers etc. Only the owners of a given post should be ...
0
votes
1answer
182 views
Google Analytics _trackPageview AJAX requests 100% bounce rates
I have a form (made up of a few stages) that is loaded via ajax, and as I move between stages I want to track it in Google Analytics as a PageView. I have this working ok, but I am getting an overall ...
0
votes
2answers
55 views
Google anlytcs inside my website
I'm building an admin panel, and i would like to put the system of google analytcs inside it, loggin automatically with an predefined email. something like putting an iframe, or other solution ...
0
votes
1answer
58 views
Adding information to a google analytics pageview
I use google analytics to monitor my traffic. For some pages, I want to record extra information beyond just the page being viewed. For example, if someone visits a profile page I might want to also ...
0
votes
2answers
99 views
per user traffic reports for website users
We are planning to incorporate a traffic reporting system into our web application that our users can have a look over. Example: Our users might have profiles on our application and this will receive ...
0
votes
1answer
74 views
google analytics need to automatically export xml for this swf
I am building a CMS system and wanting to incorporate google analytics reporting relevant for each site.
I have found a quite useful and cool little feature here ...
0
votes
2answers
304 views
Track Hits using Google Analytics and an ASP.NET web handler (ASHX) page
We are using Google Analytics for our site, but since it uses client script in HTML output we are unable to track hits to any of our ASP.NET ASHX handler pages. Does anyone know of a way to do this?