Class: LogStash::Filters::Range
- Defined in:
- lib/logstash/filters/range.rb
Overview
This filter is used to check that certain fields are within expected size/length ranges. Supported types are numbers and strings. Numbers are checked to be within numeric value range. Strings are checked to be within string length range. More than one range can be specified for same fieldname, actions will be applied incrementally. When field value is within a specified range an action will be taken. Supported actions are drop event, add tag, or add field with specified value.
Example use cases are for histogram-like tagging of events or for finding anomaly values in fields or too big events that should be dropped.
Constant Summary
Constants inherited from Base
Constants included from Config::Mixin
Instance Attribute Summary
Attributes included from Config::Mixin
Attributes inherited from Plugin
Instance Method Summary collapse
Methods inherited from Base
#execute, #initialize, #threadsafe?
Methods included from Config::Mixin
Methods inherited from Plugin
#eql?, #finished, #finished?, #hash, #initialize, #inspect, lookup, #reload, #running?, #shutdown, #teardown, #terminating?, #to_s
Constructor Details
This class inherits a constructor from LogStash::Filters::Base
Instance Method Details
#filter(event) ⇒ Object
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'lib/logstash/filters/range.rb', line 93 def filter(event) return unless filter?(event) @range_tuples.each_key do |fieldname| if event.include?(fieldname) @range_tuples[fieldname].each do |range| matched = false field = event[fieldname] case field when Integer matched = field.between?(range[:min], range[:max]) when Float matched = field.between?(range[:min], range[:max]) when String matched = field.length.between?(range[:min], range[:max]) else @logger.warn("#{self.class.name}: action field value has unsupported type") end matched = !matched if @negate next unless matched case range[:action][:name] when :drop @logger.debug? and @logger.debug("#{self.class.name}: dropping event due to range match", :event => event) event.cancel return when :add_tag @logger.debug? and @logger.debug("#{self.class.name}: adding tag due to range match", :event => event, :tag => range[:action][:tag] ) event.tag(event.sprintf(range[:action][:tag])) when :add_field @logger.debug? and @logger.debug("#{self.class.name}: adding field due to range match", :event => event, :field => range[:action][:field], :value => range[:action][:value]) new_field = event.sprintf(range[:action][:field]) if event[new_field] event[new_field] = [event[new_field]] if !event[new_field].is_a?(Array) event[new_field] << event.sprintf(range[:action][:value]) else event[new_field] = range[:action][:value].is_a?(String) ? event.sprintf(range[:action][:value]) : range[:action][:value] end end end end end filter_matched(event) end |
#register ⇒ Object
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/logstash/filters/range.rb', line 48 def register if @ranges.length % 4 != 0 raise "#{self.class.name}: ranges array should consist of 4 field tuples (field,min,max,action)" end @range_tuples = {} while !@ranges.empty? fieldname, min, max, action = @ranges.shift(4) raise "#{self.class.name}: range field name value should be a string" if !fieldname.is_a?(String) raise "#{self.class.name}: range min value should be a number" if !min.is_a?(Integer) and !min.is_a?(Float) raise "#{self.class.name}: range max value should be a number" if !max.is_a?(Integer) and !max.is_a?(Float) raise "#{self.class.name}: range action value should be a string" if !action.is_a?(String) action = action.split(':') case action.first when "drop" raise "#{self.class.name}: drop action does not accept any parameters" unless action.length == 1 action = { :name => :drop } when "tag" raise "#{self.class.name}: tag action accepts exactly one arg which is a tag name" unless action.length == 2 action = { :name => :add_tag, :tag => action.last } when "field" raise "#{self.class.name}: field action accepts exactly 2 args which are a field name and field value" unless action.length == 3 if action.last == action.last.to_i.to_s value = action.last.to_i elsif action.last == action.last.to_f.to_s value = action.last.to_f else value = action.last end action = { :name => :add_field, :field => action[1], :value => value } else raise "#{self.class.name}: unsupported action #{action}" end @range_tuples[fieldname] ||= [] @range_tuples[fieldname] << { :min => min, :max => max, :action => action } end end |