Sidekiq 7 中的日志文件重定向

Logfile redirection in Sidekiq 7

提问人:Mayukh Dasgupta 提问时间:10/19/2023 最后编辑:Mayukh Dasgupta 更新时间:10/19/2023 访问量:55

问:

下面是我的 systemd sidekiq.service 设置。我正在尝试在我的 sidekiq.log 文件中获取我的日志。

当前配置:

  • 西德基克:7.1.6
  • Redis:7.2.2
  • 乌班图:18.04
Type=simple
Environment="RAILS_ENV=staging"
WorkingDirectory=/home/workspace/rails/app
ExecStart=/home/.rbenv/shims/bundle exec sidekiq -C /home/workspace/rails/app/config/sidekiq.yml

ExecReload=/usr/bin/kill -TSTP $MAINPID

User=user
UMask=0002

Environment=MALLOC_ARENA_MAX=2

RestartSec=1
Restart=on-failure

StandardOutput=file:/home/workspace/rails/app/log/sidekiq.log
StandardError=file:/home/workspace/rails/app/log/sidekiq.log

SyslogIdentifier=sidekiq

我看不到反映在 sidekiq.log 中的日志。但是,如果我将 和 更改为 ,我可以看到日志反映在 syslog 下。编辑我的 systemd 文件后,我也重新启动了 daemon 和 sidekiq。StandardErrorStandardOutputsyslog

Ruby-on-Rails Ubuntu 日志记录 Redis Sidekiq

评论


答: 暂无答案