module Giraffi::Client::Logs
Defines methods related to the logs generated by the Giraffi
Public Instance Methods
count_axion_logs(options={})
click to toggle source
Returns the number of logs related to the axions
@param options [Hash] The request params to retrieve the desired logs to count @return [HTTParty::Response]
# File lib/giraffi/client/logs.rb, line 18 def count_axion_logs(options={}) self.class.get("/logs/axion/count.json?apikey=#{apikey}", query: options) end
find_axion_logs(options={})
click to toggle source
Returns the desired logs related to the axions
@param options [Hash] The request params to retrieve the desired logs @return [HTTParty::Response]
# File lib/giraffi/client/logs.rb, line 10 def find_axion_logs(options={}) self.class.get("/logs/axion.json?apikey=#{apikey}", query: options) end