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. -- otherwise I am going to have to stick to the good old 'store records in the database'.

Any help appreciated!

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

There seem to be a few solutions out there, though they mostly seem to involve changing your API architecture.

You could potentially use one of the Google Analytics server-side tracking libraries.

I see you're using AppEngine; I also run an API using AppEngine, and recently have been playing with using a Google Analytics Library for App Engine. It's not a perfect solution, but there's a decent amount of quality data.

Be warned that Google Analytics data modeling really isn't that analagous to that of an API; depending on your API, the notion of a "visit" is somewhat meaningless.

link|improve this answer
With 3scale, there's no need to change you API infrastructure - it works with a code plugin you drop into your system and you can report traffic synchronously or asynchronously. – steve Apr 11 at 4:59
feedback

What information are you looking for specifically? You might be able to get what you need from http access logs.

link|improve this answer
I just wanna track how many calls I get etc. – JohnIdol Dec 11 '11 at 15:11
1  
Then you can just use your http access logs. – Bill Dec 12 '11 at 0:36
Good. I am on app-engine, how would I see those logs? :) – JohnIdol Dec 12 '11 at 1:34
You'll have to Google for that. :-) – Bill Dec 12 '11 at 3:26
LOL - thanks :) – JohnIdol Dec 12 '11 at 19:23
feedback

I think what you're looking for is something like apigee: http://apigee.com

link|improve this answer
feedback

I don't think google analytics can track rest calls, because it's activated by a snippet of JavaScript that you embed in your HTML.

To view the logs, you can go to the appengine console, choose your application and select Logs.

To access your logs programmatically, you've to download them (with Java, with Python), but it seems that up to now you can't do it within your app engine, so you've to do it either on your workstation or maybe on an Amazon EC2 (maybe micro) instance.

On the other hand, if you decide to store records in the DataStore, do the update within a task queue, so you don't slow down your API (Task Queues with Java, Task Queues with Python).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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