Sha256: 41735dfe5ea3458cb02f71dd5a421e9490d788e68737c40f16b452c14bbcfa93
Contents?: true
Size: 829 Bytes
Versions: 22
Compression:
Stored size: 829 Bytes
Contents
def test connection = Fog::Google::Monitoring.new puts 'Listing all Timeseries for the metric compute.googleapis.com/instance/uptime...' puts '-------------------------------------------------------------------------------' connection.timeseries_collection.all('compute.googleapis.com/instance/uptime', DateTime.now.rfc3339) puts 'Listing all Timeseries for the metric compute.googleapis.com/instance/uptime &' puts 'the region us-central1...' puts '------------------------------------------------------------------------------' connection.timeseries_collection.all('compute.googleapis.com/instance/uptime', DateTime.now.rfc3339, :labels => 'cloud.googleapis.com/location=~us-central1.*') end
Version data entries
22 entries across 20 versions & 5 rubygems