]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
doc: update bypass stats doc
authorEric Leblond <eric@regit.org>
Mon, 10 Jun 2019 21:20:25 +0000 (23:20 +0200)
committerVictor Julien <victor@inliniac.net>
Tue, 18 Jun 2019 05:07:02 +0000 (07:07 +0200)
doc/userguide/capture-hardware/ebpf-xdp.rst

index c7e055b3c69cb7e1539da645c82c6b805c680847..37d1143d297a0b49e043b24eafdd1789f7428101 100644 (file)
@@ -502,7 +502,23 @@ each interfaces ::
  Success:
  {
      "enp94s0np0": {
-         "ipv4_count": 42524,
-         "ipv6_count": 3304
+        "ipv4_fail": 0,
+        "ipv4_maps_count": 2303,
+        "ipv4_success": 4232,
+        "ipv6_fail": 0,
+        "ipv6_maps_count": 13131,
+        "ipv6_success": 13500
+
      }
  }
+
+The stats entry also contains a `stats.flow_bypassed` object that has local and capture
+bytes and packets counters as well as a bypassed and closed flow counter ::
+
+ {
+   "local_pkts": 0,
+   "local_bytes": 0,
+   "closed": 84,
+   "pkts": 4799,
+   "bytes": 2975133
+ }