Quick toggle button for Background Theme in Visual Overview
9th July 2026
To automate this process or create a quick toggle, you would need to implement a mechanism that changes this setting with a script. There is no official support in our …
Answer
9th July 2026
To automate this process or create a quick toggle, you would need to implement a mechanism that changes this setting with a script. There is no official support in our …
9th July 2026
Hi Daniel, Can you try using the Indices data source: You should be able to list the indices: Hope it helps.
9th July 2026
Since an automation script actually runs server-side I don’t think there is any other way in achieving this than using ShowUI.
9th July 2026
I get the impression that this question has already been answered in the comments. If this is indeed the case, could you select this answer to indicate that the question …
8th July 2026
Hi Yahya, Could you provide more details about your use case? Rather than assigning alarms directly to elements/services, you could consider the following approaches: Service: You could define specific conditions …
8th July 2026
Hi Chie, We are actually working on this as we speak. This will become available shortly. The idea is that you can easily create a UI with AI and link …
8th July 2026
Hi Catarina, If you have direct or RDP access to the server where that element is running, can you check the Description.xml file that is inside the element folder? In …
8th July 2026
Does this work for you? using System; using System.Collections.Generic; using System.Globalization; using System.Text; using Skyline.DataMiner.Automation; /// <summary> /// DataMiner Script Class. /// </summary> class Script { /// <summary> /// The …
8th July 2026
Hi Guy, Could you give a little more context about what you’re trying to achieve here? (The image you tried to share did not seem to load correctly) To use …
7th July 2026
Hi, I found the following snippet in our regression tests. Hopefully it can help as a reference. This method creates a new shared alarm filter using an UpdateAlarmFilterMessage and sends …
7th July 2026
Hi Bautiste, I would show the cluster/system name in the Cube header. Hope this helps. Example: Regards, Matthias
6th July 2026
The correlation rules for capturing timeout events under the “Severity = Timeout” rule are now working correctly. What I need now is to be able to detect when those alarms …
6th July 2026
Hi David, A possible option is to use an automation script to update a session variable: See below code snippet: ScriptParam spValueLocked = engine.GetScriptParam(“ValueLocked”); engine.AddOrUpdateScriptOutput(UIVariables.VisualOverview.CreateKey(“Locked”), spValueLocked.Value); Script Definition: Shape definition: …
3rd July 2026
Hi Carl, Since version 10.6.1, SAML users should see a “Sign in with another user” option. Clicking this invalidates your WebAPI session and redirects you to the authentication page with …
3rd July 2026
Hi Carl, Since DataMiner 10.5 CU11, 10.6, and 10.6.2, the Data API creates elements only on the DataMiner Agent where the API is running. In earlier versions, element creation could …