1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00
mailinabox/management/reporting/capture/logs/ReadPositionStore.py
downtownallday 2a0e50c8d4 Initial commit of a log capture and reporting feature
This adds a new section to the admin panel called "Activity", that
supplies charts, graphs and details about messages entering and leaving
the host.

A new daemon captures details of system mail activity by monitoring
the /var/log/mail.log file, summarizing it into a sqllite database
that's kept in user-data.
2021-01-11 18:02:07 -05:00

27 lines
799 B
Python

'''subclass this and override all methods to persist the position of
the log file that has been processed so far.
this enables the log monitor to pick up where it left off
a single FilePositionStore can safely be used with multiple
LogMonitor instances
'''
class ReadPositionStore(object):
def get(self, log_file, inode):
'''return the offset from the start of the file of the last
position saved for log_file having the given inode, or zero if
no position is currently saved
'''
raise NotImplementedError()
def save(self, log_file, inode, offset):
'''save the current position'''
raise NotImplementedError()
def clear(self, log_file):
'''remove all entries for `log_file`'''
raise NotImplementedError()