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.
51 lines
1.3 KiB
Python
51 lines
1.3 KiB
Python
import datetime
|
|
from .DictCache import DictCache
|
|
|
|
#
|
|
# because of the table scan (select_2 below), cache stats for 5
|
|
# minutes
|
|
#
|
|
last_stats = DictCache(datetime.timedelta(minutes=5))
|
|
|
|
def clear_cache():
|
|
last_stats.reset()
|
|
|
|
|
|
def capture_db_stats(conn):
|
|
|
|
stats = last_stats.get()
|
|
if stats:
|
|
return stats
|
|
|
|
select_1 = 'SELECT min(connect_time) AS `min`, max(connect_time) AS `max`, count(*) AS `count` FROM mta_connection'
|
|
|
|
# table scan
|
|
select_2 = 'SELECT disposition, count(*) AS `count` FROM mta_connection GROUP BY disposition'
|
|
|
|
c = conn.cursor()
|
|
stats = {
|
|
# all times are in this format: "YYYY-MM-DD HH:MM:SS" (utc)
|
|
'date_parse_format': '%Y-%m-%d %H:%M:%S'
|
|
}
|
|
try:
|
|
row = c.execute(select_1).fetchone()
|
|
stats['mta_connect'] = {
|
|
'connect_time': {
|
|
'min': row['min'],
|
|
'max': row['max'], # YYYY-MM-DD HH:MM:SS (utc)
|
|
},
|
|
'count': row['count'],
|
|
'disposition': {}
|
|
}
|
|
|
|
for row in c.execute(select_2):
|
|
stats['mta_connect']['disposition'][row['disposition']] = {
|
|
'count': row['count']
|
|
}
|
|
|
|
finally:
|
|
c.close()
|
|
|
|
last_stats.set(stats)
|
|
return stats
|