Littlejon
Littlejon

Reputation: 1066

Programmatically access Google App Engine Quota Details

Does anyone know if it is possible to access via code either from within App Engine SDK or some form of WebAPI your current account quota details.

I would like to be able to track the datastore usage and bandwidth usage within the running application so that it may alter its behaviour depending on the levels of Quota left for the application.

Upvotes: 5

Views: 2048

Answers (2)

slckin
slckin

Reputation: 929

You can monitor this issue: api to query quota statistics:

Upvotes: 9

Dmitry
Dmitry

Reputation: 3780

There is a small Quota API for Python which can count CPU usage. As to the best of my knowledge, there is no Quota API for java.

Upvotes: 1

Related Questions