diff options
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/main.h b/src/main.h index 63a94b462..2331dbdb5 100644 --- a/src/main.h +++ b/src/main.h @@ -76,10 +76,9 @@ struct worker_task; */ struct rspamd_stat { guint messages_scanned; /**< total number of messages scanned */ - guint messages_spam; /**< messages treated as spam */ - guint messages_ham; /**< messages treated as ham */ - guint connections_count; /**< total connections count */ - guint control_connections_count; /**< connections count to control interface */ + guint actions_stat[METRIC_ACTION_NOACTION + 1]; /**< statistic for each action */ + guint connections_count; /**< total connections count */ + guint control_connections_count; /**< connections count to control interface */ guint messages_learned; /**< messages learned */ guint fuzzy_hashes; /**< number of fuzzy hashes stored */ guint fuzzy_hashes_expired; /**< number of fuzzy hashes expired */ |