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