GCP:如何找到在特定时间运行的实例?

时间:2020-10-27 21:06:03

标签: google-cloud-platform

我尝试确定在我的Google Cloud Plattform环境中运行的所有实例的时间超过我指定的特定时间。我该如何实现?

1 个答案:

答案 0 :(得分:2)

尝试:

 gcloud compute instances list --filter="creationTimestamp.date('%s', Z)< $(date -d'5 hours ago' +%s)" --format="csv[no-heading](NAME)" 

这应该列出您正在运行的所有实例,例如超过5小时。