class Fluent::AppdynamicsInput::MemoryStateStore

Class store in memory

Public Class Methods

new() click to toggle source
# File lib/fluent/plugin/in_appdynamics.rb, line 72
def initialize
  @data = {}
end

Public Instance Methods

last_records(tag=nil) click to toggle source
# File lib/fluent/plugin/in_appdynamics.rb, line 76
def last_records(tag=nil)
  @data['last_records'] ||= {}
end
update_records(time,tag=nil) click to toggle source
# File lib/fluent/plugin/in_appdynamics.rb, line 80
def update_records(time,tag=nil)
end