![]() |
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 | TotalRPCTime |
def | AddRPCStats |
def | EntityGroupCount |
def | EntityCount |
Public Attributes | |
rpcstatslist | |
timestamp | |
totalresponsetime | |
totalrpctime | |
Statistics associated with each URL request. For each URL request, keep track of list of RPCs, statistics associated with each RPC, and total response time for that URL request.
def google.appengine.ext.analytics.stats.URLRequestStats.__init__ | ( | self, | |
statsproto | |||
) |
Constructor.
def google.appengine.ext.analytics.stats.URLRequestStats.AddRPCStats | ( | self, | |
rpcstatsproto | |||
) |
Update statistics for a given RPC called for that URL request.
def google.appengine.ext.analytics.stats.URLRequestStats.EntityCount | ( | self | ) |
Computes number of reads/writes to each entity for that request. Returns: freq: Dictionary keyed on entity, with value being number of reads, writes or failed gets to that entity for the request. The dictionary key is of the form "entitykind,entityfullname" which allows organizing statistics of entities by their kind.
def google.appengine.ext.analytics.stats.URLRequestStats.EntityGroupCount | ( | self | ) |
Computes reads/writes/failed gets to each entity group for that request. Returns: freq: Dictionary keyed on entity group. Key is of the form 'entitygroupkind,entitygroupname' which allows organizing statistics of entity groups by their kind. Value is an inner dictionary with 3 keys: 'read', 'write', and 'missed'. Value of each inner dictionary item is the number of reads/writes/failed gets to that entity group for the request.
def google.appengine.ext.analytics.stats.URLRequestStats.TotalRPCTime | ( | self | ) |
Compute total time spent in all RPCs.