class LogStash::Inputs::Ping::TcpProbe
Public Class Methods
new()
click to toggle source
http?
# File lib/logstash/inputs/ping.rb, line 203 def initialize @delegate = Net::Ping::TCP.new end
Public Instance Methods
duration()
click to toggle source
# File lib/logstash/inputs/ping.rb, line 211 def duration () @delegate.duration end
ping(host)
click to toggle source
# File lib/logstash/inputs/ping.rb, line 207 def ping (host) @delegate.ping (host) end