We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
data = {'a':1, 'b': 2} logger.error(data)
可以构建字段为a, b的域 问题1: 与现有冲突时, 处理策略是什么? 问题2: 将message索引构建为JSON的区别(更加灵活, 因为打log时, 格式是混合的)
其他情况: 2. KV格式, 例如字符串的, 自动提取Key
data = 'name=xiaoming home="nanjing" score=12.5' logger.info(data)
自动构建name, home, score字段, 能够识别双引号等
The text was updated successfully, but these errors were encountered:
add support for auto-json extraction #76
065bf4b
format it as "" for None instead of "None" #76
57772a4
fixed in 0.6.30
Sorry, something went wrong.
No branches or pull requests
可以构建字段为a, b的域
问题1: 与现有冲突时, 处理策略是什么?
问题2: 将message索引构建为JSON的区别(更加灵活, 因为打log时, 格式是混合的)
其他情况:
2. KV格式, 例如字符串的, 自动提取Key
自动构建name, home, score字段, 能够识别双引号等
The text was updated successfully, but these errors were encountered: