Here is my JSON request example code and as u can see #(Paramtervale) as to be replaced by MyValue
Below is the example of the request json and code:
* request
"""
{
"query": {
"bool": {
"must": [
{
"match_data": {
"Event.Data.message": "#(Paramtervale)"
}
},
{
"match_data": {
"Event.Name": "#(Paramtervale2)"
}
}
],
"filter": {
"range": {
"@timestamp": {
"gte": "now-1m"
}
}
}
}
}
}
"""
* set request.Event.Data.message = myvalue
* set request.{Event.Data.message} = myvalue
* set request.(Event.Data.message) = myvalue
None of the above is working, can anyone please help