Create Correlation Rule through automation
28th October 2024
Hi Amer, This is possible by using the UpdateCorrelationRule message. You can find a similar question here: How to enable/disable correlation rule from code? – DataMiner Dojo
Answer
28th October 2024
Hi Amer, This is possible by using the UpdateCorrelationRule message. You can find a similar question here: How to enable/disable correlation rule from code? – DataMiner Dojo
28th October 2024
Hi Tiago, If you are running a version of DataMiner that only requires .NET 8 (which you can check here) and if all the DxMs you have installed are up …
28th October 2024
That would depend on exactly which version of DataMiner you are running, see https://docs.dataminer.services/user-guide/Reference/DataMiner_Compute_Requirements.html#microsoft-net
28th October 2024
This is because it uses the same syntax as the alarm template configuration. There you just pass on a value to monitor on. The dollar sign tells SLElement that this …
28th October 2024
Hi Steve, The error you posted and the versions seems to point to the problem described in Problem when DMA server is named DATAMINER | DataMiner Docs In a nutshell, …
28th October 2024
Hi Davor, You can have a look at the health assessment guidelines to confirm that the DMA is still able to cope with extra load. If your plan is to …
27th October 2024
Hi Naveen, Assuming that the software version of the element is retrieved by the element and available in a parameter (single or column parameter), you could use a GQI query …
26th October 2024
namespace AutomationScript1_1 { using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using Skyline.DataMiner.Automation; using Skyline.DataMiner.Core.DataMinerSystem.Automation; using Skyline.DataMiner.Utils.InteractiveAutomationScript; public class Script { private InteractiveController app; private MaskElementDialog dialog; private …
26th October 2024
What can be this after execute the script on my code (code is below)
26th October 2024
Hi Davor, You will need to install the NuGet package: NuGet Gallery | Skyline.DataMiner.Core.DataMinerSystem.Automation 1.1.1.13 More information can be found in DataMiner Docs: Class library introduction | DataMiner Docs Hope …
26th October 2024
Hi, the snippets used in this presentation are specific to that example and were used to avoid having to type all the specific code for that example. DIS comes with …
25th October 2024
Hi Stefan, To set one parameter before another in the same row, you’ll indeed need to handle this within a QAction. Here’s how you can approach it: Triggering the QAction: …
25th October 2024
Hi Stefan, There is already a similar question: How to display a Linux Time Stamp? – DataMiner Dojo Hope it helps.
25th October 2024
Our team is doing something similar in an E2E test and we are using msiexec to do so. There is the /quiet flag that specifies quiet mode which should result …
25th October 2024
Hi Tiago, A possible option is to create a batch file that executes msiexec. This tool allows you to execute installations from MSI files silently. msiexec.exe /i “C:\Path\file.msi” /q Hope …