class ATSD::AlertsHistoryQuery

Class for building and executing Alerts History Query @see axibase.com/atsd/api/#alerts:-history-query

Constants

TO_ISO_LAMBDA

Public Instance Methods

execute() click to toggle source

@return (see result)

# File lib/atsd/queries/alerts_history_query.rb, line 25
def execute
  result = @client.alerts_history_query to_request_hash
  @result = result.map { |json| AlertHistory.new json }
end
result() click to toggle source

@return [Array<AlertHistory>]

Calls superclass method
# File lib/atsd/queries/alerts_history_query.rb, line 20
def result
  super
end