class Wavefront::Report

This class is now a shim around Wavefront::Write, which forces the use of the Wavefront::Writer::Api writer. It is probably better to use Wavefront::Write directly. This class has been left in for backward-compatability.

Public Class Methods

new(creds = {}, opts = {}) click to toggle source
Calls superclass method
# File lib/wavefront-sdk/report.rb, line 13
def initialize(creds = {}, opts = {})
  opts[:writer] = :api
  super(creds, opts)
end