标签: google-cloud-platform
我尝试确定在我的Google Cloud Plattform环境中运行的所有实例的时间超过我指定的特定时间。我该如何实现?
答案 0 :(得分:2)
尝试:
gcloud compute instances list --filter="creationTimestamp.date('%s', Z)< $(date -d'5 hours ago' +%s)" --format="csv[no-heading](NAME)"
这应该列出您正在运行的所有实例,例如超过5小时。