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?