class LogStash::Filters::MathFunctions::Multiply

Public Instance Methods

call(op1, op2) click to toggle source
# File lib/logstash/filters/math_functions.rb, line 59
def call(op1, op2)
  op1 * op2
end
name() click to toggle source
# File lib/logstash/filters/math_functions.rb, line 55
def name
  "multiply"
end