Google Cloud Trace is a feature of the Google Cloud Platform that allows you to view the RPCs (remote procedure calls) invoked by your App Engine application and to view and analyze the time taken to complete each RPC.
Google Cloud Trace is a feature of the Google Cloud Platform that allows you to view the RPCs (remote procedure calls) invoked by your App Engine application and to view and analyze the time taken to complete each RPC.
An App Engine RPC is a round trip network call between your application and an App Engine service. For example, each of these calls made by a Python application result in RPCs:
- Datastore calls such as
db.get()
,db.put()
, ordb.query()
. - Memcache calls such as
memcache.get()
, ormemcache.get_multi()
. - URL Fetch calls such as
urlfetch.fetch()
.
See documentation for more information.