Tagged Questions
7
votes
4answers
498 views
How to measure visiting time of a user
I like to measure the time a user spent on a particualr page of my webapp. First i thought about catching the onunload/onbeforeunload event in the browser and notify the server via a XMLHttpRequest ...
3
votes
3answers
84 views
Logging Requests With Timing
What is the best way to log http requests for a web application, including ajax requests, so that I can later go back and query "I want to know how many times this request was made, and how long it ...
2
votes
3answers
145 views
How do I prove to a client/advertiser that my site's analytics numbers are what I say they are?
I have been asked to provide recommendations on "Verified Analytics" for the next iteration of my company's site. Verified to mean that when we sell ad space, it's based on a number of page-views, and ...
0
votes
0answers
40 views
How to implement a web analytics tool service? and What are the technologies that I should learn? [closed]
How to implement/develop web analytics tool service? and What are the technologies that I should learn? is javascript a must to implement such a tool?
0
votes
1answer
77 views
How much bandwidth do I generate to destination web site with my curl code?
I use this function to load some source from another web site.
function getWebPageSourceCurl($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, ...
0
votes
1answer
102 views
Need Recommendation on impression tracking
I'm doing a research for my work which needs to track impression of a little web app sitting in 3rd party (authorized) websites. I need to analyze the impression close to real time.
I know there ...