To check how many concurrent instances of each module you currently use, send a GetStatus
action. This action also displays information on any limits on the numbers of each module imposed by your license.
To retrieve module licensing information, send a GetStatus
action with the ShowModules
parameter set to True
. For example:
http://localhost:15000/action=GetStatus&ShowModules=True
This action returns the GetStatus
page of the server on the local machine that uses ACI port 15000
. The GetStatus
page returns additional information about module use. For example:
<modules> <module> <name>stt</name> <usage>0</usage> <maxCount>5</maxCount> </module> <module> <name>frontend</name> <usage>2</usage> <maxCount>unlimited</maxCount> </module> <module> <name>langid</name> <usage>2</usage> <maxCount>5</maxCount> </module> </modules>
|