Slow down SNMP Table polling

Hi Robert, this is probably not completely what you’re looking for, but maybe have a look at the “pollingRate” option. See https://help.dataminer.services/development/DataMinerDevelopmentLibrary_Customer/part3MarkupLanguage/MARProtocolParams/Protocol_Params_Param_ArrayOptions_ColumnOptions_ColumnOption.htm?rhhlterm=pollingRate#XREF_25524_pollingRate. With this option it’s possible to slow down the …

SMS not being received

Hi Arunkrishna, That is a known issue that should have no impact on the main SMS functionality. The error is logged when the SLGSMGateway process tries to send an update …

Implement Filter in script list

Hi Catalin, As an alternative to using those UIBlocks directly, you could use the IAS Toolkit. It’s a handy framework that allows for cleaner code, hides the UIBlock logic and …

How to enable/disable correlation rule from code?

Hi Ruben, you can use one of the below methods as a starting point:     /// <summary> /// Enables the correlation rule refered by folderName and ruleName /// </summary> /// <param …

NotifyProtocol – User Groups clarification

Hi Alex, It would be good to understand your use-case. It is not common practice to manipulate users / groups via a connector. When better understanding where your need comes …

NotifyProtocol – User Groups clarification

Hi Alex, maybe somebody else has documentation about those notify calls, but it might be easier to use SLNet messages instead. There is probably also no (public) documentation about those …

How to enable/disable correlation rule from code?

Hi Ruben, I believe you’ll only be able to do this by sending an UpdateCorrelationRule message to SLNet. The UpdateCorrelationRule message has a field ‘type’ that can be set to …

Implement Filter in script list

Hi Catalin, Another option (apart from start creating an interactive automation script) is to use memory files to define a set of possible values in your list. For example: First …

Implement Filter in script list

Hi Catalin, you can use the ShowFilter property on the UI block definition: UIBlockDefinition uibDef = new UIBlockDefinition(); uibDef.Type = UIBlockType.DropDown; uibDef.DisplayFilter = true;