当前位置: 首页>>代码示例>>Python>>正文


Python anomaly_detector.AnomalyDetector类代码示例

本文整理汇总了Python中luminol.anomaly_detector.AnomalyDetector的典型用法代码示例。如果您正苦于以下问题:Python AnomalyDetector类的具体用法?Python AnomalyDetector怎么用?Python AnomalyDetector使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了AnomalyDetector类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_algorithm_DefaultDetector

 def test_algorithm_DefaultDetector(self):
   """
   Test if optional parameter algorithm works as expected.
   """
   detector = AnomalyDetector(self.s1, algorithm_name='default_detector')
   self.assertEqual(detector.get_all_scores().timestamps, self.detector1.get_all_scores().timestamps)
   self.assertEqual(detector.get_all_scores().values, self.detector1.get_all_scores().values)
开发者ID:yarongguo,项目名称:naarad,代码行数:7,代码来源:run_tests.py

示例2: test_algorithm_params

 def test_algorithm_params(self):
   """
   Test if optional parameter algorithm_params works as expected.
   """
   self.assertRaises(exceptions.InvalidDataFormat, lambda: AnomalyDetector(self.s1, algorithm_name='exp_avg_detector', algorithm_params='0'))
   detector = AnomalyDetector(self.s1, algorithm_name="exp_avg_detector", algorithm_params={'smoothing_factor': 0.3})
   self.assertNotEqual(self.detector1.get_all_scores().values, detector.get_all_scores().values)
开发者ID:yarongguo,项目名称:naarad,代码行数:7,代码来源:run_tests.py

示例3: test_anomaly_threshold

 def test_anomaly_threshold(self):
   """
   Test if score_percentile_threshold works as expected.
   """
   detector = AnomalyDetector(self.s1, score_percentile_threshold=0.1, algorithm_name='exp_avg_detector')
   detector1 = AnomalyDetector(self.s1, score_percentile_threshold=0.1, algorithm_name='derivative_detector')
   self.assertNotEqual(detector1.get_anomalies(), detector.get_anomalies())
开发者ID:yarongguo,项目名称:naarad,代码行数:7,代码来源:run_tests.py

示例4: test_threshold

 def test_threshold(self):
   """
   Test score threshold=0
   """
   detector = AnomalyDetector(self.s1, score_threshold=0)
   self.assertTrue(len(detector.get_anomalies()) == 1)
   self.assertTrue(detector.get_anomalies() is not None)
开发者ID:1337newbee,项目名称:naarad,代码行数:7,代码来源:test_anomaly_detector.py

示例5: test_score_only

 def test_score_only(self):
   """
   Test that score_only parameter doesn't give anomalies
   """
   detector = AnomalyDetector(self.s1, score_only=True, algorithm_name='derivative_detector')
   detector2 = AnomalyDetector(self.s1, algorithm_name='derivative_detector')
   self.assertTrue(detector2.get_anomalies() is not None)
   self.assertTrue(len(detector.get_anomalies()) == 0)
开发者ID:1337newbee,项目名称:naarad,代码行数:8,代码来源:test_anomaly_detector.py

示例6: test_custom_algorithm

 def test_custom_algorithm(self):
   """
   Test passing a custom algorithm class
   """
   detector = AnomalyDetector(self.s1, baseline_time_series=self.s2, algorithm_class=CustomAlgo,
                              algorithm_params={'percent_threshold_upper': 20, 'percent_threshold_lower': -20})
   anomalies = detector.get_anomalies()
   self.assertTrue(anomalies is not None)
   self.assertTrue(len(anomalies) > 0)
开发者ID:1337newbee,项目名称:naarad,代码行数:9,代码来源:test_anomaly_detector.py

示例7: test_absolute_threshold_algorithm

 def test_absolute_threshold_algorithm(self):
   """
   Test "absolute threshold" algorithm with a upper and lower threshold of 0.2
   """
   detector = AnomalyDetector(self.s1, algorithm_name='absolute_threshold',
                              algorithm_params={'absolute_threshold_value_upper': 0.2,
                                                'absolute_threshold_value_lower': 0.2})
   anomalies = detector.get_anomalies()
   self.assertTrue(anomalies is not None)
   self.assertTrue(len(anomalies) > 0)
   self.assertRaises(exceptions.RequiredParametersNotPassed,
                     lambda: AnomalyDetector(self.s1, algorithm_name='absolute_threshold'))
开发者ID:1337newbee,项目名称:naarad,代码行数:12,代码来源:test_anomaly_detector.py

示例8: test_diff_percent_threshold_algorithm

 def test_diff_percent_threshold_algorithm(self):
   """
   Test "diff percent threshold" algorithm with a threshold of 20%
   """
   detector = AnomalyDetector(self.s1, baseline_time_series=self.s2, algorithm_name='diff_percent_threshold',
                              algorithm_params={'percent_threshold_upper': 20, 'percent_threshold_lower': -20})
   anomalies = detector.get_anomalies()
   self.assertTrue(anomalies is not None)
   self.assertTrue(len(anomalies) > 0)
   self.assertRaises(exceptions.RequiredParametersNotPassed,
                     lambda: AnomalyDetector(self.s1, baseline_time_series=self.s2,
                                             algorithm_name='diff_percent_threshold'))
开发者ID:1337newbee,项目名称:naarad,代码行数:12,代码来源:test_anomaly_detector.py

示例9: __init__

 def __init__(self, metrix, related_metrices):
   """
   Initializer
   :param metrix: a TimeSeries, a dictionary or a path to a csv file(str)
   :param list related_metrixes: a list of time series.
   """
   self.metrix = self._load(metrix)
   self.anomaly_detector = AnomalyDetector(metrix)
   self.related_metrices = related_metrices
   self.anomalies = self.anomaly_detector.get_anomalies()
   self._analyze()
开发者ID:Malu-hp,项目名称:naarad,代码行数:11,代码来源:rca.py

示例10: test_sign_test_algorithm_interface

  def test_sign_test_algorithm_interface(self):
    """
    Test "sign test" algorithm with a threshold of 0%
    """
    bs = dict()
    bs.update((t, 1) for t in range(1, 30))

    # Simple tests
    algorithm_params = {'percent_threshold_upper': 0,
                        'offset': 2,
                        'scan_window': 24,
                        'confidence': 0.01}
    ts = dict(bs)
    # bigger than 10 percent but below bias
    ts.update((t, 3.1) for t in range(1, 21))

    # first no anomalies
    detector = AnomalyDetector(ts, baseline_time_series=bs, algorithm_name='sign_test',
                               algorithm_params=algorithm_params)
    anomalies = detector.get_anomalies()

    self.assertTrue(anomalies is not None)
    self.assertEquals(len(anomalies), 1)

    # try lower bound
    algorithm_params = {'percent_threshold_lower': 0,
                        'offset': 2,
                        'scan_window': 24,
                        'confidence': 0.01}
    ts = dict(bs)
    # less than baseline plus bias
    ts.update((t, 2.9) for t in range(1, 25))

    # first no anomalies
    detector = AnomalyDetector(ts, baseline_time_series=bs, algorithm_name='sign_test',
                               algorithm_params=algorithm_params)
    anomalies = detector.get_anomalies()

    self.assertTrue(anomalies is not None)
    self.assertEquals(len(anomalies), 1)
开发者ID:Malu-hp,项目名称:luminol,代码行数:40,代码来源:test_anomaly_detector.py

示例11: print_tags

    if args.interpolate_period > 0:
        tf.set_interpolate(Interpolate(period={'count': args.interpolate_period, 'unit': TimeUnit.MINUTE},
                                       function=InterpolateFunction.LINEAR))

    query.set_transformation_filter(tf)

    series_list = svc.query(query)
    for series in series_list:
        metric_id = '- %s %s' % (series.metric, print_tags(series.tags))
        log('\t' + metric_id)
        # exclude empty series for specific tags
        if len(series.data) > 2:
            ts = {int(sample.t / 1000): sample.v for sample in series.data}

            detector = AnomalyDetector(ts, score_threshold=args.min_score)

            anomalies = []
            for anomaly in detector.get_anomalies():
                if time.mktime(now.timetuple()) - args.last_hours * 3600 <= anomaly.exact_timestamp:
                    anomalies.append(anomaly)

            if anomalies:
                message.append(metric_id)
                for anomaly in anomalies:
                    t_start, t_end = format_t(anomaly.start_timestamp), format_t(anomaly.end_timestamp)
                    t_exact = format_t(anomaly.exact_timestamp)
                    anomaly_msg = '\tAnomaly from %s to %s with score %s: %s, %s' % (
                        t_start, t_end, anomaly.anomaly_score, t_exact, ts[anomaly.exact_timestamp])
                    message.append(anomaly_msg)
开发者ID:axibase,项目名称:atsd-api-python,代码行数:29,代码来源:anomaly_detection.py

示例12: RCA

class RCA(object):
  def __init__(self, metrix, related_metrices):
    """
    Initializer
    :param metrix: a TimeSeries, a dictionary or a path to a csv file(str)
    :param list related_metrixes: a list of time series.
    """
    self.metrix = self._load(metrix)
    self.anomaly_detector = AnomalyDetector(metrix)
    self.related_metrices = related_metrices
    self.anomalies = self.anomaly_detector.get_anomalies()
    self._analyze()

  def _load(self, metrix):
    """
    Load time series.
    :param timeseries: a TimeSeries, a dictionary or a path to a csv file(str).
    :return TimeSeries: a TimeSeries object.
    """
    if isinstance(metrix, TimeSeries):
      return metrix
    if isinstance(metrix, dict):
      return TimeSeries(metrix)
    return TimeSeries(utils.read_csv(metrix))

  def _analyze(self):
    """
    Analyzes if a matrix has anomalies.
    If any anomaly is found, determine if the matrix correlates with any other matrixes.
    To be implemented.
    """
    output = defaultdict(list)
    output_by_name = defaultdict(list)
    scores = self.anomaly_detector.get_all_scores()

    if self.anomalies:
      for anomaly in self.anomalies:
        metrix_scores = scores
        start_t, end_t = anomaly.get_time_window()
        t = anomaly.exact_timestamp

        # Compute extended start timestamp and extended end timestamp.
        room = (end_t - start_t) / 2
        if not room:
          room = 30
        extended_start_t = start_t - room
        extended_end_t = end_t + room
        metrix_scores_cropped = metrix_scores.crop(extended_start_t, extended_end_t)

        # Adjust the two timestamps if not enough data points are included.
        while len(metrix_scores_cropped) < 2:
          extended_start_t = extended_start_t - room
          extended_end_t = extended_end_t + room
          metrix_scores_cropped = metrix_scores.crop(extended_start_t, extended_end_t)

        # Correlate with other metrics
        for entry in self.related_metrices:
          try:
            entry_correlation_result = Correlator(self.metrix, entry, time_period=(extended_start_t, extended_end_t),
                                                  use_anomaly_score=True).get_correlation_result()
            record = extended_start_t, extended_end_t, entry_correlation_result.__dict__, entry
            record_by_name = extended_start_t, extended_end_t, entry_correlation_result.__dict__
            output[t].append(record)
            output_by_name[entry].append(record_by_name)
          except exceptions.NotEnoughDataPoints:
            pass

    self.output = output
    self.output_by_name = output_by_name
开发者ID:Malu-hp,项目名称:naarad,代码行数:69,代码来源:rca.py

示例13: setUp

 def setUp(self):
   self.s1 = {0: 0, 1: 0, 2: 0, 3: 0, 4: 0.5, 5: 1, 6: 1, 7: 1, 8: 0}
   self.s2 = {0: 0, 1: 0.5, 2: 1, 3: 1, 4: 1, 5: 0, 6: 0, 7: 0, 8: 0}
   self.detector1 = AnomalyDetector(self.s1)
   self.detector2 = AnomalyDetector(self.s2)
开发者ID:yarongguo,项目名称:naarad,代码行数:5,代码来源:run_tests.py

示例14: TestAnomalyDetector

class TestAnomalyDetector(unittest.TestCase):

  def setUp(self):
    self.s1 = {0: 0, 1: 0, 2: 0, 3: 0, 4: 0.5, 5: 1, 6: 1, 7: 1, 8: 0}
    self.s2 = {0: 0, 1: 0.5, 2: 1, 3: 1, 4: 1, 5: 0, 6: 0, 7: 0, 8: 0}
    self.detector1 = AnomalyDetector(self.s1)
    self.detector2 = AnomalyDetector(self.s2)

  def test_threshold(self):
    detector = AnomalyDetector(self.s1, score_threshold=0)
    self.assertTrue(len(detector.get_anomalies()) == 1)
    self.assertTrue(detector.get_anomalies() is not None)

  def test_score_only(self):
    detector = AnomalyDetector(self.s1, score_only=True, algorithm_name='derivative_detector')
    detector2 = AnomalyDetector(self.s1, algorithm_name='derivative_detector')
    self.assertTrue(detector2.get_anomalies() is not None)
    self.assertTrue(detector.get_anomalies() is None)

  def test_get_all_scores(self):
    """
    Test if function get_all_scores works as expected.
    """
    self.assertTrue(isinstance(self.detector1.get_all_scores(), TimeSeries))
    self.assertEqual(len(self.detector1.get_all_scores()), len(self.detector1.time_series))

  def test_get_anomalies(self):
    """
    Test if anomaly is found as expected.
    """
    self.assertTrue(self.detector1.get_anomalies() is not None)

  def test_algorithm_DefaultDetector(self):
    """
    Test if optional parameter algorithm works as expected.
    """
    detector = AnomalyDetector(self.s1, algorithm_name='default_detector')
    self.assertEqual(detector.get_all_scores().timestamps, self.detector1.get_all_scores().timestamps)
    self.assertEqual(detector.get_all_scores().values, self.detector1.get_all_scores().values)

  def test_algorithm(self):
    """
    Test if exception AlgorithmNotFound is raised as expected.
    """
    self.assertRaises(exceptions.AlgorithmNotFound, lambda: AnomalyDetector(self.s1, algorithm_name='NotValidAlgorithm'))

  def test_algorithm_params(self):
    """
    Test if optional parameter algorithm_params works as expected.
    """
    self.assertRaises(exceptions.InvalidDataFormat, lambda: AnomalyDetector(self.s1, algorithm_name='exp_avg_detector', algorithm_params='0'))
    detector = AnomalyDetector(self.s1, algorithm_name="exp_avg_detector", algorithm_params={'smoothing_factor': 0.3})
    self.assertNotEqual(self.detector1.get_all_scores().values, detector.get_all_scores().values)

  def test_anomaly_threshold(self):
    """
    Test if score_percentile_threshold works as expected.
    """
    detector = AnomalyDetector(self.s1, score_percentile_threshold=0.1, algorithm_name='exp_avg_detector')
    detector1 = AnomalyDetector(self.s1, score_percentile_threshold=0.1, algorithm_name='derivative_detector')
    self.assertNotEqual(detector1.get_anomalies(), detector.get_anomalies())
开发者ID:yarongguo,项目名称:naarad,代码行数:61,代码来源:run_tests.py

示例15: test_sign_test_algorithm_with_shift

  def test_sign_test_algorithm_with_shift(self):
    """
    Test "sign test" algorithm with a threshold of 20%
    """
    bs = dict()
    bs.update({t: 1 for t in range(1, 100)})

    # Simple tests
    algorithm_params = {'percent_threshold_upper': 10,
                      'shift': 1,
                      'scan_window': 24,
                      'confidence': 0.01}
    ts = dict(bs)
    # bigger than 10 percent but below bias
    ts.update({t: 1.2 for t in range(10, 34)})

    # first no anomalies
    detector = AnomalyDetector(ts, baseline_time_series=bs, algorithm_name='sign_test',
                               algorithm_params=algorithm_params)
    anomalies = detector.get_anomalies()

    self.assertTrue(anomalies is not None)
    self.assertEquals(len(anomalies), 0)

    # Next one anomaly exactly equal to scan window
    # uses bias
    ts.update({t: 2.100001 for t in range(10, 34)})
    detector = AnomalyDetector(ts, baseline_time_series=bs, algorithm_name='sign_test',
                               algorithm_params=algorithm_params)
    anomalies = detector.get_anomalies()

    self.assertTrue(anomalies is not None)
    self.assertEquals(len(anomalies), 1)
    anomaly = anomalies[0]
    s, e = anomaly.get_time_window()

    # note the anomaly is larger than scan window
    self.assertEquals(s, 4)
    self.assertEquals(e, 39)

    # score should be roughly 98.5
    self.assertGreater(anomaly.anomaly_score, 98)
    self.assertLess(anomaly.anomaly_score, 99)

    # anomaly below baseline but not below baseline with shift
    algorithm_params = {'percent_threshold_lower': -20,
                      'shift': -0.1,
                      'scan_window': 24,
                      'confidence': 0.01}
    ts.update({t: 0.799999 for t in range(10, 34)})
    # no anomalies
    detector = AnomalyDetector(ts, baseline_time_series=bs, algorithm_name='sign_test',
                               algorithm_params=algorithm_params)
    anomalies = detector.get_anomalies()

    self.assertTrue(anomalies is not None)
    self.assertEquals(len(anomalies), 0)

    # lower the time series by 0.1
    ts.update({t: 0.699999 for t in range(10, 34)})

    detector = AnomalyDetector(ts, baseline_time_series=bs, algorithm_name='sign_test',
                               algorithm_params=algorithm_params)
    anomalies = detector.get_anomalies()
    self.assertEquals(len(anomalies), 1)
    anomaly = anomalies[0]
    s, e = anomaly.get_time_window()
    self.assertEquals(s, 4)
    self.assertEquals(e, 39)

    # score should be roughly 98.5
    self.assertGreater(anomaly.anomaly_score, 98)
    self.assertLess(anomaly.anomaly_score, 99)
开发者ID:noblerwe,项目名称:naarad,代码行数:73,代码来源:test_anomaly_detector.py


注:本文中的luminol.anomaly_detector.AnomalyDetector类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。