class LogStash::Filters::MathFunctions::Round

Public Instance Methods

call(op1, op2) click to toggle source
# File lib/logstash/filters/math_functions.rb, line 71
def call(op1, op2)
  op1.round(op2)
end
name() click to toggle source
# File lib/logstash/filters/math_functions.rb, line 67
def name
  "round"
end