You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>`servicesFile` and `protocolsFile` with paths to custom services/protocols files respectively
448
448
449
-
The rule `add_location` generates new fields with the geo-location information. It uses the [IP2Location LITE database](https://lite.ip2location.com/) in that purpose. All the geo-location fields will be named by prefixing the `output` value to their names in the IP2Location DB (e.g., `CountryName`, `CountryLongName`, `RegionName`, `CityName` , `Longitude` and `Latitude`).
449
+
The rule `add_location` generates new fields with the geo-location information retrieved
450
+
from DB [ip2location](https://lite.ip2location.com/) based on `dstIP` IP.
451
+
All the geo-location fields will be named by appending `output` value
452
+
(`dstLocation`in the example above) to their names in the [ip2location](https://lite.ip2location.com/ DB
453
+
(e.g., `CountryName`, `CountryLongName`, `RegionName`, `CityName` , `Longitude` and `Latitude`)
450
454
451
455
The rule `add_kubernetes` generates new fields with kubernetes information by
452
456
matching the `ipField` value (`srcIP`in the example above) with kubernetes `nodes`, `pods` and `services` IPs.
@@ -699,6 +703,8 @@ we can assume that it is the second step of the TCP handshake,
699
703
the direction is from the server (source) to the client (destination) and we can swap them in the connection so the client will be the source and the server will be the destination.
700
704
701
705
706
+
707
+
702
708
### Timebased TopK
703
709
704
710
It is sometimes desirable to return only a subset of records, such as those connections that use the most bandwidth.
@@ -949,7 +955,6 @@ Images
949
955
image-push Push MULTIARCH_TARGETS images
950
956
manifest-build Build MULTIARCH_TARGETS manifest
951
957
manifest-push Push MULTIARCH_TARGETS manifest
952
-
extract-binaries Extract all MULTIARCH_TARGETS binaries
Copy file name to clipboardExpand all lines: docs/api.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -229,7 +229,6 @@ Following is the supported API format for filter transformations:
229
229
input: entry input field
230
230
value: specified value of input field:
231
231
castInt: set true to cast the value field as an int (numeric values are float64 otherwise)
232
-
samplingField: sampling field name to be set when sampling is used; if the field already exists in flows, its value is multiplied with the new sampling
233
232
</pre>
234
233
## Transform Network API
235
234
Following is the supported API format for network transformations:
@@ -271,7 +270,6 @@ Following is the supported API format for network transformations:
271
270
add_location: Add location rule configuration
272
271
input: entry input field
273
272
output: entry output field
274
-
file_path: path of the location DB file (zip archive), from ip2location.com (Lite DB9); leave unset to try downloading the file at startup
0 commit comments