Hi!
Sorry for the late response.
There are several changes between these versions (
Changelog). Depending on the case it is possible that the update has affected the generated events.
Could you run the following query in Elasticsearch/Wazuh indexer to check the top 15 generated rules and the count of each of them? Maybe this way we can find out where the change is located.
{
"size": 0,
"query": {
"range" : {
"@timestamp" : {
"gte" : <TIMESTAMP1>,
"lte" : <TIMESTAMP2>
}
}
},
"aggs": {
"group_by_ruleid": {
"terms": {
"size": 15,
"order": { "_count": "desc" }
}
}
}
}'
You should run the command twice, changing the <TIMESTAMP> range:
- Using an interval in which you had not updated yet:
"gte" : "2022-12-01T00:00:00.000",
"lte" : "2022-12-02T00:00:00.000"
- Another one using an interval after updating:
"gte" : "2023-01-01T00:00:00.000",
"lte" : "2023-01-02T00:00:00.000"
In both cases the interval must have the same duration and be big enough (e.g., one day).
This way we can check which rules are triggered more frequently before and after the update, which may help us to find out where the change has happened.
I hope it helps. Please keep us updated!
Best regards,
Mayte Ariza