module Lumberjack::Beats
Constants
- FILEBEAT_LOG_LINE_FIELD
- LSF_LOG_LINE_FIELD
- SEQUENCE_MAX
- json
Public Class Methods
dump(v)
click to toggle source
# File lib/lumberjack/beats.rb, line 12 def self.dump(v) v.to_json end
json()
click to toggle source
# File lib/lumberjack/beats.rb, line 17 def self.json @@json end
json=(j)
click to toggle source
# File lib/lumberjack/beats.rb, line 21 def self.json=(j) @@json = j end
load(blob)
click to toggle source
# File lib/lumberjack/beats.rb, line 9 def self.load(blob) JSON.parse(blob) end