Questions tagged [google-cloud-debugger]

Google Cloud Debugger is a feature of the Google Cloud Platform that lets you inspect the state of an application at any code location without stopping or slowing it down. The debugger makes it easier to view the application state without adding logging statements.

Official website

51 questions
3
votes
3 answers

Which programming languages does Google Cloud Debugger support

Which programming languages does Google Cloud Debugger support other than Java?
matanster
  • 15,072
  • 19
  • 88
  • 167
2
votes
0 answers

Attach remote debugger to cloud run from Intellij

I have an app running on Cloud Run and I'm trying to debug remotely using Intellij and the Cloud Code plugin. The java agent is running and I'm able to create snapshots on the GCP Debugger, but Intellij won't attach to the remote code. It shows my…
2
votes
1 answer

Google App Engine Java 11 - unclear errors com.google.apphosting.api.ApiProxy$CallNotFoundException

We are currently migrating our App Engine from Java 8 to Java 11 using the bundled services (https://cloud.google.com/blog/products/serverless/support-for-app-engine-services-in-second-generation-runtimes). We made it as far as that the application…
2
votes
1 answer

Can't enable GCloud debugger for Java 11 with App Engine standard environment

We are not able to debug our Appengine Standard Java 11 project using Google cloud debugger The debugger could not find a debug target for the application name (project-test). Taking into consideration that The debugger is enabled by default; no…
2
votes
0 answers

Why does GCP cloud debugger only support Go 1.9 and below?

The docs for the GCP cloud debugger has a prominent warning to set up a Go agent: Cloud Debugger only works with Go 1.9 and lower. I was curious: is there a technical reason for using Go 1.9 or lower? It's not terribly often I see constraints for…
Joe
  • 3,370
  • 4
  • 33
  • 56
2
votes
0 answers

How to use Google Cloud Debugger on Cloud Run with Django

I'm trying to use Google Cloud Debugger on Cloud Run with Django. I red this document. https://cloud.google.com/debugger/docs/setup/python What I did. I turned on Debugger in google cloud. Install google-python-cloud-debugger. I created…
Nori
  • 2,340
  • 1
  • 18
  • 41
2
votes
1 answer

Google debug: How to debug a library in executable jar - Error : File was not found in the executable

Details: Java app on GKE : Kubernetes I am able to debug all the java files of my executable jar but not the inner jars/libraries. My executable jar's main code is in implementaion jars/libraries, I have source code of those libraries. How can I…
2
votes
3 answers

Unable to debug java app through stack driver in google kubernetes cluster

I am trying to debug a java app on GKE cluster through stack driver. I have created a GKE cluster with Allow full access to all Cloud APIs I am following documentation: https://cloud.google.com/debugger/docs/setup/java Here is my DockerFile: FROM…
2
votes
1 answer

StackDriver Debug "error":"invalid_request","error_description":"Service account not enabled on this instance"

I am using GCP VM to host a few ecommerce websites via Cloud DNS I am trying to set up Stackdriver Debug (PHP) on my GCP VM for one of ecommerces websites. I managed to follow through the steps successfully till Step #4. Setting Up Stackdriver…
2
votes
1 answer

"Stackdriver Debugger is not set up for the python runtime on GAE Flex" Warning

I'm attempting to debug a Flask/Python app running on Google Appengine flexible environment. However, I see a warning message within the Stackdriver Debug interface in Google Console, and am unable to set any breakpoints. The warning…
2
votes
2 answers

Getting ImportError even though module is installed

installed : pip install google-python-cloud-debugger Requirement already satisfied (use --upgrade to upgrade): google-python-cloud-debugger in /usr/local/lib/python2.7/dist-packages Requirement already satisfied (use --upgrade to upgrade):…
2
votes
1 answer

Google Compute Engine socket issue

For last few days Debian (Google Compute Engine) server is facing socket not available issue everyday and requires tomcat to be restarted. Dec 30, 2015 1:16:53 PM org.apache.tomcat.util.net.JIoEndpoint$Acceptor run SEVERE: Socket accept…
1
vote
1 answer

View GAE sources after Cloud Debugger shutdown

In my company we're used to check the sources of our App Engine services via the Cloud Debugger UI (there were a Source shortcut under each version on App Engine > Versions). As it will be deprecated very soon, and they already did the move to…
1
vote
1 answer

How to enable cloud debugger for python flask app on Cloud Run

I am trying to enable Google Cloud Debugger for a Flask app that I am running in Cloud Run. The project is a simple "Hello World" with Flask and Dockerfile. The code is synced for Bitbucket to Cloud Source Repositories and set to trigger launch on…
Finglish
  • 9,692
  • 14
  • 70
  • 114
1
vote
2 answers

Google Cloud Debugger not working on Node.js

My Node.js API service is hosted on google cloud App Engine running in a standard environment. I have followed all the steps but the following message is being thrown by the debug agent: @google-cloud/debug-agent Failed to re-register debuggee…
1
2 3 4