Package Products :: Package ZenStatus
[hide private]
[frames] | no frames]

Source Code for Package Products.ZenStatus

 1  ############################################################################## 
 2  #  
 3  # Copyright (C) Zenoss, Inc. 2007, 2011, all rights reserved. 
 4  #  
 5  # This content is made available according to terms specified in 
 6  # License.zenoss under the directory where your Zenoss product is installed. 
 7  #  
 8  ############################################################################## 
 9   
10   
11  from CollectionStatistic import CollectionStatistic 
12  from PingTask import PingTask 
13  from PingCollectionPreferences import PingCollectionPreferences 
14  import nmap 
15  import ping 
16  import collections as _collections 
17    
18  # define a namedtuple to store hop results 
19  TraceHop = _collections.namedtuple('TraceHop', 'ip rtt') 
20