Display Text Limit

Text trimming should only happen when there is not enough space to show both the name & Value. We give priority to showing the value and start trimming the name …

License and installation process

Hello Andrey, 1. normally the licensing group answers you at the same working day 2. i would recommend to read About DataMiner | DataMiner Docs 3. you access it via …

Lowcode ap/dashboard and hidden elements

Hi Sevil, The Dashboards and Low-Code Apps aren’t really aware of hidden elements. Those hidden elements are usually there for internal use and aren’t meant to be directly accessed by …

DataMiner Cube on Citrix Windows Server

Hi Bing, After a quick search, Windows Servers 2012 and 2019 are based on Windows 8 and 10 respectively, which is mentioned in the client requirements page. So I believe …

DataMiner Cube on Citrix Windows Server

Hi Bing, Yes, DataMiner is also supported on Windows Server. The page you refer to, indeed only mentions the client OS versions, but you can also use Cube on the …

Ateme Titan Live

Hi Thomaz, Sorry for the late response. Q1: In the Ateme Titan Live GUI I can see some ETR-statistics about TS-sync, CC-errors, PID-errors etc but these is not visible in …

error when trying to read log

There is most likely an issue with downloading or installing the CefSharp webbrowser engine. The Cube logging (first tab) should provide more details on what goes wrong (e.g. unable to …

Query root alarm ID information from elastic

You can try either of these to query current or historical alarms: POST dms-activealarms/_search { “query”: { “match”: { “RootAlarmID”: “1234” } } } === POST dms-alarms*/_search { “query”: { …

Delete element from protocol code

Hi Thibault, Here is a piece of code that can serve as an example IDms dms = protocol.GetDms(); var dmsElementID = new DmsElementId(“5”); var element = dms.GetElement(dmsElementID); element.Delete(); For this …