Sha256: 3ab52d47a969ba44e17bf8b4bb1019b88b52d27a6b6c64ba903353f58bb325e2

Contents?: true

Size: 875 Bytes

Versions: 42

Compression:

Stored size: 875 Bytes

Contents

# All examples presume that you have a ~/.fog credentials file set up.
# # More info on it can be found here: http://fog.io/about/getting_started.html
#
require "bundler"
Bundler.require(:default, :development)
# Uncomment this if you want to make real requests to GCE (you _will_ be billed!)
# WebMock.disable!
#

def test
  connection = Fog::Google::Monitoring.new

  puts "Listing all MetricDescriptors..."
  puts "--------------------------------"
  md = connection.metric_descriptors
  puts "Number of all metric descriptors: #{md.length}"

  puts "\nListing all MetricDescriptors related to Google Compute Engine..."
  puts "-----------------------------------------------------------------"
  md = connection.metric_descriptors.all(:filter => 'metric.type = starts_with("compute.googleapis.com")')
  puts "Number of compute metric descriptors: #{md.length}"
end

test

Version data entries

42 entries across 42 versions & 2 rubygems

Version Path
fog-google-1.24.1 examples/monitoring/metric_descriptors.rb
fog-google-1.24.0 examples/monitoring/metric_descriptors.rb
fog-google-1.23.0 examples/monitoring/metric_descriptors.rb
fog-google-1.22.0 examples/monitoring/metric_descriptors.rb
fog-google-1.21.1 examples/monitoring/metric_descriptors.rb
fog-google-1.21.0 examples/monitoring/metric_descriptors.rb
fog-google-1.20.0 examples/monitoring/metric_descriptors.rb
fog-google-1.19.0 examples/monitoring/metric_descriptors.rb
fog-google-1.18.0 examples/monitoring/metric_descriptors.rb
fog-google-1.17.0 examples/monitoring/metric_descriptors.rb
fog-google-1.16.1 examples/monitoring/metric_descriptors.rb
fog-google-1.16.0 examples/monitoring/metric_descriptors.rb
fog-google-1.15.0 examples/monitoring/metric_descriptors.rb
fog-google-1.14.0 examples/monitoring/metric_descriptors.rb
gitlab-fog-google-1.14.0 examples/monitoring/metric_descriptors.rb
fog-google-1.13.0 examples/monitoring/metric_descriptors.rb
gitlab-fog-google-1.13.0 examples/monitoring/metric_descriptors.rb
fog-google-1.12.1 examples/monitoring/metric_descriptors.rb
fog-google-1.12.0 examples/monitoring/metric_descriptors.rb
fog-google-1.11.0 examples/monitoring/metric_descriptors.rb