基于键值的流利的多重输出

时间:2019-10-14 15:58:38

标签: fluentd

我的唱片像这样

import re

a = "test.123.txt"
regex = r"([^0-9]*)"

m = re.search(regex, a) # match all characters except number
m.group(1) # -> 'abc_'

我想根据“ type”的值将记录转储到不同的输出中,因此我使用了本SO帖子中的建议:Fluentd: Multiple formats in one match

但是它似乎不起作用。我的配置有什么问题吗?

[{"type":"click","level":"error"},
 {"type":"show", "level": "info"}]

0 个答案:

没有答案