DataMiner Scripts limitation

It is possible to run PowerShell scripts from a C# block action. Example: “{ var ps1File = @”C:\my script folder\script.ps1”; var startInfo = new ProcessStartInfo() { FileName = “powershell.exe”, Arguments …

DataMiner Scripts limitation

The easiest way to achieve this is by using the supported C# code into DataMiner Automation scripts. The System.IO library can be used to perform similar actions. Example could be …

Filter node-edge dashboard component using service

Hey Ive, Like Sebastiaan mentioned you can use the query filter component (currently available in soft launch) to highlight/filter you node-edge. If you want DataMiner to resolve your service-element relations, …

Filter node-edge dashboard component using service

In dashboards, you also have a query filter component. This filter exposes feeds which can be linked to the node-edge component to highlight and/or filter nodes and edges. For your …

Enable IAM Access to a remote MySQL DB

Hi ArunKrishna, can you try if it works using a custom connection string instead of the general fields in System Center/database/others. example with encryption: Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;SslMode=Required; example with a file-based certificate: …

Web API : GetBooking & GetBookings error

Hi Wale, Please could you check first that you are running a DMA version higher than 10.0.3.0 (check DataMiner Web API documentation). I performed a small test using DMA 10.1.1.0-9843 …