I need to collect SNMP information from several devices, currently, we do it with another tool, but we want to use Assets Discovery tool; the configuration we currently use is iso.org.dod.internet.mgmt.mib-2; we can not configure it correctly in Assets Discovery; we need to get information from the network interfaces and their connections, we have tried to modify patterns, but in the pattern, we see the information of the interfaces, but we can not get it to be dumped to the tool, can you tell me if it is possible and how to do it? Thanks
Hi @Ángel Blanco González
If you want to add some extra information to Assets Discovery import you can extend needed object by using ExtendInformation object, i.e.:
if (deviceInfo.ExtendedInformations.IsNullOrEmpty()) deviceInfo.ExtendedInformations = new List<ExtendedInformation>();
....deviceInfo.ExtendedInformations.Add(new ExtendedInformation() { Name = "RAM Total", Value = (t / 1024).ToString() });
see complete example here https://confluence.atlassian.com/assetapps/custom-pattern-examples-1168847984.html
Later you can add those value as part of Assets import - https://confluence.atlassian.com/assetapps/add-extended-information-to-discovered-objects-1168848026.html
Hope it will help in your case.
Regards,
Volodymyr B.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.