Package Products :: Package ZenModel :: Module BuiltInDS
[hide private]
[frames] | no frames]

Source Code for Module Products.ZenModel.BuiltInDS

 1  ############################################################################## 
 2  #  
 3  # Copyright (C) Zenoss, Inc. 2007, 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  __doc__="""BuiltInDS 
12   
13  Define a data source for RRD files that just appear without 
14  additional configuration. 
15  """ 
16   
17  from Globals import InitializeClass 
18  from RRDDataSource import RRDDataSource 
19   
20 -class BuiltInDS(RRDDataSource):
21 22 sourcetypes = ('Built-In',) 23 sourcetype = 'Built-In'
24 25 InitializeClass(BuiltInDS) 26