Connecting DMA’s to DataMiner.Services

Hi Jacques, Instead of using the wildcard, it’s also possible to use the IP addresses. A complete list of currently used IP addresses can be found here: Connection to dataminer.services …

Sending an email to the DataMiner User that starts the script

Hi Ross, the email address based on UserLoginName, can be obtained using the following code: var req = new GetInfoMessage { Type = InfoType.SecurityInfo }; var userInfoResponse = (GetUserInfoResponseMessage)engine.SendSLNetSingleResponseMessage(req); var …

Correlation on events

Hi Joel, A possible option could be using the ‘INFO’ column in the alarm template: In this example, when the value goes above 60, an information event will be generated: …

Can’t reach dataminer.services

Hi Ana, Sorry to hear of your problems getting cloud-connected. To investigate the issue I would suggest running the connection tester tool. This tool will show the endpoints that can’t …

Diplays Shapes based on row in Alarm from a table

Hi Alain, Another option could be generating shapes based on alarms (Generating shapes that represent alarms). Since you would like to display alarms from a particular element/table, you could filter …

Historical GetParameter

For giving you more data: The parameters will be trended the weekly average that we will calculated, will be use to be trended and to create a new alarm. We …

Historical GetParameter

Hi Toon, Henry, This sounds like a typical GQI query.  Therefore: Henri > what is your use case?  Because if you just want to be able to display this, then …

Historical GetParameter

Assuming your parameter is trended, you can use the GetTrendDataMessage in combination with the Engine SendSLNetMessage method to get what you need.