Versions Compared

Key

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


Warning
This page refers to functionality that has been removed from License Statistics. This information no longer applies to License Statistics v6.3 and newer.

The Realtime Users Count endpoint delivers license usage metrics specific to the Realtime Users Count report, allowing you to see detailed information about the License Statistics API lets you generate data from the Realtime Users Count report. This report shows user count for all realtime license servers.

Obtaining information about realtime user count

If you want to retrieve information You can easily fetch metrics about realtime user count , we recommend that you send by sending the following HTTP request.

language
Code Block
php
linenumberstrue
GET /api/v1/report/users/denials/usercountrealtime-count/${returnType}

where $ indicates a variable value that you can replace with a value that best suits your needs. The possible parameters are described below.Possible parameters are as follows:

Parameter

Required

Type

Description

fieldsVisibilityNojson/string

Specifies field visibility settings, for example:

Code Block
languagejs
firstline1
{"ucd": "1", "uct": "1", "ucdy": "1", "ucde": "1", "ucch": "1"}

where "1" indicates that a specific field is visible and ''0" indicates that it is not.

Note that the order of the settings you make is important – when exported, the fields will be visible in exactly the same order you specify here.

rn

NostringSpecifies the name of the report that will be displayed once the report has been exported to PDF or XLS. For CSV and JSON formats this parameter will be ignored.
If you don't pass this parameter, it will be generated automatically for PDF and XLS types. If provided, it cannot be left empty.
filterNojson/string

Applies filtering license usage data on all fields.

To filter by string column, use the following format:

Code Block
languagejs
[
	{ 
		"type": "string",
		"field": "ucd",
		"value": "${value}"
	}
]
To filter by numeric column, use the following format: 

 

Code Block
[
    {
        "type": "numeric",
        "comparison": "${gt | lt | eq}",
        "field": "${uct | ucdy | ucde | ucch}",
        "value": "${value}"
    }
]
limitNointegerDetermines the maximum number of data records that can be returned. The value must be greater than zero.
offsetNointegerSpecifies the offset of the first row to return.
orderByNostringSpecifies the field by which you want to order your data records. The field name can be one of the following: ucd, uct, ucdy, ucde, ucch.
orderDirectionNostringDetermines whether the sorting results will be displayed in ascending (ASC) or descending (DESC) order.

If your request is successful, you should see a response similar to the following:

Code Block
{
    success: ${success},
    msg: ${message},
    data: [{
        "ucd": ${date},
        "uct": ${totalUsers},
        "ucdy": ${dailyUsers},
        "ucde": ${deniedUsers},
        "ucch": ${consurrentHosts}
    }],
    "code": ${errorCode},
    "totalCount": ${totalNumberOfRecords}
}

where the response fields can be explained as follows:

...

ucd

...

uct

...

ucdy

...

ucde

...

ucch

...

msg

...

success

...

${returnType}YesstringStandard format option. See Making an API request for details.
standard report options Novarious

See Making an API request for details.

Response

On success, this report will contain one row for each day in the past. Each row consists of columns: 

ColumnFull nameTypeDescriptionVisible by default in export

ucd

DatedateThe date.(tick)Yes

uct

Total Usersinteger

If using Licensing Model 2013: The number of unique users that were using a license on any realtime license server in the last 14 days.

If using Licensing Model 2019: The number of unique users that were using a license or were denied a license on any license server in the past.

(tick)Yes

ucdy

Daily Usersinteger

If using Licensing Model 2013: The number of unique users using a license on any realtime license server on the given day.

If using Licensing Model 2019: The number of unique users using a license or that were denied a license on any license server on the given day.

(tick)Yes

ucde

Denial UsersintegerNumber of unique users that were denied a license during the given day.
(tick)Yes

ucch

Concurrent HostsintegerMaximum number of hosts that were concurrently active on the given day.
(tick)Yes

Note that the order in the table is the default order of the columns in the exported file.

Example

The following example shows a command that downloads data about realtime users count to an XLSX file.

Code Block
curl -H "X-Auth-token: token" "http://yourdomain/api/v1/report/users/realtime-count/XLSX"

...