[Visio] VLC UDP Proxy settings
25th November 2025
The DataMiner software does not contain a proxy feature capable of proxying UDP streams. The proxy of the VideoThumbnails can only proxy thumbnail images over HTTP(S). To proxy a video …
Answer
25th November 2025
The DataMiner software does not contain a proxy feature capable of proxying UDP streams. The proxy of the VideoThumbnails can only proxy thumbnail images over HTTP(S). To proxy a video …
25th November 2025
Hi, Assuming the securityInfo variable you have is the output of a GetInfoMessage(InfoType.SecurityInfo) request, you should be able to get the name of a group id by using securityInfo.FindGroupNameByID(groupId) or …
25th November 2025
Hi Samantha, Are you combining these three filters in one alarm template? Be aware that the templates are evaluated from top to bottom which means that in your example any …
25th November 2025
Hi Jeeva, With a Dynamic table filter, you can sort and get the first page of your table, but I don’t think it’s possible to limit the amount of rows …
25th November 2025
Hi Aejith, There is a BPA test “Validate Connectors” available that scans the DMS for any connectors that are known to be incompatible with the DataMiner version to which is …
24th November 2025
Hello Again, I was passing the same IDms object to both script functions and it seems that DataMiner didn’t like this as when I passed to each one it’s own …
24th November 2025
Hi Thomas, I quickly tested the RunClientProgram method, and it appears to work, at least on my setup with PowerShell V5.1 (DMA 10.5.8) installed on my computer. This is the …
24th November 2025
Hi Gerwin, I don’t believe it is possible to link those DMA errors into a service. A service typically groups elements together and those DMA errors are not generated by …
24th November 2025
Hi Dominique, I believe there are probably two possible approaches to tackle this problem. First of all, a basic service is just grouping elements together with potentially some dynamic behavior …
24th November 2025
Hi Juan, The instances that you retrieve using ReadAll() also contain the values. But as explained here, the values are grouped into sections. So to retrieve the values, you need …
24th November 2025
Hi, You could use the option Exporting elements, services, etc. from a .dmimport file to create an .dmimport package. This package will contain the protocol, Visio file and alarm/trend templates …
22nd November 2025
Hi Kris, Difficult to give an accurate answer without having access to the system to see how things are configured, but based on what you say, I would guess that …
21st November 2025
Would the hysteresis be a good solution for you? Configuring hysteresis in an alarm template | DataMiner Docs You would probably want a Hyst Off of x seconds on Failed …
21st November 2025
Hi Sofian, I havent used a GetParameter(s)Message sucessfully before, just fetching them individually with IDmsElement. Are these individual parameters or table params? If they are individual parameters then IDmsElement.GetStandAloneParameter<T>(pid).GetValue(); is …
21st November 2025
Hi Sofian, Something you could try is fetching the data of multiple elements in parallel, using Parallel.Foreach. Something like this (pseudocode); IEnumerable<IDmsElement> elements; var result = new ConcurrentDictionary<>(); Parallel.ForEach(elements, element …