Sha256: 62d8b5033e39f5ac39796da7e206dd46814f8d7c06c3e8c098c9a72cb0557595

Contents?: true

Size: 805 Bytes

Versions: 38

Compression:

Stored size: 805 Bytes

Contents

module Fog
  module Joyent
    class Analytics
      class Real
        def get_instrumentation_value(url, requested_start_time, ndatapoints, duration)
          request(
              :path => url,
              :method => 'GET',
              :expects => 200,
              :idempotent => true,
              :query => {
                  :ndatapoints => ndatapoints,
                  :start_time => requested_start_time.to_i,
                  :duration => duration
              }
          )
        end
      end

      class Mock
        def get_instrumentation_value(url, requested_start_time, ndatapoints, duration)
          response = Excon::Response.new
          response.status = 200
          response.body = [self.data[:values]]
          response
        end
      end
    end
  end
end

Version data entries

38 entries across 36 versions & 6 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-joyent-0.0.1/lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-joyent-0.0.1/lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-joyent-0.0.1/lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
fog-joyent-0.0.1 lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
fog-1.40.0 lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
fog-1.39.0 lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
fog-1.38.0 lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
fog-1.37.0 lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
fog-1.36.0 lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
fog-1.35.0 lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
fog-2.0.0.pre.0 lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
fog-1.34.0 lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
fog-1.33.0 lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
fog-1.32.0 lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
fog-1.31.0 lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
fog-1.30.0 lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
fog-1.29.0 lib/fog/joyent/requests/analytics/get_instrumentation_value.rb
fog-1.28.0 lib/fog/joyent/requests/analytics/get_instrumentation_value.rb