File tree Expand file tree Collapse file tree 6 files changed +10
-5
lines changed
cloud_configuration_finding/agent/stream
vulnerability/agent/stream Expand file tree Collapse file tree 6 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
1
# newer versions go on top
2
+ - version : " 1.8.1"
3
+ changes :
4
+ - description : Fix potential `got types.Null, expected iterable type` error.
5
+ type : bugfix
6
+ link : https://github.com/elastic/integrations/pull/11124
2
7
- version : " 1.8.0"
3
8
changes :
4
9
- description : Add host.name for the vulnerability data stream.
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ program: |
75
75
}
76
76
}.encode_json()
77
77
).do_request().as(resp, resp.StatusCode == 200 ?
78
- bytes(resp.Body).decode_json().as(body, has( body.?data.auditLogEntries.nodes) ?
78
+ bytes(resp.Body).decode_json().as(body, body.?data.auditLogEntries.nodes.orValue(null) != null ?
79
79
{
80
80
"events": body.data.auditLogEntries.nodes.map(e, {
81
81
"message": e.encode_json(),
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ program: |
96
96
}
97
97
}.encode_json()
98
98
).do_request().as(resp, resp.StatusCode == 200 ?
99
- bytes(resp.Body).decode_json().as(body, has( body.?data.configurationFindings.nodes) ?
99
+ bytes(resp.Body).decode_json().as(body, body.?data.configurationFindings.nodes.orValue(null) != null ?
100
100
{
101
101
"events": body.data.configurationFindings.nodes.map(e, {
102
102
"message": e.encode_json(),
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ program: |
143
143
}
144
144
}.encode_json()
145
145
).do_request().as(resp, resp.StatusCode == 200 ?
146
- bytes(resp.Body).decode_json().as(body, has( body.?data.issues.nodes) ?
146
+ bytes(resp.Body).decode_json().as(body, body.?data.issues.nodes.orValue(null) != null ?
147
147
{
148
148
"events": body.data.issues.nodes.map(e, {
149
149
"message": e.encode_json(),
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ program: |
147
147
}
148
148
}.encode_json()
149
149
).do_request().as(resp, resp.StatusCode == 200 ?
150
- bytes(resp.Body).decode_json().as(body, has( body.?data.vulnerabilityFindings.nodes) ?
150
+ bytes(resp.Body).decode_json().as(body, body.?data.vulnerabilityFindings.nodes.orValue(null) != null ?
151
151
{
152
152
"events": body.data.vulnerabilityFindings.nodes.map(e, {
153
153
"message": e.encode_json(),
Original file line number Diff line number Diff line change 1
1
format_version : 3.0.2
2
2
name : wiz
3
3
title : Wiz
4
- version : " 1.8.0 "
4
+ version : " 1.8.1 "
5
5
description : Collect logs from Wiz with Elastic Agent.
6
6
type : integration
7
7
categories :
You can’t perform that action at this time.
0 commit comments