File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed
data_stream/log/elasticsearch/ingest_pipeline Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
1
# newer versions go on top
2
+ - version : " 3.0.3"
3
+ changes :
4
+ - description : Added nullcheck for Network Directionality when zones aren't configured
5
+ type : bugfix
6
+ link : https://github.com/elastic/integrations/pull/8883
2
7
- version : " 3.0.2"
3
8
changes :
4
9
- description : Fix the handling of spaces in 113005 messages.
Original file line number Diff line number Diff line change @@ -2114,11 +2114,12 @@ processors:
2114
2114
- script:
2115
2115
description: Calculate network.direction if zones are not configured
2116
2116
lang: painless
2117
- if: "ctx?.tags?.contains('private_is_internal') &&
2118
- ctx?.source?.ip != null &&
2119
- ctx?.destination?.ip != null &&
2120
- (ctx?._temp_?.external_zones == null ||
2121
- ctx?._temp_?.internal_zones == null)"
2117
+ if: "ctx.tags != null &&
2118
+ ctx.tags.contains('private_is_internal') &&
2119
+ ctx.source?.ip != null &&
2120
+ ctx.destination?.ip != null &&
2121
+ (ctx._temp_?.external_zones == null ||
2122
+ ctx._temp_?.internal_zones == null)"
2122
2123
source: |
2123
2124
boolean isPrivateCIDR(def ip) {
2124
2125
CIDR class_a_network = new CIDR('10.0.0.0/8');
Original file line number Diff line number Diff line change 1
1
format_version : " 3.0.0"
2
2
name : cisco_ftd
3
3
title : Cisco FTD
4
- version : " 3.0.2 "
4
+ version : " 3.0.3 "
5
5
description : Collect logs from Cisco FTD with Elastic Agent.
6
6
type : integration
7
7
categories :
You can’t perform that action at this time.
0 commit comments