需要GCP VM实例的开始和停止时间

时间:2020-09-04 13:15:44

标签: google-cloud-platform cloud

我要使用Google Cloud AP检索以下有关VM实例的数据

最近一个月中提供的Google实例的开始时间和结束时间。

有可能

2 个答案:

答案 0 :(得分:0)

您对Google Cloud AP意味着什么?

另一方面,您可以在Cloud Logging上获取VM的活动,有关所需信息,请转到Cloud Logging页面convert to advance filter,然后可以将此查询应用于启动操作:

resource.type="gce_instance"
"compute.instances.start"

这是停止操作:

resource.type="gce_instance"
"compute.instances.stop"

您可以应用日期和时间过滤器以获得更好的结果。

您还可以通过gcloud command获得相同的信息:

gcloud日志读取为“ jsonPayload.event_subtype = compute.instances.stop”

gcloud日志读取为“ jsonPayload.event_subtype = compute.instances.start“

有关更多高级选项,请检查documentation.

答案 1 :(得分:0)

谢谢。这有帮助

我可以使用日志记录API

https://cloud.google.com/logging/docs/reference/v2/rest/v2/entries/list

检索VM资源的开始和停止时间