File: timeseries_collection.rb

package info (click to toggle)
ruby-fog-google 1.19.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,568 kB
  • sloc: ruby: 16,775; makefile: 3
file content (32 lines) | stat: -rw-r--r-- 1,367 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# 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