Hello, We are using splunk cloud to centralize all our logs, and are currently struggling with Bitdefenders implementation. We have added the HTTP Event Collector, and are now struggling with the final step of sending the logs from Bitdefender to Splunk, When i run the code to connect the two
curl -k -X POST OUR_GRAVITYZONE_API/v1.0/jsonrpc/push -H 'authorization: Basic GRAVITYZONE_API_KEY' -H 'cache-control: no-cache' -H 'content-type: application/json' -d '{
"params": {
"status": 1,
"serviceType": "splunk",
"serviceSettings": {
"url": "https://input-OUR_SPLUNK_CLOUD_LINK:8088/services/collector",
"requireValidSslCertificate": false,
"splunkAuthorization": "Splunk HTTP_EVENT_KEY"
},
"subscribeToEventTypes": {
"hwid-change": true,
"modules": true,
"sva": true,
"registration": true,
"supa-update-status": true,
"av": true,
"aph": true,
"fw": true,
"avc": true,
"uc": true,
"dp": true,
"device-control": true,
"sva-load": true,
"task-status": true,
"exchange-malware": true,
"network-sandboxing": true,
"malware-outbreak": true,
"adcloud": true,
"exchange-user-credentials": true,
"exchange-organization-info": true,
"hd": true,
"antiexploit": true
},
"jsonrpc": "2.0",
"method": "setPushEventSettings",
"id": "1"
}'
}
It returns the Error
{
"id": null,
"jsonrpc": "2.0",
"error": {
"code": -32600,
"message": "Invalid Request",
"data": {
"details": "Invalid or missing request id. Notifications are not supported"
}
}
}
Are there any fixes that we could do to forward our logs from Gravityzone into Splunk Cloud?
... View more