class LogStash::Inputs::Ping::HttpProbe

Public Class Methods

new() click to toggle source

warning, exception

# File lib/logstash/inputs/ping.rb, line 188
def initialize
    @delegate = Net::Ping::HTTP.new
end

Public Instance Methods

duration() click to toggle source
# File lib/logstash/inputs/ping.rb, line 196
def duration ()
  @delegate.duration
end
ping(host) click to toggle source
# File lib/logstash/inputs/ping.rb, line 192
def ping (host)
    @delegate.ping (host)
end