I tried to set up a log rotation of logs files located at /tmp/hr_logs/. For setting up, I used logrotate in linux and I'm able to rotate it on daily basis using the following config in my /etc/logrotate.conf
  /tmp/hr_logs {
  daily
  rotate 4
With this config, file will rotate on daily basis and system will keep 4 copies of the log file appended with date [format: -YYYYMMDD]
Now, I trying to set up a different set of log files which I need to make rotate on hourly basis and for it, i have done the configuration in logrotate.conf:
  /tmp/last_logs {
  hourly
  rotate 4
But this is not at all working? Can anyone please guide me on this please?
 
     
    