mirror of
https://github.com/ceph/ceph
synced 2024-12-19 18:02:46 +00:00
18 lines
449 B
Python
18 lines
449 B
Python
|
#!/usr/bin/python
|
||
|
from __future__ import print_function
|
||
|
|
||
|
import boto3
|
||
|
import json
|
||
|
|
||
|
# endpoint and keys from vstart
|
||
|
endpoint = 'http://127.0.0.1:8000'
|
||
|
access_key='0555b35654ad1656d804'
|
||
|
secret_key='h7GhxuBLTrlhVUyxSPUKUV8r/2EI4ngqJxD7iBdBYLhwluN30JaT3Q=='
|
||
|
|
||
|
client = boto3.client('s3',
|
||
|
endpoint_url=endpoint,
|
||
|
aws_access_key_id=access_key,
|
||
|
aws_secret_access_key=secret_key)
|
||
|
|
||
|
print(json.dumps(client.get_usage_stats(), indent=2))
|