We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bb407dd + ec61190 commit a157566Copy full SHA for a157566
pkg/model/fields/fields.go
@@ -54,6 +54,11 @@ const (
54
Duplicate = "Duplicate"
55
TimeFlowRTT = "TimeFlowRttNs"
56
TCPFlags = "Flags"
57
+ XlatSrcPort = "XlatSrcPort"
58
+ XlatDstPort = "XlatDstPort"
59
+ XlatSrcAddr = "XlatSrcAddr"
60
+ XlatDstAddr = "XlatDstAddr"
61
+ XlatZoneID = "ZoneId"
62
)
63
64
func IsNumeric(v string) bool {
@@ -69,7 +74,10 @@ func IsNumeric(v string) bool {
69
74
Packets,
70
75
Proto,
71
76
Bytes,
72
- DSCP:
77
+ DSCP,
78
+ XlatDstPort,
79
+ XlatSrcPort,
80
+ XlatZoneID:
73
81
return true
82
default:
83
return false
@@ -82,7 +90,9 @@ func IsIP(f string) bool {
90
DstAddr,
91
SrcAddr,
84
92
DstHostIP,
85
- SrcHostIP:
93
+ SrcHostIP,
94
+ XlatDstAddr,
95
+ XlatSrcAddr:
86
96
87
97
88
98
0 commit comments