Integration with PowerBI

Hi David, There are various options, but one way that is working fine with me is User-Defined APIs | DataMiner Docs. You have the freedom of how to present the …

GQI query : Get bookings data source

Hi Wale, Normally, for this kind of use cases, we proceed with creating an ad-hoc data source that could perform this aggregation in a more efficient way. Another option is …

Alarming outside patern

Hi Daniel, Maybe some of the dynamic alarming capabilities may help you out.  Configuring dynamic alarm thresholds | DataMiner Docs This allows you for example to do your monitoring of …

Web Components request https

Hi Marco The Web component doesn’t have a restriction on http vs https. It only enforces the use of https when the LCA itself is visited using https (which we …

DataMiner Backup main and failover Agent

I can say: * when scheduling in a backup via Cube, it’ll take a backup for both failover agents. * when manually triggering a backup (on e.g. the online agent), …

How to get service object details in GQI?

Hi Apurva, In an GQI Ad-hoc data source you could use the GetServiceByIDMessage or GetServiceByNameMessage as follows: var request = new GetServiceByIDMessage(dmaID, serviceID); var serviceInfo = _dms.SendMessage(request) as ServiceInfoEventMessage; var …