We don't have any humans actively debugging our application, yet I see a bunch of requests in our logs to clouddebugger.googleapis.com (or from?).

Anyone know where and why these requests are coming in?

The requests take the following form:

https://clouddebugger.googleapis.com:443 GET /v2/controller/debuggees/gcp*/breakpoints?agentId=*

1

There are 1 best solutions below

0
On

It looks like these request are coming from GCP's Cloud Debugger API; More specifically, the REST API using the Method: "debugger.debuggees.breakpoints.get" which is used for getting breakpoint information.

It could be that your application that is running (or using) the API to get your codes breakpoint information and send it to Cloud Debugger. I would suggest reviewing your applications code to see if this API is being used anywhere in your application.