-1

My Django app is working on GAE with Cloud SQL(MySQL).

By using New Relic Monitoring, I tracked requests done by my app to www.googleapis.com.

I don't know those requests. Can somebody explain this behavior?

enter image description here

(app connecting with cloud proxy)

Tudormi
  • 1,092
  • 7
  • 18
Hiro3
  • 201
  • 1
  • 3
  • 11
  • >Do you mean that why your app is making these requests. yes. I do not make request to googleapis.com. just cloud sql only. – Hiro3 Apr 30 '18 at 12:27

1 Answers1

0

As merely described here, there are various processes running in the instance along side (with?) your application... scaling, billing, logging, etc. Communication with other Google Cloud Services (like the ones I previously mentioned) is mainly done through Google Cloud APIs. Since App Engine is a managed Platform as a Service, this management needs to be done somehow... a myriad of REST API requests and responses do this. Partly through the www.googleapis.com endpoint.

You don't have to worry, though... your application's performance is not affected by this, nor your billing account.

Tudormi
  • 1,092
  • 7
  • 18