Improving SNMP Table Polling

One of the reasons you could be experiencing a slower time to retrieve the same data could be the communication and data processing overhead variation of using different polling methods. …

Antenna tracking graph

Hi Bernard, This isn’t available off the shelf. However, if you would like to get creative you could create an ACU Manager that tracks the historical positions. These historical points …

How can I change the replication factor of my SLDMADB scheme

Hello Jelle, This query should achieve what you want to achieve: ALTER KEYSPACE “SLDMADB” WITH REPLICATION = { ‘class’ : ‘SimpleStrategy’, ‘replication_factor’ : 2 }; When configuring the failover, the …

Change element’s IP address from automation script

Jeff this can be done with SLNet. Element element = engine.FindElement(“ElementName”); if (element != null) { GetLiteElementInfo getElementInfo = new GetLiteElementInfo { DataMinerID = element.DmaId, ElementID = element.ElementId, IncludeStopped = …

Does DataMiner have Kafka integration?

Kafka is not part of the core software at this moment. I have created a driver that consumes messages from a Kafka queue. This is part of a larger project …

How to secure communication between DataMiner agents

All SLNet communication of a DataMiner Agent can be configured to use encrypted connections. Data sent over those connections will be encrypted with a Rijndael algorithm, using a 256-bit session …

Does DataMiner has Kafka integration?

I had a circumstance in which I was asked if we were able to send data northbound to a Kafka cluster. As far as I know we don’t support direct …