# Signals
# Available event processing script templates
As additional content, the development team provides access to typical scenarios for processing primary events. All scripts are available in the public Acure repository on the GitHub (opens new window).
# Zabbix Default Signal Processor
Description: Scenario for processing events coming from Zabbix through the standard Data Stream configuration template - Zabbix default.
Link to the scenario (opens new window)
# Zabbix Custom Signal Processor
Description: Scenario for processing events coming from Zabbix by sending a Webhook.
Link to the scenario (opens new window)
# Webhook Sent Script
var request = new HttpRequest();
params = JSON.parse(value);
request.addHeader('Content-Type: application/json');
response = request.post('https://<ACURE-DOMAIN>/api/public/cl/v1/stream-data?streamKey=<StremApiKey>', JSON.stringify(params));
return 'OK';