|
string | STORED_KIND_NAME = '__Stat_Total__' |
|
tuple | entity_bytes = model.IntegerProperty(default=0L) |
|
tuple | builtin_index_bytes = model.IntegerProperty(default=0L) |
|
tuple | builtin_index_count = model.IntegerProperty(default=0L) |
|
tuple | composite_index_bytes = model.IntegerProperty(default=0L) |
|
tuple | composite_index_count = model.IntegerProperty(default=0L) |
|
string | STORED_KIND_NAME = '__BaseStatistic__' |
|
tuple | bytes = model.IntegerProperty() |
|
tuple | count = model.IntegerProperty() |
|
tuple | timestamp = model.DateTimeProperty() |
|
| key = _key |
|
| populate = _populate |
|
| has_complete_key = _has_complete_key |
|
| to_dict = _to_dict |
|
| query = _query |
|
| gql = _gql |
|
| put = _put |
|
| put_async = _put_async |
|
| get_or_insert = _get_or_insert |
|
| get_or_insert_async = _get_or_insert_async |
|
| allocate_ids = _allocate_ids |
|
| allocate_ids_async = _allocate_ids_async |
|
| get_by_id = _get_by_id |
|
| get_by_id_async = _get_by_id_async |
|
An aggregate of all entities across the entire application.
This statistic only has a single instance in the datastore that contains the
total number of entities stored and the total number of bytes they take up.
Attributes:
entity_bytes: the number of bytes taken up to store the statistic
in the datastore minus the cost of storing indices.
builtin_index_bytes: the number of bytes taken up to store builtin-in
index entries
builtin_index_count: the number of built-in index entries.
composite_index_bytes: the number of bytes taken up to store composite
index entries
composite_index_count: the number of composite index entries.