Exemple #1
0
 def __init__(self,
              name,
              source=None,
              destination=None,
              custom_workflow_param=None):
     self.custom_workflow_param = custom_workflow_param
     Workflow.__init__(self, name, source, destination)
Exemple #2
0
 def __init__(
     self,
     name,
     source=None,
     destination=None,
     interval="day",
     threshold=2.5,
     window=7,
     raw_data_col_name="_raw",
 ):
     self.interval = interval
     self._threshold = threshold
     self._window = window
     self._snp = SplunkNotableParser()
     self._raw_data_col_name = raw_data_col_name
     Workflow.__init__(self, name, source, destination)