class LogStash::Inputs::Ping::UdpProbe
Public Class Methods
new()
click to toggle source
http?
# File lib/logstash/inputs/ping.rb, line 218 def initialize @delegate = Net::Ping::UDP.new end
Public Instance Methods
duration()
click to toggle source
# File lib/logstash/inputs/ping.rb, line 226 def duration () @delegate.duration end
ping(host)
click to toggle source
# File lib/logstash/inputs/ping.rb, line 222 def ping (host) @delegate.ping (host) end