如何使用cron添加时间戳来记录输出条目?

问题描述 投票:2回答:2

我正在尝试安排htcacheclean用cron每隔半小时运行一次。服务本身运行正常,但我无法弄清楚如何将时间戳附加到日志条目本身(而不是cron-log文件名)。

我无法在任何地方找到答案,如何将时间戳添加到日志条目本身。我只是看到如何将日期时间戳添加到cron日志文件名的问题和答案,这不是我想要做的。

这就是我现在在crontab -e所拥有的:

0,30  *   *   *   *       /usr/sbin/htcacheclean -v -n -t -p/var/cache/apache/mod_disk_cache -l1M >> /path/to/cron-output.log 2>&1

目前这是我的输出打印方式:

Statistics:
size limit 1.0M
total size was 167.4K, total size now 167.4K
total entries was 5, total entries now 5

现在我只需要在“统计”之前的日志条目旁边显示一个时间戳。

编辑:

我正在尝试做的例子:

0000-00-00 00:00:00: Statistics:
size limit 1.0M
total size was 167.4K, total size now 167.4K
total entries was 5, total entries now 5

我想添加年,月,日,小时,分钟和秒。

提前谢谢!

解:

我想按照@glenn jackman的建议在这里添加完整的解决方案。

0,30  *  *  *  *    { printf "\%s: " "$(date "+\%F \%T")"; /usr/sbin/htcacheclean -v -n -t -p/var/cache/apache/mod_disk_cache -l1M ; } >> /path/to/cron-output.log 2>&1

在cron任务中添加printf命令后,现在我的输出如下:

2018-02-05 21:10:01: Statistics:
size limit 1.0M
total size was 1009.0K, total size now 1009.0K
total entries was 24, total entries now 24
bash apache cron
2个回答
3
投票

您可以在cron条目中使用date命令,如下所示:

0,30 * * * * { printf "\%s: " "$(date "+\%F \%T")"; /usr/sbin/htcacheclean -v -n -t -p/var/cache/apache/mod_disk_cache -l1M ; } >> /path/to/cron-output.log 2>&1
# ...........^.^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^.........................................................................^^^

printf有点复杂,但它会像你想要的那样压制换行符。

编辑逃脱百分号。见下面的评论。


0
投票

我正在使用这个。

#backup.sh
(date; /usr/bin/rsync -au  /sorcedir/ /dest/dir) &> /somedir/logfile.log

#crontab -e
*/30 */1 * * * /bin/bash /somedir/backup.sh
© www.soinside.com 2019 - 2024. All rights reserved.