Hi,
My GAE app takes about 800ms per request. The Google Cloud Trace shows me just about 20ms for datastore and memcache.
Now, I want to trace the CloudSQL connect/query time, and some other operations (encrypt/decrypt) in my application.
From documentation, I know that we can put custom traces to Google Cloud Trace, I have read the API's documentation but I want to put those custom traces together with builtin traces. I don't know how.
Do you guys have any idea or documentation about that?
P/S: I'm using Python, and suppose that this should be
<!-- language: lang-python -->
@cloud_trace.trace()
def decrypt_data():
pass