是否可以找到在Google App Engine中生成实例的时间以及其他详细信息?

时间:2019-02-15 12:25:34

标签: google-app-engine google-cloud-platform

使用实例ID,可以从Google控制台读取实例的详细信息吗?

1 个答案:

答案 0 :(得分:2)

要在Google Cloud Console中查看实例的startTime,请单击Navigation Menu > App Engine > Instances。选择您感兴趣的服务,在图形下方将显示一个表格,其中包含每个实例的startTime

或者您可以运行以下命令:

gcloud app instances describe <INSTANCE_ID> -s=<SERVICE> -v=<VERSION> | grep startTime


编辑

如果实例不再存在,则可以在Google Cloud Stackdriver Logging Console中使用此过滤器:

resource.type="gae_app"
resource.labels.module_id="SERVICE"
resource.labels.version_id="VERSION"
protoPayload.instanceId="INSTANCE_ID"

第一个条目的时间戳与实例的StartTime大致重合。