From fc70ac62c5492e756141fd25b7bcacaed9f4508d Mon Sep 17 00:00:00 2001 From: chronolaw Date: Mon, 21 Aug 2023 10:31:49 +0800 Subject: [PATCH] fix fields name --- app/_src/gateway/reference/router-expressions-language.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/_src/gateway/reference/router-expressions-language.md b/app/_src/gateway/reference/router-expressions-language.md index a3c745f44ea0..b0d31e80c4b6 100644 --- a/app/_src/gateway/reference/router-expressions-language.md +++ b/app/_src/gateway/reference/router-expressions-language.md @@ -56,8 +56,8 @@ For example, you can not perform string comparisons on a integer type field. | `http.headers.header_name` | Value of header `Header-Name`. Header names are converted to lower case, and `-` are replaced to `_`. | String | | `net.src.ip` | Source IP address of incoming connection. | IpAddr | | `net.src.port` | Source port number of incoming connection. | Int | -| `dst.src.ip` | Destination IP address of incoming connection. | IpAddr | -| `dst.src.port` | Destination port number of incoming connection. | Int | +| `net.dst.ip` | Destination IP address of incoming connection. | IpAddr | +| `net.dst.port` | Destination port number of incoming connection. | Int | ## String