class LogStash::Inputs::Ping::ExternalProbe
Public Class Methods
new()
click to toggle source
# File lib/logstash/inputs/ping.rb, line 173 def initialize @delegate = Net::Ping::External.new end
Public Instance Methods
duration()
click to toggle source
# File lib/logstash/inputs/ping.rb, line 181 def duration () @delegate.duration end
ping(host)
click to toggle source
# File lib/logstash/inputs/ping.rb, line 177 def ping (host) @delegate.ping (host) end