Comments
-
How is this data collected, for volume in self.node.volumes:
-
So news update for all, the problem I was facing was adding the proper poller types for our Juniper box. I just added everything. Does adding poller types that are not directly related to the device cause any issues? $poller_types = array( 'N.Status.ICMP.Native' => true, 'N.Status.SNMP.Native' => false,…
-
Thank you everyone for your input and help. So Ive put the discovery before created the node and still get the same result BUT! with a difference device type, I am able to collect everything and it works great. But I want to pull in the "Volume Utilization". Would this be set in the poller type? V.Details.SNMP.Generic…
-
Thank you! Cool, I am trying some things now. Lets see what happens!
-
Thanks again for everyones input, When I do only the discovery, actually, steps 1 and 5, nothing gets pulled in and I get an alert "polling failed after 5 tries". Also I dont get any machine type information, DNS data and no interfaces are added over time. After adding steps, 2,3,4 now I can see the machine type data, DNS…
-
Im going to try and change the order by setting up the discovery prior to the node creation. Ill see what happens there. Thank you very much for for your input. Thank you for sharing your code. It is basically the same as mine except I am not running the discovery checks afterwards which is probably a good idea. I only…
-
Thank you for your response. I just assumed that first a node needs to be created then discovery should take place. We dont use any customer pollers. Im not sure how to do that yet. I only use from the provided list of poller types. So, so far this is the order of events: 1. Create Node 2. Create Pollers 3. Find Interfaces…
-
Thanks for your response. Well I assumed that since we have SNMP devices that SNMP should be selected. Ok thank you I will remove the V poller types. Ill test it again with these settings $poller_types = array( 'N.Status.ICMP.Native' => true, 'N.Status.SNMP.Native' => false, 'N.ResponseTime.ICMP.Native' => true,…
-
Seems to be working great! Polling is working and interfaces are going in. However I think I need to add more Poller Types in order to get CPU, volume and memory usage. Im currently testing it. $icmp = false; $snmp = true; $poller_types = array( 'N.Status.ICMP.Native' => $icmp, 'N.Status.SNMP.Native' => $snmp,…
-
One more question, would you suggest periodically running the DiscoverInterfacesOnNode verb for existing nodes from time to time or will it automatically do that? Thanks.
-
Yes, you are correct in your understanding of the process Im running and I am grateful for your input, thank you! I think you might have saved the day! We have created our own community string and put it in SW. When I run a manual test in SW for the community string is passes. I am using this to get the community ID,…
-
@TDanner that worked great. Thank you!
-
Awesome, I will try that now! Thank you for your assistance.
-
Thanks for your response, So this is the process Node creation Core Config Interface Config Start Discovery This all happen in immediate sequence. Interfaces are not imported when ran automatically using the API. Only after the node is in SW, I can manually import the interfaces. So basically when I do an automated node…