Hi NagiosXI team,
i have bgp snmp command " $USER1$/check_snmp_cisco_bgp.pl -H $HOSTADDRESS$ -C $ARG1$ -P $ARG2$ " this how to monitor bgp session peering with my upstream provider one i need your support is how to monitor graph bandwidth like interface?
Best Regards,
Kimseng
How to Monitor bgp graph
Re: How to Monitor bgp graph
If you want to monitor the interface traffic for your Cisco router using SNMP, you may be able to use the Network Switch / Router wizard.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
Be sure to check out our Knowledgebase for helpful articles and solutions!
Be sure to check out our Knowledgebase for helpful articles and solutions!
Re: How to Monitor bgp graph
Yes i know to monitor my interface cisco device by add Network Switch / Router wizard but my question i already have Cisco device added and i just add service check_cisco_snmp_bgp
$USER1$/check_snmp_cisco_bgp.pl -H $HOSTADDRESS$ -C $ARG1$ -P $ARG2$
The service check_snmp_cisco_bgp is working fine but it's doesn't have graph monitor bandwidth LINK Interface ROUTER that have two one is Bandwidth and other one is Status
$USER1$/check_snmp_cisco_bgp.pl -H $HOSTADDRESS$ -C $ARG1$ -P $ARG2$
The service check_snmp_cisco_bgp is working fine but it's doesn't have graph monitor bandwidth LINK Interface ROUTER that have two one is Bandwidth and other one is Status
Re: How to Monitor bgp graph
check_cisco_snmp_bgp doesn't appear to return performance data and without performance data there is nothing for Nagios to graph. You can run the wizard on the same cisco device to setup bandwidth monitoring for it's interfaces.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
Re: How to Monitor bgp graph
I send you the attachment file
The interface have bandwidth and status that we can see the graph but for the bgp peering session it doesn't have any graph so what i need you help is i want to have graph with bgp peering session. Any way to do it?
The interface have bandwidth and status that we can see the graph but for the bgp peering session it doesn't have any graph so what i need you help is i want to have graph with bgp peering session. Any way to do it?
You do not have the required permissions to view the files attached to this post.
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: How to Monitor bgp graph
Does that plugin return performance data? Not all do, and some you have to add an argument to enable it.
I looked at the plugin here which I think is the one you are using and it DOES NOT return performance data
https://exchange.nagios.org/directory/P ... er/details
I looked at the plugin here which I think is the one you are using and it DOES NOT return performance data
https://exchange.nagios.org/directory/P ... er/details
Re: How to Monitor bgp graph
Yes i already using this plugin and this plugin is Check BGP peer status, established time, prefixes but want i need i can know bgp peering graph bandwidth download and upload or i think graph BGP peering with AS number.
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: How to Monitor bgp graph
Being this plugin doesn't return performance data you would either need to modify the plugin or create a new one that does.kimseng wrote:Yes i already using this plugin and this plugin is Check BGP peer status, established time, prefixes but want i need i can know bgp peering graph bandwidth download and upload or i think graph BGP peering with AS number.
Here are the Nagios Plugin Development Guidelines if you want to know the format for performance data
https://nagios-plugins.org/doc/guidelines.html#AEN200