btelles
btelles

Reputation: 5420

Why do I see a bunch of requests to https://clouddebugger.googleapis.com:443 GET /v2/controller/debuggees/gcp*/breakpoints?agentId=* in logging?

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=*

Upvotes: 0

Views: 82

Answers (1)

Anthony Leo
Anthony Leo

Reputation: 498

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.

Upvotes: 0

Related Questions