答案 0 :(得分:3)
您现在可以通过Stackdriver Metrics Explorer获得所需的信息,请转到Stackdriver->资源-> Metrics Explorer->在“查找资源类型和指标”输入字段下,选择“总字节数”或输入“ storage.googleapis.com/storage / total_bytes”,然后点击显示的那个。然后它将向您显示项目中所有存储桶的使用情况。
答案 1 :(得分:2)
您是否安装了gsutil
命令行实用程序?如果是这样,您可以使用gsutil du
命令查看用于对象和存储桶的空间。
例如,gsutil du -s gs://my-bucket-name/
应该有用。
答案 2 :(得分:0)
正如du - Display object size usage中所述,我们可以使用gsutil命令
gsutil -o GSUtil:default_project_id=[PROJECT-ID] du -shc
它将显示每个存储桶的所有空间以及这样使用的总空间
24.18 MiB gs://appspot.[PROJECT-ID].com
687.46 MiB gs://artifacts.[PROJECT-ID].appspot.com
947 B gs://[PROJECT-ID]_cloudbuild
252.55 MiB gs://staging.[PROJECT-ID].appspot.com
9.36 GiB gs://us.artifacts.[PROJECT-ID].appspot.com
10.3 GiB total
请注意,如果您获得"ImportError: No module named google_compute_engine"
,请参阅此issue。可以通过在运行export BOTO_CONFIG=/dev/null
之前运行gsutil
来解决。