| Trees | Indices | Help |
|
|---|
|
|
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__='''RRDService
12
13 Provides RRD services to zenhub clients.
14 '''
15
16 from HubService import HubService
17 from Products.ZenRRD.Thresholds import Thresholds
18 from RRDImpl import RRDImpl
19 import logging
20 log = logging.getLogger("zenhub")
21 from Products.ZenHub.PBDaemon import translateError
24
26 HubService.__init__(self, dmd, instance)
27
28 # rrd is a dictionary of RRDUtil instances
29 self.rrd = {}
30 self.thresholds = Thresholds()
31 self.rrdimpl = RRDImpl(dmd)
32
33
34 @translateError
41
| Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1.1812 on Mon Jul 30 17:11:41 2012 | http://epydoc.sourceforge.net |