Log rolling question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • elake

    #1

    Log rolling question

    I have an application that creates a lot of large log files. I only
    want to keep logs for the previous 4 months. I am looking for a way to
    list the contents of the log dir and if the create date on the log is
    older than 4 months delete it. I have looked at the os.stat() function
    to get the created date but I can't figure out how to get the date to
    go back to a previos time.

    Any help would be appreciated.

  • Larry Bates

    #2
    Re: Log rolling question

    import time
    #
    # 120 days, 24 hours, 60 monutes, 60 seconds
    #
    fourmonthsago=t ime.time()-(120*24*60*60)

    Compare fourmonthsago value to modified date of files.
    Delete those that are less.

    Larry Bates


    elake wrote:[color=blue]
    > I have an application that creates a lot of large log files. I only
    > want to keep logs for the previous 4 months. I am looking for a way to
    > list the contents of the log dir and if the create date on the log is
    > older than 4 months delete it. I have looked at the os.stat() function
    > to get the created date but I can't figure out how to get the date to
    > go back to a previos time.
    >
    > Any help would be appreciated.
    >[/color]

    Comment

    • elake

      #3
      Re: Log rolling question

      Is there a way to do this for a whole calendar month?

      Comment

      • Bengt Richter

        #4
        Re: Log rolling question

        On 25 Oct 2005 10:22:24 -0700, "elake" <ericlake@gmail .com> wrote:
        [color=blue]
        >Is there a way to do this for a whole calendar month?
        >[/color]
        Yes, if you can specify exactly what you want to do. E.g.,
        today is 2005-10-25. What date would you like as the earliest
        to keep for the four months? What if today's date was not
        available in the month of four months ago? Do you want to
        have cleansed logs always start on the first day of a month?
        if so, do you want to go back four prior months, or consider
        any current month days as being a month-log even if partial,
        and only include 3 prior months? You haven't defined your requirements ;-)

        if you wanted to go back to the first day of four months back, maybe
        you could call that earliest_time and delete all files where after
        import os, stat
        you remove files where
        os.stat(pathtof ile)[stat.ST_MTIME] < earliest_time

        going back from current time might go something like
        [color=blue][color=green][color=darkred]
        >>> import time
        >>> y,m = time.localtime( )[:2]
        >>> y,m[/color][/color][/color]
        (2005, 10)[color=blue][color=green][color=darkred]
        >>> y,m = divmod(y*12+m-1-4,12) # -1 for 0..11 months
        >>> m+=1 # back to 1..12
        >>> y,m[/color][/color][/color]
        (2005, 6)[color=blue][color=green][color=darkred]
        >>> time.strptime(' %04d-%02d-01'%(y,m), '%Y-%m-%d')[/color][/color][/color]
        (2005, 6, 1, 0, 0, 0, 2, 152, -1)[color=blue][color=green][color=darkred]
        >>> earliest_time = time.mktime(tim e.strptime('%04 d-%02d-01'%(y,m), '%Y-%m-%d'))
        >>> earliest_time[/color][/color][/color]
        1117609200.0[color=blue][color=green][color=darkred]
        >>> time.ctime(earl iest_time)[/color][/color][/color]
        'Wed Jun 01 00:00:00 2005'

        Hm ...
        Jun, Jul, Aug, Sep, Oct
        -4 -3 -2 -1 -0
        I guess that guarantees 4 full prior months.

        I used strptime to build a complete 9-tuple rather than doing it by hand, which
        I'm not sure off hand how to do ;-)

        There's another module that does date interval addition/subtraction, but it didn't
        come with the batteries in my version.

        BTW, make sure all your date stuff is using the same epoch base date, in case you
        have some odd variant source of numerically encoded dates, e.g., look at
        [color=blue][color=green][color=darkred]
        >>> import time
        >>> time.localtime( 0)[/color][/color][/color]
        (1969, 12, 31, 16, 0, 0, 2, 365, 0)[color=blue][color=green][color=darkred]
        >>> time.ctime(0)[/color][/color][/color]
        'Wed Dec 31 16:00:00 1969'[color=blue][color=green][color=darkred]
        >>> time.gmtime(0)[/color][/color][/color]
        (1970, 1, 1, 0, 0, 0, 3, 1, 0)

        Regards,
        Bengt Richter

        Comment

        • NickC

          #5
          Re: Log rolling question

          If you're on Python 2.4, then consider whether or not you can use a
          TimedRotatingLo gFileHandler from the logging module to handle this for
          you:
          The official home of the Python Programming Language


          Of course, that only works if defining a "month" as 30 days is
          acceptable. If you genuinely need calendar months, then you still need
          to do it manually.

          Comment

          Working...