Alarm ID changes on Masking?

Hi Apurva, Can you try masking the alarm root ID? Whenever there is an update on the alarm, a new alarm ID will be generated. However, the alarm toot ID …

DMA DB Error

Hi Kaio If you check the SLDBConnection log, you’ll probably see the reason. sometimes the error is on the DB offload side

Correlation rule interaction

The information fully answers my question. Thank you to both Miguel and Pieter for the pointers.

DataMiner and Slack Messaging Intergration

Hi Let me refer you to this question from 2023: https://community.dataminer.services/question/slack-authentication-error/. Note that I have not done any testing anymore since then but that is what I had to do …

best practice to execute automation by table change

Hi Juan, Would it be possible to incorporate that logic into the connector? Before populating the table, you could detect changes and trigger the appropriate automation script. This way, you …

Correlation rule interaction

Hi Charlie, You can use the GetCorrelationRuleMessage for this: var msg = new GetCorrelationRuleMessage() { RuleName = “Correlation rule” }; var resp = engine.SendSLNetSingleResponseMessage(msg) as GetCorrelationRuleResponse; var isEnabled = resp?.Definition.IsEnabled;

Verifying use of gRPC

Hi Roger, You can verify the connection type in the About window in Cube: in the connection tab there should be a mention of GrpcConnection in the Atributes (line 11). …

Correlation rule interaction

Hi Charlie, I believe there is a similar question: How to enable/disable correlation rule from code? Hope it helps.

Automating Dashboard PDF Report

Hi Zean, Could it be that the access to those reports is limited to some users? As the last note on this page mentions, only dashboards that are visible to …

Alarm Template Filter Inquiry

Hi Charlene, This is expected behavior. I understand the alarm template filter parameter uses the ‘Display Key’ exclusively. In your case checking the connector, the Alarm Description is indeed set …

Connector – Conditional Page Visibility and DVE

You can override the Conditional pages within the Export Rules by updating the ‘Pages’-tag, example: <ExportRule table=”10000″ tag=”Protocol/Display/Pages” value=””/>

Countdown timer in low-code app

You might be able to create an standalone HTML page with an url paramater, then include that with the HTML applet and feed it the date to count down from …