Package Products :: Package ZenStatus :: Module interfaces :: Class IPingResult
[hide private]
[frames] | no frames]

Class IPingResult

source code

zope.interface.Interface --+
                           |
                          IPingResult

Class to store results from ping scan.

Class Variables [hide private]
  timestamp = interface.Attribute(...
  address = interface.Attribute(...
  trace = interface.Attribute(...
  getStatusString = interface.Attribute(...
  isUp = interface.Attribute(...
  rtt = interface.Attribute(...
  variance = interface.Attribute(...
  stdDeviation = interface.Attribute(...
Class Variable Details [hide private]

timestamp

Value:
interface.Attribute("""
        Timestamp of when ping was returned (seconds since epoch).
        """)

address

Value:
interface.Attribute("""
        Address of the host
        """)

trace

Value:
interface.Attribute("""
        traceroute of the host
        """)

getStatusString

Value:
interface.Attribute("""
        status string: up or down
        """)

isUp

Value:
interface.Attribute("""
        true if host is up, false if host is down
        """)

rtt

Value:
interface.Attribute("""
        round trip time aka ping time aka rtt; nan if host was down
        """)

variance

Value:
interface.Attribute("""
        variance of the rtt; nan if host was down
        """)

stdDeviation

Value:
interface.Attribute("""
        standard deviation of the rtt; nan if host was down
        """)