aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2016-06-14 23:09:24 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2016-06-14 23:09:24 +0100
commitb4b74e7d0531a414c93d4416fb7e4176c0a8fca7 (patch)
treea6afeadd83ab37d0efc7ba2d03d7ba4868f2a96d /utils
parenteb1eaf0f1020c582f25bc0fdbbe61a0850a895ca (diff)
downloadrspamd-b4b74e7d0531a414c93d4416fb7e4176c0a8fca7.tar.gz
rspamd-b4b74e7d0531a414c93d4416fb7e4176c0a8fca7.zip
[Minor] Add some more stats
Diffstat (limited to 'utils')
-rw-r--r--utils/received_parser_bench.c27
1 files changed, 25 insertions, 2 deletions
diff --git a/utils/received_parser_bench.c b/utils/received_parser_bench.c
index 4979d858a..18c48ee10 100644
--- a/utils/received_parser_bench.c
+++ b/utils/received_parser_bench.c
@@ -21,6 +21,10 @@
static gdouble total_time = 0;
static gint total_parsed = 0;
+static gint total_valid = 0;
+static gint total_real_ip = 0;
+static gint total_real_host = 0;
+static gint total_known_proto = 0;
static void
rspamd_process_file (const gchar *fname)
@@ -59,6 +63,20 @@ rspamd_process_file (const gchar *fname)
total_time += t2 - t1;
total_parsed ++;
+
+ if (rh.addr) {
+ total_real_ip ++;
+ }
+ if (rh.real_hostname) {
+ total_real_host ++;
+ }
+ if (rh.type != RSPAMD_RECEIVED_UNKNOWN) {
+ total_known_proto ++;
+ }
+
+ if (rh.by_hostname) {
+ total_valid ++;
+ }
}
if (err) {
@@ -83,8 +101,13 @@ main (int argc, char **argv)
}
}
- rspamd_printf ("Parsed %d received headers in %.3f seconds\n",
- total_parsed, total_time);
+ rspamd_printf ("Parsed %d received headers in %.3f seconds\n"
+ "Total valid (has by part): %d\n"
+ "Total real ip: %d\n"
+ "Total real host: %d\n"
+ "Total known proto: %d\n",
+ total_parsed, total_time,
+ total_valid, total_real_ip, total_real_host, total_known_proto);
return 0;
}