Hi Dojo,
Posting here to attempt to retrieve a comprehensive list of all the possible configurations that can be deployed to relay live alarm information from a DataMiner cluster towards other systems:
- SNMP forwarding (via System Center);
- DataMiner API (GetAlarms?);
- User Defined API (?)
- Kafka integration (using the DMS as a Kafka producer?)
- Correlation>RunScript (?)
- Custom/Bespoke connector
I know that within a general use case the possibilities are virtually limitless, however at this stage I might just want to filter selected alarms from the Active alarms list in console and send them to other collection points (either for real-time parsing or just data collection): any steer on how to do that without necessarily writing a bespoke driver would be extremely helpful.
Thanks
Hi Alberto,
Another option is to use the DataAggregator DxM.
You could create GQI queries that will be executed remotely from a DMA. This DMA could be located in the same cluster where you would like to get the active alarms or could be from a different cluster.
The execution is defined based on these settings: Cron-trigger
The output of these queries could be:
- A CSV file stored in the DMA where the DataAggregator is running
- Through a web socket connection
In GQI there is already a data source that allows you to get the active alarms. Although GQI does not allow you to use saved filters (as far as I remember), you could use the filter operators to get the same result.
Hope it helps.
Marking this as solved – thanks
Thanks Miguel, surely something to keep on the radar of possibilities.
Will update the list with this suggestion: leaving the thread open for some more time to see if there’s other options too