diff options
-rw-r--r-- | src/controller.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/controller.c b/src/controller.c index 700596571..f21e3c51a 100644 --- a/src/controller.c +++ b/src/controller.c @@ -913,10 +913,8 @@ rspamd_controller_handle_pie_chart ( total = ctx->srv->stat->messages_scanned; if (total != 0) { - data[0] = ctx->srv->stat->actions_stat[METRIC_ACTION_NOACTION] / total * - 100.; - data[1] = ctx->srv->stat->actions_stat[METRIC_ACTION_SOFT_REJECT] / total * - 100.; + data[0] = ctx->srv->stat->actions_stat[METRIC_ACTION_NOACTION]; + data[1] = ctx->srv->stat->actions_stat[METRIC_ACTION_SOFT_REJECT]; data[2] = (ctx->srv->stat->actions_stat[METRIC_ACTION_ADD_HEADER] + ctx->srv->stat->actions_stat[METRIC_ACTION_REWRITE_SUBJECT]); data[3] = ctx->srv->stat->actions_stat[METRIC_ACTION_GREYLIST]; |