问题 1:
pm2 的日志分割工具。几个选项不明白
https://github.com/keymetrics/pm2-logrotate
rotateModule (Defaults to true) : Rotate the log of pm2's module like other apps
workerInterval (Defaults to 30 in secs) : You can control at which interval the worker is checking the log's size (minimum is 1)
rotateInterval (Defaults to 0 0 * * * everyday at midnight): This cron is used to a force rotate when executed. We are using node-schedule to schedule cron, so all valid cron for node-schedule is valid cron for this option. Cron style :
我想问下 这个 rotateModule 选项是什么意思啊。 再有就是 workerInterval 和 rotateInterval 这两个选项放到一起我就不明白什么意思了? rotateInterval 是代表执行计划吗?,那 workerInterval 是执行间隔?。这两个一起用的时候怎么理解,到了 rotateInterval 的指定时间时,如果距离上次执行时间超过了 workerInterval 的指定时间那么就会被执行?如果没超过就取消这次执行还是推迟?
问题 2: 我现在有些日志,想要找一个可视化的工具去分析和统计一下。有什么好用的吗?最好是在线的,简单的。
问题 3: 日志文件的大小对系统和程序有影响吗?日志分割是非常有必要要做的吗?为什么?
1
rizon OP 没人。。。
|
2
Maboroshii 2019-05-10 13:43:44 +08:00
3. 日志分割是为了查阅的时候方便,比如分天记录
2. 阿里云的日志服务了解一下,可以用 sql 统计。 |