The support Opensearch ver. 2.x.x for DMA 10.3.0

Hi Jaroslaw, Yes it possible to migrate a MySQL system to CassandraCluster + OpenSearch. Note you cannot have standalone CassandraCluster; it needs to be a combination of CassandraCluster + OpenSearch. …

Alarm Type Update via Automation Script

Hi Ramesh, I believe you can use SetAlarmStateMessage to achieve this. Example: var tree = new AlarmTreeID(dmaId, elementId, rootAlarmId); var message = new SetAlarmStateMessage(tree, AlarmUserStatus.UnResolved, $”User {username} released ownership.”); engine.SendSLNetMessage(request); …

[Visio] – Condition over property

Hi Bruno, You can use a custom property as a filter.  In your case from what you are showing, I believe you are missing the [] brackets around the Property …

host an additional webpage on DataMiner

Hi Jeroen, In the docs it’s explained you can add files like this in the /public/ folder to make them available over remote access (still behind B2C Login & remote …

Spectrum Analyzer – Default units Y-Axis

Hello Miguel, as discussed internally, a possible solution could be to make a shared preset with the desired unit and to set that preset on elements where you need the …

Errors when setting on table

Hi Joshua, This kind of error typically points to a race condition or a timing issue during concurrent access or modification of a table row. For example, if multiple QAction …

Automation Script – Lookup by Display Key

Hi Nick, Instead of: var indexKey = (int)filter.FilterType == DisplayFilter ? protocol.FindAssociatedDisplayKeyColumn(tableInfo) : protocol.FindAssociatedPrimaryKeyColumn(tableInfo); var column = element.GetTable(tableInfo.ID).GetColumn<string>(indexKey.ID); Have you tried: var column = (int)filter.FilterType == DisplayFilter ? element.GetTable(tableInfo.ID).GetDisplayKeys() : …

Issue with variables on a LCA

Hi Ana, The Line & Area chart only supports parameter data and queries. DOM instances can not be added as a data/filter source since the component has no idea what …

Group Alarm Acknowledge

Hi Ramesh, As far as I know, as mentioned in Take ownership of a correlated alarm – DataMiner Dojo, acknowledging a new correlated alarm will not acknowledge the base alarms. …

Dom editor or connector device menagment

Hi Davor, Seems like this question went a bit under the radar. Have you managed to move forward with your low-code app? From what you’re describing, and if you are …