Ниже приведен файл конфигурации pm2.ecosystem.js
для моего NodeJs приложения. В этой конфигурации я поместил файл журнала и файл ошибок, а также время в журнале. Но только в out_file я могу видеть время. Как я могу поддерживать время в error_file?
{
"apps" : [
{
// meanstackrelational app
"name" : "msr1",
"script" : "app.js",
// by default, the app runs in fork mode, uncomment below to run in cluster mode
// by default, the app runs in fork mode, uncomment below to run in cluster mode
"instances" : 4,
"exec_mode" : "cluster", // defaults to fork
"args" : ["color"],
"watch" : false,
"ignore_watch" : ["pids", "logs", "node_modules", "bower_components"],
"merge_logs" : true, // merge logs from all instances in cluster mode
"cwd" : ".",
"error_file" : "./logs/msrerrlog.log",
"out_file" : "./logs/msr.log",
"pid_file" : "./pids/msr.pid",
"log_date_format" : "YYYY-MM-DD HH:mm Z",
// "min_uptime" : "30s", // defaults to 1000s
// "max_restarts" : 30, // defaults to 15
// "restart_delay" : 1000,
"max_memory_restart" : "8G", // restart app if it reaches an 8GB memory footprint
"env": {
"NODE_ENV": "development",
"PORT":3001
},
"env_production" : {
"NODE_ENV": "production",
"PORT":3001
}
}
]
}