1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

IBM Cloud: ICOSの使用量を確認する方法

Last updated at Posted at 2024-05-15

以下で確認可能なオブジェクト数やバケットサイズは随時更新されていくため、リアルタイムとまでは行かないが、数分程度で最新状態に反映されているはずである。

UIによる確認方法

bucket詳細画面における、Configurationタブを見れば良い。以下によると、オブジェクトは 535個 あり、トータルサイズは98.8GB 存在する。なお、これはバージョニングされたオブジェクトの数も含めることに注意。

image.png

※2024/05/15追記 カラムをカスタマイズすることで、以下のようにバケット一覧の表にサイズも一緒に表示させることも可能です。
image.png
image.png

APIによる確認方法

Tokenの取得方法はIBM CloudにおけるIAMトークンの取得方法IBM Cloud: Trusted Profileを使ったVSI for VPCからの安全なAPI/CLI呼び出し方法を参照。

$ iam_token=`ibmcloud iam oauth-tokens | awk '{printf $4}'`

$ bucketname='xxxxxxxx'

$ curl -sX GET -H "authorization: Bearer $iam_token" https://config.cloud-object-storage.cloud.ibm.com/v1/b/${bucketname}  | jq
{
  "name": "xxxxxxxx",
  "service_instance_id": "2c66d594-86d5-4a50-ba34-cedb18fe3126",
  "time_created": "2019-03-27T13:42:38.004Z",
  "time_updated": "2022-07-21T00:00:46.063Z",
  "object_count": 535,
  "bytes_used": 106113078376,
  "crn": "xxxxxxxxxxxxxxxxxx",
  "service_instance_crn": "xxxxxxxxxxxxxxxxxx",
  "activity_tracking": {
    "read_data_events": true,
    "write_data_events": true,
    "activity_tracker_crn": "xxxxxxxxxxxxxxxxxx"
  },
  "noncurrent_object_count": 44,
  "noncurrent_bytes_used": 87022636422,
  "delete_marker_count": 20
}
106113078376 byteは 98.8 GB
[root@new-syasuda-tok1-vpc1 ~]# echo "scale=1; 106113078376/1024/1024/1024" | bc
98.8
1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?