Question
Shanshan Yu · Jan 26, 2021

How to get the license usage through SQL or global

How to get the license usage through SQL or global?

1
0 202
Discussion (4)3
Log in or sign up to continue

But I want to get the  license info  of another IP studio from my own studio through code

I've come across similar problems and I'm looking forward to answering them

There's a plethora of ways to get license information, as Marcel pointed out, through $SYSTEM.License.  The online class reference show the methods and queries, with sample code, available to invoke: https://docs.intersystems.com/latest/csp/documatic/%25CSP.Documatic.cls?...

From a command-line (list instance name(s) running, i.e., CACHE) that can be setup to run as a secure remote procedure call; or what we do is have scripts that feed back this data to our Nagios monitor for hosts/instances:

$ ccontrol all
$ ccontrol stat CACHE -a0 -L1

Hope this helps.