Dashboard – Displaying Trenddata
5th August 2026
Hi Thomas, Can you double check if the soft-launch option `GenericInterface` is enabled in your DMA?. After enabling this option, you should be able to see the extra data sources …
Answer
5th August 2026
Hi Thomas, Can you double check if the soft-launch option `GenericInterface` is enabled in your DMA?. After enabling this option, you should be able to see the extra data sources …
5th August 2026
There is a Ad Hoc Data Source that was created for this exact use-case. It’s running in production for all of our QAOps platform. https://catalog.dataminer.services/details/1e37d8ab-3f41-480e-9b0b-804b2932d312 I suggest using that, it …
5th August 2026
Hi community, I found the root cause and resolved it. URL Rewrite and ARR were installed, and both generated web.config files were correct. However, ARR’s server-level proxy was disabled. DataMiner’s …
5th August 2026
Hi Nils, I can’t think of any already existing integration, but others feel free to correct me. I quickly tested it and you can use the Generic Ping connector from …
4th August 2026
Thanks everyone for the input. Following further investigation, the authentication approach described above is not supported in the current version of DataMiner. We’ll continue the discussion offline. Thanks!
3rd August 2026
Hi Wale, To do that, you’ll need to have MediaOps. A manufacturer is essentially an organization, so you can update the list of available manufacturers by managing the organizations in …
31st July 2026
Hi Daniel, The Appear API allows retrieving extra status data for IP and SRT Outputs, including the redundancy settings and which source is currently active in the outgoing TS. The …
31st July 2026
Hi Sam To get the details of a specific issue, please click the Code of the issue, marked in blue (2.4.1 or 2.46.5 in your screenshot). This will bring you …
31st July 2026
Hi Sam, The Show Details… link has been replaced with a hyperlink to online documentation regarding the validator checks (See Release Notes 3.1.6, item DIS Validator tool window now links …
30th July 2026
Hi Ryan, If you mention “service name”, do you mean a DataMiner Service? So if the name of your DataMiner Service contains “enc”, a visio shape should show? That should …
30th July 2026
This should not happen when you apply a stretch strategy on the shape? Can you verify the frozen state is gone when setting the stretch to for example UniformToFill?
30th July 2026
Hi Catarina, The error originates in SLDataMiner (a 32-bit process) when processing an element subscription notification via .NET Remoting. Even if no process appears to be at its memory limit, …
30th July 2026
Hi Aldrick, This is not possible today. This topic is also on my personal wish list. Instead of requiring you to self-service building a custom solution, I’d like to provide …
29th July 2026
Hi, This question is already being tracked in a dedicated email thread, as the connector is not yet publicly available. For future reference, the root cause was an incomplete element …
29th July 2026
Hi Peter, Yes! The C# alternative is `AssignVisualToViewRequestMessage` from the `Skyline.DataMiner.Net.Messages` namespace. Send it via `engine.SendSLNetMessage()` in your Automation script: using Skyline.DataMiner.Net.Messages; var msg = new AssignVisualToViewRequestMessage(viewID, “MyVisio.vsdx”); engine.SendSLNetMessage(msg); This …