Getting bucket information and statistics
Getting bucket information
To view full information about a bucket:
- In the management console
, select Object Storage from the list of services and go to the bucket in question. - In the left-hand panel, select the appropriate section with bucket information.
Objects: List of objects stored in the bucket. Settings: Main bucket settings, information about website hosting in the bucket, versioning, logging, and lifecycles of bucket objects. Security: Description of access permissions and policy in the bucket, information about HTTPS and CORS configurations, object locks and object encryption in the bucket.
If you do not have the Yandex Cloud CLI yet, install and initialize it.
The folder specified in the CLI profile is used by default. You can specify a different folder through the --folder-name
or --folder-id
parameter.
-
See the description of the CLI command for getting bucket information:
yc storage bucket get --help
-
Get a list of buckets in the default folder:
yc storage bucket list
Result:
+------------------+----------------------+----------+-----------------------+---------------------+ | NAME | FOLDER ID | MAX SIZE | DEFAULT STORAGE CLASS | CREATED AT | +------------------+----------------------+----------+-----------------------+---------------------+ | first-bucket | b1gmit33ngp6******** | 0 | STANDARD | 2022-12-16 13:58:18 | +------------------+----------------------+----------+-----------------------+---------------------+
-
Save the name (from the
NAME
column) of the bucket you want to get information about. -
Get bucket info:
yc storage bucket get <bucket_name> --full
Result:
name: first-bucket folder_id: b1gmit33ngp6******** anonymous_access_flags: read: false list: false config_read: false default_storage_class: ICE versioning: VERSIONING_ENABLED max_size: "5368709120" acl: grants: - permission: PERMISSION_READ grant_type: GRANT_TYPE_ACCOUNT grantee_id: ajep03tkmqqr******** created_at: "2023-04-10T19:41:30.266075Z" website_settings: index: index.html error: 404.html redirect_all_requests: {}
Getting bucket statistics
To view bucket statistics:
-
In the management console
, select Object Storage from the list of services and go to the bucket in question. -
In the left-hand panel, select
Monitoring. -
On the page that opens, you can view bucket statistics for a certain period:
The page displays the following dashboards:
Read Requests: Number ofGET
,HEAD
,LIST
, andOPTIONS
requests. Modify Requests: Number ofPUT
,POST
, andDELETE
requests. Traffic: Outgoing traffic size. Objects counts: Number of bucket objects. Space by object type: Used storage space by object type (single part objects, multipart objects, or object parts). Space by storage type: Used storage space used by storage class.
If you do not have the Yandex Cloud CLI yet, install and initialize it.
The folder specified in the CLI profile is used by default. You can specify a different folder through the --folder-name
or --folder-id
parameter.
-
See the description of the CLI command for getting bucket statistics:
yc storage bucket stats --help
-
Get a list of buckets in the default folder:
yc storage bucket list
Result:
+------------------+----------------------+----------+-----------------------+---------------------+ | NAME | FOLDER ID | MAX SIZE | DEFAULT STORAGE CLASS | CREATED AT | +------------------+----------------------+----------+-----------------------+---------------------+ | first-bucket | b1gmit33ngp6******** | 0 | STANDARD | 2022-12-16 13:58:18 | +------------------+----------------------+----------+-----------------------+---------------------+
-
Save the name (from the
NAME
column) of the bucket you want to get statistics on. -
Get bucket statistics:
yc storage bucket stats <bucket_name>
Result:
name: first-bucket max_size: "5368709120" used_size: "621552" storage_class_used_sizes: - storage_class: STANDARD class_size: "607467" - storage_class: COLD class_size: "14085" storage_class_counters: - storage_class: STANDARD counters: simple_object_size: "607467" simple_object_count: "41" - storage_class: COLD counters: simple_object_size: "14085" simple_object_count: "16" default_storage_class: ICE anonymous_access_flags: read: false list: false config_read: false created_at: "2023-04-10T19:41:30.266075Z" updated_at: "2023-08-02T04:05:44.564924Z"