Robert Munteanu
Robert Munteanu

Reputation: 68318

Bandwidth usage in Google App Engine

How can I find out how my bandwidth is used in Google App Engine? I want to extract the top bandwidth hogs so I can cut down on my outgoing bandwidth usage.

Upvotes: 3

Views: 1739

Answers (2)

Lynn Langit
Lynn Langit

Reputation: 4060

Also it may be helpful for you to review the usage from the admin console (all up and via the logs) as shown below - the link to the admin console is at https://appengine.google.com/

Example App Engine Console

Upvotes: 1

David Underhill
David Underhill

Reputation: 16253

App engine logs all requests. This includes information about the request (path, query string, wall/cpu/api time, and approximate data transfer out in kb) and the requester (IP address and (if the user is logged in) google account name). You should be able to compute a reasonable estimate based on this information.

You can periodically download your app's logs with appcfg. How often you need to do this will be based on how much traffic your site handles.

Upvotes: 4

Related Questions