File tree 3 files changed +12
-7
lines changed
data_stream/alerts/agent/stream 3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1
1
# newer versions go on top
2
+ - version : " 2.1.1"
3
+ changes :
4
+ - description : Fix CEL type conversion in alerts v2.
5
+ type : bugfix
6
+ link : https://github.com/elastic/integrations/pull/13007
2
7
- version : " 2.1.0"
3
8
changes :
4
9
- description : Update Kibana constraint to support 9.0.0.
Original file line number Diff line number Diff line change @@ -54,17 +54,17 @@ program: |
54
54
"auth": (string(state.api_token) + string(t.nonce) + string(t.timestamp)).sha256().hex(),
55
55
})).as(h, req.with({
56
56
"Header":{
57
- "x-xdr-timestamp": [h.timestamp],
58
- "x-xdr-nonce": [h.nonce],
59
- "Authorization": [h.auth],
60
- "x-xdr-auth-id": [state.token_id],
57
+ "x-xdr-timestamp": [string( h.timestamp) ],
58
+ "x-xdr-nonce": [string( h.nonce) ],
59
+ "Authorization": [string( h.auth) ],
60
+ "x-xdr-auth-id": [string( state.token_id) ],
61
61
}
62
62
}))
63
63
:
64
64
req.with({
65
65
"Header":{
66
- "Authorization": [state.api_token],
67
- "x-xdr-auth-id": [state.token_id],
66
+ "Authorization": [string( state.api_token) ],
67
+ "x-xdr-auth-id": [string( state.token_id) ],
68
68
}
69
69
})
70
70
).do_request().as(resp, resp.StatusCode == 200 ?
Original file line number Diff line number Diff line change 1
1
name : panw_cortex_xdr
2
2
title : Palo Alto Cortex XDR
3
- version : " 2.1.0 "
3
+ version : " 2.1.1 "
4
4
description : Collect logs from Palo Alto Cortex XDR with Elastic Agent.
5
5
type : integration
6
6
format_version : " 3.0.2"
You can’t perform that action at this time.
0 commit comments