Google App Engine: how to find out, which instance is running which instance-class?

Viewed 2781

I have created and successfully deployed a NodeJS-app on GoogleAppEngine. I know that they offer several "instance-types" with completely different pricings according to CPU-type, CPU-cores, memory and so on...

One can find the instance classes here in this list: https://cloud.google.com/appengine/pricing

But how do i know, which instance-class is running for my app currently? The dashboard doesnt show me that. "gcloud app instances list" hides this information too. "gcloud app describe" also doesnt provide this information....

How can i find out, which instance is running with which instance class?

Update

The solution provided by @eater is not available for me as the final "config"-column he had mentioned is not visible in "my" dashboard:

Update 2

Since this app was configured with "Flexible Environment" the concrete instance type might be not shown here as there is a specific pricing. Apparently this is the answer on my question.

enter image description here

2 Answers
Related