Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set source.bytes/packets for uni-directional netflow #14111

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Fix cisco module's asa and ftd filesets parsing of domain names where an IP address is expected. {issue}14034[14034]
- Fixed increased memory usage with large files when multiline pattern does not match. {issue}14068[14068]
- panw module: Use geo.name instead of geo.country_iso_code for free-form location. {issue}13272[13272]
- Fix calculation of `network.bytes` and `network.packets` for bi-directional netflow events. {pull}14111[14111]

*Heartbeat*

Expand Down Expand Up @@ -354,6 +355,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Add ExpandEventListFromField config option in the kafka input. {pull}13965[13965]
- Add ELB fileset to AWS module. {pull}14020[14020]
- Add module for MISP (Malware Information Sharing Platform). {pull}13805[13805]
- Add `source.bytes` and `source.packets` for uni-directional netflow events. {pull}14111[14111]

*Heartbeat*
- Add non-privileged icmp on linux and darwin(mac). {pull}13795[13795] {issue}11498[11498]
Expand Down
19 changes: 8 additions & 11 deletions x-pack/filebeat/input/netflow/convert.go
Original file line number Diff line number Diff line change
Expand Up @@ -262,26 +262,23 @@ func flowToBeatEvent(flow record.Record) (event beat.Event) {
revPkts, hasRevPkts = getKeyUint64(flow.Fields, "reversePacketTotalCount")
}

if hasRevBytes || hasRevPkts {
if hasBytes {
ecsSource["bytes"] = countBytes
ecsDest["bytes"] = revBytes
}
if hasPkts {
ecsSource["packets"] = revBytes
ecsDest["packets"] = revPkts
}
countBytes += revBytes
countPkts += revPkts
if hasRevBytes {
ecsDest["bytes"] = revBytes
}

if hasRevPkts {
ecsDest["packets"] = revPkts
}

if hasBytes {
ecsSource["bytes"] = countBytes
if hasRevBytes {
countBytes += revBytes
}
ecsNetwork["bytes"] = countBytes
}
if hasPkts {
ecsSource["packets"] = countPkts
if hasRevPkts {
countPkts += revPkts
}
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,16 @@
"ip": "192.0.2.1"
},
"source": {
"bytes": 0,
"ip": "10.236.5.4",
"locality": "private",
"mac": "00:50:56:b9:26:46",
"packets": 0,
"port": 51917
}
},
"Private": null
"Private": null,
"TimeSeries": false
},
{
"Timestamp": "2018-04-18T08:16:47Z",
Expand Down Expand Up @@ -149,13 +152,16 @@
"ip": "192.0.2.1"
},
"source": {
"bytes": 0,
"ip": "64.235.151.76",
"locality": "public",
"mac": "00:00:00:00:00:00",
"packets": 0,
"port": 443
}
},
"Private": null
"Private": null,
"TimeSeries": false
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,16 @@
"ip": "192.0.2.1"
},
"source": {
"bytes": 0,
"ip": "10.99.130.239",
"locality": "private",
"mac": "00:00:00:00:00:00",
"packets": 0,
"port": 65105
}
},
"Private": null
"Private": null,
"TimeSeries": false
},
{
"Timestamp": "2017-06-29T13:58:28Z",
Expand Down Expand Up @@ -125,13 +128,16 @@
"ip": "192.0.2.1"
},
"source": {
"bytes": 81,
"ip": "10.99.252.50",
"locality": "private",
"mac": "00:00:00:00:00:00",
"packets": 1,
"port": 53
}
},
"Private": null
"Private": null,
"TimeSeries": false
},
{
"Timestamp": "2017-06-29T13:58:28Z",
Expand Down Expand Up @@ -191,13 +197,16 @@
"ip": "192.0.2.1"
},
"source": {
"bytes": 0,
"ip": "10.99.130.239",
"locality": "private",
"mac": "00:00:00:00:00:00",
"packets": 0,
"port": 65105
}
},
"Private": null
"Private": null,
"TimeSeries": false
},
{
"Timestamp": "2017-06-29T13:58:28Z",
Expand Down Expand Up @@ -257,13 +266,16 @@
"ip": "192.0.2.1"
},
"source": {
"bytes": 81,
"ip": "10.98.243.20",
"locality": "private",
"mac": "00:00:00:00:00:00",
"packets": 1,
"port": 53
}
},
"Private": null
"Private": null,
"TimeSeries": false
},
{
"Timestamp": "2017-06-29T13:58:28Z",
Expand Down Expand Up @@ -323,13 +335,16 @@
"ip": "192.0.2.1"
},
"source": {
"bytes": 0,
"ip": "10.99.168.140",
"locality": "private",
"mac": "00:00:00:00:00:00",
"packets": 0,
"port": 52344
}
},
"Private": null
"Private": null,
"TimeSeries": false
},
{
"Timestamp": "2017-06-29T13:58:28Z",
Expand Down Expand Up @@ -389,13 +404,16 @@
"ip": "192.0.2.1"
},
"source": {
"bytes": 113,
"ip": "10.98.243.20",
"locality": "private",
"mac": "00:00:00:00:00:00",
"packets": 1,
"port": 53
}
},
"Private": null
"Private": null,
"TimeSeries": false
},
{
"Timestamp": "2017-06-29T13:58:28Z",
Expand Down Expand Up @@ -455,13 +473,16 @@
"ip": "192.0.2.1"
},
"source": {
"bytes": 0,
"ip": "10.99.168.140",
"locality": "private",
"mac": "00:00:00:00:00:00",
"packets": 0,
"port": 50294
}
},
"Private": null
"Private": null,
"TimeSeries": false
},
{
"Timestamp": "2017-06-29T13:58:28Z",
Expand Down Expand Up @@ -521,13 +542,16 @@
"ip": "192.0.2.1"
},
"source": {
"bytes": 113,
"ip": "10.98.243.20",
"locality": "private",
"mac": "00:00:00:00:00:00",
"packets": 1,
"port": 53
}
},
"Private": null
"Private": null,
"TimeSeries": false
}
]
}
Loading