Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The Current Feature Usage API delivers metrics that License Statistics collects from the monitored license server. This endpoint is used to fetch license usage metrics specific to the Current Feature Usage, allowing you to monitor statistics for the currently selected feature on a selected license server.

Obtaining information about current feature usage

...

The following code block shows an example result of a successful request:

 

Code Block
languagejs
firstline1
linenumberstrue
{
    success: ${success},
    msg: ${message},
    data: [{
        "fid": ${featureId},
        "lud": ${dateAndTime},
        "ltc": ${totalCount},
        "lumax": ${licenseUsageMax},
        "lbmax": ${licensesBorrowedMax}
    }],
    "code": ${errorCode},
    "totalCount": ${totalCount}
}

where the response fields can be explained as follows:

...