是否可以使用WARN,ERROR,INFO日志记录键配置日志以减轻监视系统的负担?

时间:2019-03-18 16:26:50

标签: mongodb logging

是否有一种方法可以设置日志记录系统以打印消息级别和类型,以便在mongo存在问题时易于理解?

我看到有时它会打印出值得关注的信息,但是这些信息并没有标记以轻松识别它们,例如:警告,错误,信息等。

Unpooled.copiedBuffer(buffer.slice())

1 个答案:

答案 0 :(得分:0)

mongo日志行的常见格式是

<timestamp> <severity> <component> [<context>] <message>

以及您的意思是:警告,错误,信息等。

默认情况下已经存在(严重性)

严重性代码为

Level   Description
F       Fatal- The database error has caused the database to no longer be accessible
E       Error - Database errors which will stop DB execution.
W       Warning - Database messages which explains potentially harmful behaviour of DB.
I       Informational - Messages just for information purpose like ‘A new connection accepted’.
D       Debug - Mostly useful for debugging the DB errors

您可以阅读有关解码日志行herehere

的更多信息