- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
NIOS Statistics
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-29-2016 06:03 AM
Hey guys! I'm new here, so I want to know how to get some statistics from NIOS like cpu usage, mem available, etc. I heard that is possible with snmp, there is another method? I mean is it possible with the WAPI?
Thanks and sorry for my bad english.
Re: NIOS Statistics
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2016 01:22 PM
Currently leveraging SNMP, dashboard metrics, and Infoblox Reporting are the methods to obtain these types of statistics.
Re: NIOS Statistics
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2016 04:35 PM
This is what want to do, I need the host list in the grid to be able to get information from each host througth snmp. How can it be possible.
Thank a lot already.
Re: NIOS Statistics
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2016 08:21 AM
You are able to query a list of the Grid members (host list) via the WAPI referencing the following object:
https://x.x.x.x/wapi/v1.2.1/member
curl example:
curl -k -u admin:infoblox -X GET https://192.168.1.1/wapi/v1.2.1/member
[
{
"_ref": "member/b25lLnZpcnR1YWxfbm9kZSQw:gm.lab.local",
"host_name": "gm.lab.local"
},
{
"_ref": "member/b25lLnZpcnR1YWxfbm9kZSQx:ni.lab.local",
"host_name": "ni.lab.local"
},
{
"_ref": "member/b25lLnZpcnR1YWxfbm9kZSQy:rpt.lab.local",
"host_name": "rpt.lab.local"
},
{
"_ref": "member/b25lLnZpcnR1YWxfbm9kZSQz:cp.lab.local",
"host_name": "cp.lab.local"
},
{
"_ref": "member/b25lLnZpcnR1YWxfbm9kZSQ0:gmc.lab.local",
"host_name": "gmc.lab.local"
}
This may help you if you are looking for a programatic method to obtain a listing of Grid members to query via SNMP.