Get Iguana runtime status

Verified
Added by iNTERFACEWARE

Use iguana.status() to return an XML summary of the local Iguana's runtime state

Source Code
   -- get the runtime status (returned as XML)
   local Xml = iguana.status()
   
   -- parse into an XML node tree - easier to view/read
   local S = xml.parse{data=Xml}
Description
Use iguana.status() to return an XML summary of the local Iguana's runtime state
Usage Details

Use iguana.status() to get an XML summary of the local Iguana runtime state. We parsed it into a node tree for more convenient access (using xml.parse{} ).

How to use the snippet:

  • Paste the code into your script

Note: If you want to get the state of a remote Iguana instance you can use the Monitor module.