NIOS Statistics

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.

Welcome!

It looks like you're new here. Sign in or register to get started.

Answers

  • Currently leveraging SNMP, dashboard metrics, and Infoblox Reporting are the methods to obtain these types of statistics.

  • 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.

  • 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.

Welcome!

It looks like you're new here. Sign in or register to get started.

Welcome!

It looks like you're new here. Sign in or register to get started.