When developing apps, often comes the desire to do some highlevel app-
statistics, mostly counters. E.g. user upload data, which can be of
different file formats (think of xml, bin, doc, ...) and I just want
to make a stat, what the most uploaded formats are. Currently I have
to do everything by myself (updating counters, visualizing, etc).
What about providing a general service, such simple statistics could
be included in the "App Engine Dashboard"? I could think of a library,
which just accepts counters and some configuration, how to visualize
them (plotted over time either as is, or accumulated).
So in my code I could write something like this (Java)
AppStatistics stat = new AppStatistics();
...
stat.increment("format.xml");
...
In the Dashboard (or in app config file), I could then configure how
to present this data. I guess in this case an accumulating view over
time would be appropriate, and all formats ("format.xml",
"format.bin" , ...) should be present in the same graph - it does not
need to be "realtime".
Michael
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.