Sha256: 9ab709792c0a9852e97e0c8f97efed787027de058dacc1db50788ae48c2da0e5

Contents?: true

Size: 1.23 KB

Versions: 13

Compression:

Stored size: 1.23 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

  puts "Listing all Timeseries for the metric compute.googleapis.com/instance/uptime..."
  puts "-------------------------------------------------------------------------------"
  tc = connection.timeseries_collection.all("compute.googleapis.com/instance/uptime",
                                            DateTime.now.rfc3339)
  puts "Number of matches: #{tc.length}"

  puts "\nListing all Timeseries for the metric compute.googleapis.com/instance/uptime &"
  puts "the region us-central1..."
  puts "------------------------------------------------------------------------------"
  tc = connection.timeseries_collection.all("compute.googleapis.com/instance/uptime",
                                            DateTime.now.rfc3339,
                                            :labels => "cloud.googleapis.com/location=~us-central1.*")
  puts "Number of matches: #{tc.length}"
end

test

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
fog-google-0.5.5 examples/monitoring/timeseries_collection.rb
fog-google-0.5.4 examples/monitoring/timeseries_collection.rb
fog-google-0.5.3 examples/monitoring/timeseries_collection.rb
fog-google-0.5.2 examples/monitoring/timeseries_collection.rb
fog-google-0.5.1 examples/monitoring/timeseries_collection.rb
fog-google-0.5.0 examples/monitoring/timeseries_collection.rb
fog-google-0.4.2 examples/monitoring/timeseries_collection.rb
fog-google-0.4.1 examples/monitoring/timeseries_collection.rb
fog-google-0.4.0 examples/monitoring/timeseries_collection.rb
fog-google-0.3.2 examples/monitoring/timeseries_collection.rb
fog-google-0.3.1 examples/monitoring/timeseries_collection.rb
fog-google-0.3.0 examples/monitoring/timeseries_collection.rb
fog-google-0.2.0 examples/monitoring/timeseries_collection.rb