![]() |
App Engine Python SDK
v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
|
Public Member Functions | |
def | __init__ |
def | AddRequest |
def | GetResponseTimeList |
def | GetTotalRPCTimes |
def | EntityGroupCount |
def | EntityCount |
def | Dump |
Public Attributes | |
url | |
urlrequestlist | |
Statistics associated with a given URL. For each request of that URL, keep track of statistics associated with that request such as response time, RPCs called, and statistics associated with the RPC.
def google.appengine.ext.analytics.stats.URLStats.__init__ | ( | self, | |
url | |||
) |
Constructor.
def google.appengine.ext.analytics.stats.URLStats.AddRequest | ( | self, | |
statsproto | |||
) |
Add stats about new request to that URL.
def google.appengine.ext.analytics.stats.URLStats.Dump | ( | self | ) |
Dumps URL statistics to INFO/DEBUG logs for debugging.
def google.appengine.ext.analytics.stats.URLStats.EntityCount | ( | self | ) |
Computes reads/writes/failed gets to each entity across all URL requests. Returns: freq_total: Dict keyed on entity name (in kind_fullname form), with value being number of reads and writes to that entity across all requests.
def google.appengine.ext.analytics.stats.URLStats.EntityGroupCount | ( | self | ) |
Get reads/writes/failed gets to each entity group over all URL requests. Returns: freq_total: Dict keyed on entity group, with value being count of reads/writes/failed gets to that entity group across all requests.
def google.appengine.ext.analytics.stats.URLStats.GetResponseTimeList | ( | self | ) |
Returns list of response times across all requests of URL.
def google.appengine.ext.analytics.stats.URLStats.GetTotalRPCTimes | ( | self | ) |
Returns list of response times across all requests of URL.