cloudwatch.rb 1.1 KB

1234567891011121314151617181920212223242526272829
  1. # frozen_string_literal: true
  2. require 'fog-aws'
  3. require 'neoinfra/cloudwatch'
  4. # NeoInfra Account information
  5. module NeoInfra
  6. # Provide informations about the accounts available
  7. class Cloudwatch
  8. def get_bucket_size(key, secret, region, bucket)
  9. conf = {
  10. aws_access_key_id: key,
  11. aws_secret_access_key: secret,
  12. region: region
  13. }
  14. cwstats = Fog::AWS::CloudWatch.new(conf)
  15. cwstats.get_metric_statistics('Statistics' => ['Maximum'],
  16. 'StartTime' => DateTime.now - 7,
  17. 'EndTime' => DateTime.now,
  18. 'Period' => 3600,
  19. 'MetricName' => 'BucketSizeBytes',
  20. 'Namespace' => 'AWS/S3',
  21. 'Dimensions' => [
  22. { 'Name' => 'BucketName', 'Value' => bucket },
  23. { 'Name' => 'StorageType', 'Value' => 'StandardStorage' }
  24. ]).data[:body]['GetMetricStatisticsResult']['Datapoints'].last['Maximum']
  25. end
  26. end
  27. end