Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Google Analytics in my iOS application and I'm trying to use their user timing feature, to record how responsive my backend HTTP server is. Code shown below:

NSTimeInterval interval = [date timeIntervalSinceNow];
[self.tracker trackTimingWithCategory:@"request"
                            withValue:interval
                             withName:request.URL.absoluteString
                            withLabel:nil];

However, nothing is being shown in the reports in Google Analytics, any idea? How can I debug this?

share|improve this question

1 Answer

up vote 1 down vote accepted
+100

I think one of the issues you are encountering here is the negative value for second parameter. May be try something like this:

NSTimeInterval interval = -[date timeIntervalSinceNow];
[self.tracker trackTimingWithCategory:@"request"
                            withValue:interval
                             withName:request.URL.absoluteString
                            withLabel:nil];

Notice the extra "-" in the first line.

An alternative could be to use one of the other tracking mechanisms like events/custom variables or metrics.

share|improve this answer
any success getting this to work? – Avi Jan 24 at 19:59
Thanks, that was exactly right. Just the -ive. Thank you! – ConfusedNoob Jan 26 at 22:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.