0

I have sole problem find bandwidth usage logs about different domains. This is the infrastructure:

Domains mapped:

  1. example.com
  2. example2.com
  3. example3.com
  4. ... example10.com and every subdomain with wildcard, for example domain.example.com and so on.

All this domains, are mapped on the same App Engine, we will call this service "appengine".

We need to know all bandwidth for each one, including bandwidth used on Google Clouds Bucket.

Because we are using the same service for all domains, we can't find that, we can see only request made on application inside the logs but without any information about the requests made on bucket by appengine.

There is some way to get all information? We can "build" some "tags" on request to handle this problem?

Thank you

Greg Askew
  • 35,880
  • 5
  • 54
  • 82
tidpe
  • 201
  • 3
  • 12
  • 1
    1) Google does not track access based upon domain names, only services. 2) Review App Engine logging https://cloud.google.com/appengine/docs/standard/python3/writing-application-logs 3) Google does not track public access to Cloud Storage. Google does provide aggregate usage in the billing reports. 4) I am not aware of any tagging that Google tracks for access. You will have to implement that yourself in your own code/logging/reporting system. – John Hanley Mar 19 '21 at 21:10

1 Answers1

1

Google App Engine do not assign a static amount of bandwidth, instead it will escalate depending of the use or the demand of the domain the App engine, here you can see how the incoming and out coming bandwidth are describe on the App engine service, and here you can see the quotas of the App Engine service

Robertocd_98
  • 111
  • 1