0

我在 config.yaml 中配置了聚合选项,每 1 小时发送一次警报摘要。但是当我尝试运行它时它会引发以下错误。

File "elastalert.py", line 863, in run_rule
self.add_aggregated_alert(match, rule)
File "elastalert.py", line 1614, in add_aggregated_alert
alert_time = ts_now() + rule['aggregation']
TypeError: unsupported operand type(s) for +: 'datetime.datetime' and 'dict'
ERROR:root:Uncaught exception running rule Test Alert : unsupported operand type(s) for +: 'datetime.datetime' and 'dict'
INFO:elastalert:Rule Test Alert disabled

配置参数是:

rules_folder: test_rules
run_every:
 minutes: 15
buffer_time:
 minutes: 30
es_host: 100.38.46.3
es_port: 9200
aggregation:
 hours: 1
writeback_index: elastalert_status
alert_time_limit:
  days: 2

测试警报规则配置:

name: Test Alert
type: metric_aggregation
index: logstash-*
buffer_time: 
 minutes: 30
metric_agg_key: count
metric_agg_type: sum
query_key: "name.keyword"
doc_type: counter
max_threshold: 1
min_threshold: 0
filter:
- query:
   query_string: 
     query: "name.keyword: *timedout_count"
alert:
- "email"
email:
- "admin@abc.com"

我已关注 ElastAlert 文档,但无法弄清楚导致此问题的原因。

谢谢

4

1 回答 1

0

从错误:

TypeError: unsupported operand type(s) for +: 'datetime.datetime' and 'dict'

从你的 config.yaml

metric_agg_type: sum

它正在尝试(并且失败)对不支持求和的 datetime 和 dict 值执行求和聚合。您可能需要选择计数或唯一计数等聚合,并相应地调整警报的逻辑。

于 2018-05-15T01:21:48.397 回答