Class: Sistrix::Monitoring::Reports
- Inherits:
-
Object
- Object
- Sistrix::Monitoring::Reports
- Includes:
- Base
- Defined in:
- lib/sistrix/monitoring/reports.rb
Defined Under Namespace
Classes: Record
Instance Attribute Summary collapse
-
#credits ⇒ Object
readonly
Returns the value of attribute credits.
-
#reports ⇒ Object
readonly
Returns the value of attribute reports.
Instance Method Summary collapse
- #call(options = {}) ⇒ Object
-
#initialize(options = {}) ⇒ Reports
constructor
A new instance of Reports.
Methods included from Base
#base_uri, #fetch, #method_name
Constructor Details
#initialize(options = {}) ⇒ Reports
Returns a new instance of Reports.
11 12 13 14 15 16 17 18 19 20 |
# File 'lib/sistrix/monitoring/reports.rb', line 11 def initialize( = {}) @options = { 'project' => nil, 'api_key' => Sistrix.config.api_key, }.merge() if Sistrix.config.proxy RestClient.proxy = Sistrix.config.proxy end end |
Instance Attribute Details
#credits ⇒ Object (readonly)
Returns the value of attribute credits.
9 10 11 |
# File 'lib/sistrix/monitoring/reports.rb', line 9 def credits @credits end |
#reports ⇒ Object (readonly)
Returns the value of attribute reports.
9 10 11 |
# File 'lib/sistrix/monitoring/reports.rb', line 9 def reports @reports end |
Instance Method Details
#call(options = {}) ⇒ Object
22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/sistrix/monitoring/reports.rb', line 22 def call( = {}) data = fetch() @credits = data.xpath('/response/credits').first['used'].to_i @reports = [] data.xpath('/response/answer/report').each do |r| @reports << Record.new(r) end self end |