Questions tagged [google-cloud-trace]

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(), or db.query().
  • Memcache calls such as memcache.get(), or memcache.get_multi().
  • URL Fetch calls such as urlfetch.fetch().

See documentation for more information.

68 questions
0
votes
1 answer

creating different color spans using REST api

I've seen some trace screenshots where different spans have different colors (https://rakyll.org/grpc-trace/). I've tried tracing my code using the v2 rest api, and all of the resulting spans are in uniform shades of blue. How are these colors…
Tomer
  • 3
  • 2
0
votes
0 answers

Stackdriver Trace not showing traces from Zipkin by Express API correctly

In our cluster, we have set up a Zipkin collector for Stackdriver Trace (like this) so we can trace our apps. I am running the simple JavaScript web example that is offered. It works correctly when I configure the app to send the traces to the…
lennyklb
  • 1,307
  • 2
  • 15
  • 32
0
votes
1 answer

Is there any way to trace Cloud SQL calls in App Engine? (Golang)

As title suggests, I would like to trace Cloud SQL calls in App Engine (Golang) Standard Environment. I found that there is Java library for that. Is there anything like that for Golang?
Soe Moe
  • 3,428
  • 1
  • 23
  • 32
0
votes
1 answer

Java instance memory usage going up without requests

I have a strange problem with GAE Java. There are two instances with basic scaling for the version I am using, with one being used and the other idling, from what I can see in the log. Response times are fine. I can see that my idle instance did not…
0
votes
0 answers

How to use google cloud trace SDK for java via gradle

How to use the following in gradle? https://github.com/GoogleCloudPlatform/cloud-trace-java I don't see it in maven repository https://mvnrepository.com/artifact/com.google.cloud/cloud-trace-java
Neil
  • 5,919
  • 15
  • 58
  • 85
0
votes
1 answer

Unable to see traces in stackdriver

I am using the following Java code to send a test trace to stackdriver HttpTransport httpTransport = GoogleNetHttpTransport.newTrustedTransport(); JsonFactory jsonFactory = JacksonFactory.getDefaultInstance(); GoogleCredential cred =…
Neil
  • 5,919
  • 15
  • 58
  • 85
0
votes
1 answer

How to do a simple Google Cloud Trace request in Java

I am trying to perform a simple push traces operation to my Google Cloud Trace project and I simply can't seem to send data across. Here is my build.gradle file: apply plugin: 'java' repositories { mavenCentral() } dependencies { compile…
Max Dor
  • 86
  • 6
-1
votes
2 answers

How to use Cloud Trace with Nodejs on GKE with workload identity enabled?

I'm trying to set up Cloud Trace on a GKE cluster with workload identity enabled. My pod uses a service account, which has the Cloud Trace Agent role. (I also tried giving it the Owner role, to rule out permission issues, but that didn't change the…
1 2 3 4
5