From b4a1c0014906d9c13f3ccfb297de919bb0dcac80 Mon Sep 17 00:00:00 2001 From: Christian Deacon Date: Sun, 23 Mar 2025 21:09:39 -0400 Subject: [PATCH] Update README. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 074ce8f..840b6b6 100644 --- a/README.md +++ b/README.md @@ -173,8 +173,10 @@ Here are more details on the layout of the runtime configuration. | log | bool | `false` | Whether to log packets that are matched. | | action | int | `1` | The value of `0` drops or blocks the packet while `1` allows/passes the packet through. | | block_time | int | `1` | The amount of seconds to block the source IP for if matched. | -| pps | int64 | `NULL` | Matches if this threshold of packets per second is exceeded for a source IP. | -| bps | int64 | `NULL` | Matches if this threshold of bytes per second is exceeded for a source IP. | +| ip_pps | int64 | `NULL` | Matches if this threshold of packets per second is exceeded for a source IP. | +| ip_bps | int64 | `NULL` | Matches if this threshold of bytes per second is exceeded for a source IP. | +| flow_pps | int64 | `NULL` | Matches if this threshold of packets per second is exceeded for a source flow (IP and port). | +| flow_bps | int64 | `NULL` | Matches if this threshold of bytes per second is exceeded for a source flow (IP and port). | #### IP Options | Name | Type | Default | Description |