Upgrade – start time

Hi Robin, Yes, this is intentional. The general start time corresponds to the moment when the upgrade action itself began, while the start time shown for each agent is the …

GQI: Get trend data

HI Yahya, You have several options to pick from: Upgrading to the latest (web) version of DataMiner. In case of the web version, be sure to enable the GQI DxM …

Documents stored on a DMA – Folders

Hi Mark, When adding a document, you indeed need to choose if it’s a document related to one of the connectors on the system, then it’s added to a folder …

Documents stored on a DMA – Folders

Hi Shawn, please see the attached. We want to avoid making links to other systems that can be broken. So we have the thought of adding the documents to DM. …

Performance details about DOM

Hi Edib, You’re right—the current DOM documentation is quite vague and avoids giving specific numbers. That’s pretty much intentional, as the ideal setup really depends on many factors, including the …

DOM Attachment – History and size

Hi Felix, I’m afraid this won’t be possible without actually reading the files from the filesystem, the only things the AttachmentsHelper provide is a method to get all filenames from …

Parsing exported DOM Module

Hi Bautista, The safest way would be to generate your own exports using the same class structure as you used to import them. This ensures that the packages are and …

LCA – GQIDS – Download DOM Attachment

Hi Felix, Nice that you got the download through IAS working! The AttachmentsHelper (DomHelper.DomInstances.Attachments) has a method GetFileNames() which returns all file names of attachments for a DOM Instance. You …

BroadCastPopupRequestMessage: how to use, how to implement?

Hi Nils, It should be possible to get a list of all connected users as following: var users = connection.HandleResponseMessage(new GetInfoMessage(InfoType.ClientList)) .Cast<LoginInfoResponseMessage>() .Where(c => (c.ConnectionAttributes & ConnectionAttributes.Cube) == ConnectionAttributes.Cube) .Select(c …