From 8dc04e1bf4d48dd5af65590455deac338cf67f6c Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Fri, 25 Sep 2015 13:46:42 +0100 Subject: [PATCH] Save learned messages count. --- src/controller.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/controller.c b/src/controller.c index f5d7e7637..4fcc72996 100644 --- a/src/controller.c +++ b/src/controller.c @@ -2110,6 +2110,12 @@ rspamd_controller_load_saved_stats (struct rspamd_controller_worker_ctx *ctx) stat_copy.messages_scanned = ucl_object_toint (elt); } + elt = ucl_object_find_key (obj, "learned"); + + if (elt != NULL && ucl_object_type (elt) == UCL_INT) { + stat_copy.messages_learned = ucl_object_toint (elt); + } + elt = ucl_object_find_key (obj, "actions"); if (elt != NULL) { @@ -2204,6 +2210,8 @@ rspamd_controller_store_saved_stats (struct rspamd_controller_worker_ctx *ctx) top = ucl_object_typed_new (UCL_OBJECT); ucl_object_insert_key (top, ucl_object_fromint ( stat->messages_scanned), "scanned", 0, false); + ucl_object_insert_key (top, ucl_object_fromint ( + stat->messages_learned), "learned", 0, false); if (stat->messages_scanned > 0) { sub = ucl_object_typed_new (UCL_OBJECT); -- 2.39.5