Questions tagged [appstats]
60 questions
3
votes
0 answers
Recording custom events in appstats for GAE JAVA
Is it possible to record the time spent in my application code and not just rpc's using appstats?
I'm looking to extend appstats for JAVA to record custom events....

aloo
- 5,331
- 7
- 55
- 94
3
votes
1 answer
Is there a way to see which entities are being accessed in Appstats?
While analyzing Appstats traces for datastore_v3.Get calls, it would be very helpful to know which entities are being retrieved from the datastore. Is there a hidden configuration flag that enables this?
I have tried setting…

Pascal Bourque
- 5,101
- 2
- 28
- 45
3
votes
1 answer
Using AppStats on GAE with NDB, how can I tell what query is executing?
I'm looking at RPC calls, but the stack is all tasklet and ndb. This is making it difficult for me to tell what queries are running. Is there an appstats config setting I need to use?
Thanks for the help.

Jay
- 525
- 5
- 15
2
votes
1 answer
Low-level operations with Appstats in GAE
After GAE's new pricing I'm having serious difficulties in optimizing my entities. I'm aware of the high-level to low-level operations conversion rules and I'm using Appstats to observe the number of puts, deletes, queries, etc.
The problem is that…

Roberto
- 11,557
- 16
- 54
- 68
2
votes
1 answer
Cannot access AppStats on deployed version
I have enabled appstats for my Python App Engine application, and I can access it locally under the /_ah/stats/ url but when I deploy the application and visit the appspot.com under my application in the UI there is no custom AppStats link as it…

topless
- 8,069
- 11
- 57
- 86
2
votes
1 answer
Does this exception imply that appstats are locking up my appengine app?
My app has been purring along for a month with only the occasional deadline exceeded exception. This morning, in a space of five minutes, I had 150 deadline exceeded exceptions. Now it's back to normal. I understand that this can just happen, and…

Riley Lark
- 20,660
- 15
- 80
- 128
2
votes
0 answers
How to display costs in google app engine appstats
How do we enable the display of costs within appengine appstats? The documentation from here says this:
Displaying cost
AppStats can keep track of RPC cost as well as time. If your
application is fast enough but more expensive than you expect,…

B B
- 1,116
- 2
- 8
- 20
2
votes
2 answers
Understanding Datastore Get RPCs in Google App Engine
I'm using sharded counters (https://cloud.google.com/appengine/articles/sharding_counters) in my GAE application for performance reasons, but I'm having some trouble understanding why it's so slow and how I can speed things up.
Background
I have an…

Brandon
- 2,886
- 3
- 29
- 44
2
votes
0 answers
Profiling Django RPC calls (Same as Django debug toolbar)
I have an application which calls Django RPCs using jsonrpclib. I need to implement some kind of profiling for these RPCs, similar to Django debug toolbar, but in this case there is no rendering of html pages.
I have no idea where to start, I am…

Niyojan
- 544
- 1
- 6
- 23
2
votes
2 answers
Problem with Google App Engine Appstats
I'm having an issue getting Appstats to work correctly. Using /appstats or /appstats/stats ends up in an infinite loop that keeps redirecting back to /appstats/stats. This results in a 404 error saying the page isn't redirecting properly. Any idea…

Taylor Leese
- 51,004
- 28
- 112
- 141
2
votes
1 answer
Android::What does PackageStats.codeSize indicate?
I am korean software developer and can speak english not very well.
I ask for your understanding.
Anyway...
I've got the code size(long) from packagestats.
Related…

Truman
- 55
- 6
2
votes
1 answer
Record only a fraction of all requests with AppStats for App Engine in Java
We're trying to reduce the overhead of AppStats on a high traffic website.
AppStats for Python has a configuration setting appstats_RECORD_FRACTION which limits the number of requests that are recorded. This allow you to record the stats for only a…

Arjen
- 5,043
- 4
- 18
- 20
2
votes
0 answers
How to use AppStats with JUnit tests? (Google App Engine)
I'm implementing a project for Google App Engine.
At this moment I have the following setup:
I have a couple of servlets in place to will give some data back to a client application (for example Android/iOS client)
To test this servlets I created…

Peter Fortuin
- 5,041
- 8
- 41
- 69
2
votes
2 answers
Google app engine excessive datastore small operations
My site has about 50 users and I am getting excessive small datastore operations. I am aggressively memcaching, dont have that many records and still I get millions of small datastore operations. Appstats says the cost is 0 yet the real cost is not…

specialscope
- 4,188
- 3
- 24
- 22
2
votes
2 answers
How do I get appstats to work with webapp2 and extended routing on GAE?
I'm trying to get Appstats to work on my GAE Python app. I'm using webapp2 with python 2.7.
I've followed the instructions from https://developers.google.com/appengine/docs/python/tools/appstats#Setup which includes creating the appengine_config.py…

jedimdan
- 58
- 5