Sha256: e4afbbc7b61cb61e65b0927e13cf810128f39341f9c2c04d956a5bc1c0bceed1

Contents?: true

Size: 1.33 KB

Versions: 41

Compression:

Stored size: 1.33 KB

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
  interval = {
    :start_time => (Time.now - 1).rfc3339,
    :end_time => Time.now.to_datetime.rfc3339
  }
  puts "Listing Timeseries from the last hour for metric compute.googleapis.com/instance/uptime..."
  puts "-------------------------------------------------------------------------------"
  tc = connection.timeseries_collection.all(:filter => 'metric.type = "compute.googleapis.com/instance/uptime"',
                                            :interval => interval)
  puts "Number of matches: #{tc.length}"

  puts "\nListing all Timeseries for metric compute.googleapis.com/instance/uptime &"
  puts "the region us-central1..."
  puts "------------------------------------------------------------------------------"
  filter = [
    'metric.type = "compute.googleapis.com/instance/uptime"',
    'resource.label.zone = "us-central1-c"'
  ].join(" AND ")
  tc = connection.timeseries_collection.all(:filter => filter, :interval => interval)
  puts "Number of matches: #{tc.length}"
end

test

Version data entries

41 entries across 41 versions & 2 rubygems

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