mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
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.
27 lines
799 B
Python
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()
|
|
|