Skip to content

Commit

Permalink
Fix fields name in router expression reference (#5983)
Browse files Browse the repository at this point in the history
fix fields name
  • Loading branch information
chronolaw authored Aug 21, 2023
1 parent 8abab02 commit f5c4195
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/_src/gateway/reference/router-expressions-language.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit f5c4195

Please sign in to comment.