Exemplo n.º 1
0
 def __init__(self,
              username,
              name,
              dir_yaml=None,
              dir_diag=None,
              dir_output=None,
              img_type=None):
     self.list_services_found = []
     self.list_unknown_services_found = []
     # call parent init function
     BaseClusterMap.__init__(self, username, name, "service", dir_yaml,
                             dir_diag, dir_output, img_type)
 def __init__(self,
              username,
              name,
              dir_yaml=None,
              dir_diag=None,
              dir_output=None,
              img_type=None,
              min_temp=0,
              max_temp=100):
     self.setTemperatureMinMax(min_temp, max_temp)
     # call parent init function
     BaseClusterMap.__init__(self, username, name, "temperature", dir_yaml,
                             dir_diag, dir_output, img_type)
Exemplo n.º 3
0
 def __init__(self,
              username,
              name,
              dir_yaml=None,
              dir_diag=None,
              dir_output=None,
              img_type=None,
              min_temp=0,
              max_temp=100):
     self.setTemperatureMinMax(min_temp, max_temp)
     # call parent init function
     BaseClusterMap.__init__(self,
                             username,
                             name,
                             "temperature",
                             dir_yaml,
                             dir_diag,
                             dir_output,
                             img_type)
 def __init__(self, username, name, dir_yaml=None, dir_diag=None, dir_output=None, img_type=None ):
     self.list_services_found = []
     self.list_unknown_services_found = []
     # call parent init function
     BaseClusterMap.__init__(self, username, name, "service", dir_yaml, dir_diag, dir_output, img_type)