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).