I am currently using the free trial of Bitdefender's EDR product and have configured push notifications as per the API documentation. I’ve subscribed to all available event types, and the API responds with a 200 status code and a "true" status.
I attempted to send a test event using the TestPushEvent API. While I'm receiving a 200 response, only the event types aph
and av
are being forwarded, and the other event types are not.
Here is the response of the GetPushEventStats API
{
"id": "ad12cb61-52b3-4209-a87a-93a8530d91cb",
"jsonrpc": "2.0",
"result": {
"count": {
"errorMessages": 8,
"events": 0,
"sentBytes": 0,
"sentMessages": 0,
"testEvents": 8
},
"error": {
"configurationError": 0,
"connectionError": 0,
"serviceError": 0,
"statusCode2xx": 8,
"statusCode300": 0,
"statusCode400": 0,
"statusCode500": 0,
"timeout": 0
},
"lastUpdateTime": "2024-10-29T08:07:51",
"max": {
"messageQueueBytes": 4800,
"messageQueueLength": 8
}
}
}
Could someone help me understand the potential issue here? I’m wondering if this could be related to data generation, licensing limitations, message queue or another factor. Has anyone encountered a similar issue, and if so, are there any known solutions?