我正在使用“ winston-mongodb”在MongoDB集合中插入日志。
我的MongoDB传输如下:
new transports.MongoDB({
db : 'mongodb://127.0.0.1:27017/icwscticonnector?retryWrites=true',
collection : 'collection1',
level : 'debug',
capped : true
})
日志以以下格式插入:
{
"_id":"5cef90fa43b5f05db822f697",
"timestamp":"2019-05-30T08:14:50.904Z",
"level":"info",
"message":"Hello world",
"meta":null
}
所需格式如下(来自日志文件):
2019-05-30 14:00:11.660 [1104-20190530135135] info: readyForCalls()> Response received
Q1:如何在集合中插入“ YYYY-MM-DD HH:mm:ss.SSS”格式的时间戳
第二季度:如何在集合中添加登录ID“ [1104-20190530135135]”