show processes memory
Python
Copy
import json

"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'

myheaders={'content-type':'application/json'}
payload={
  "ins_api":{
  "version": "1.0",
  "type": "cli_show",
  "chunk": "0",
  "sid": "1",
  "input": "show processes memory ",
  "output_format": "json"
}

response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)


{

  "ins_api": {
    "type": "cli_show",
    "version": "1.0",
    "sid": "eoc",
    "outputs": {
      "output": {
        "input": "show processes memory ",
        "msg": "Success",
        "code": "200",
        "body": {
          "TABLE_process_memory": {
            "ROW_process_memory": [
              {
                "mem_pid": 1,
                "mem_alloc": 188416,
                "mem_limit": 0,
                "mem_used": 4308992,
                "stack_base_ptr": "14203ba0/14203468",
                "process": "init"
              },
              {
                "mem_pid": 6036,
                "mem_alloc": 2207744,
                "mem_limit": 0,
                "mem_used": 443641856,
                "stack_base_ptr": "ffcf7d90/ffcf7528",
                "process": "dcos_sshd"
              },

…
…
<snip>
…
…
              {
                "mem_pid": 28465,
                "mem_alloc": 638976,
                "mem_limit": 0,
                "mem_used": 87199744,
                "stack_base_ptr": "e3340940/e333fc38",
                "process": "sshd"
              }
            ]
          }
        }
      }
    }
  }
}