Monitor License Usage

Obtain information about your Kong Gateway deployment, including license usage and deployment information using the License Report module. Share this information with Kong to perform a health-check analysis of product utilization and overall deployment performance to ensure your organization is optimized with the best license and deployment plan for your needs.

How the license report module works:

  • The license report module manually generates a report containing usage and deployment data by sending a request to an endpoint, as defined below.
  • Share this report with your Kong representative to perform an analysis of your deployment.

What the license report module does not do:

  • The license report module does not automatically generate a report or send any data to any Kong servers.
  • The license report module does not track or generate any data other than the data that is returned in the response after you send a request to the endpoint.

Generate a License Report

Run the license report module and share the output information with your Kong representative for a deployment analysis.

Prerequisites: You must have Admin privileges to generate a license report.

To generate a license report, from an HTTP client:

JSON response

TAR file

For a JSON response, send an HTTP request to the Kong node endpoint /license/report. For example, use this cURL command:

  1. curl {ADMIN_API_URL}/license/report

A JSON response returns, similar to the example below:

  1. HTTP/1.1 200 OK
  2. Access-Control-Allow-Credentials: true
  3. Access-Control-Allow-Origin: http://localhost:8002
  4. Connection: keep-alive
  5. Content-Length: 814
  6. Content-Type: application/json; charset=utf-8
  7. Date: Mon, 06 Dec 2021 12:04:28 GMT
  8. Server: kong/2.7.0.1-enterprise-edition
  9. Vary: Origin
  10. X-Kong-Admin-Request-ID: R1jmopI6fjkOLdOuPJVLEmGh4sCLMpSY
  11. {
  12. "counters": [
  13. {
  14. "bucket": "2021-09",
  15. "request_count": 30
  16. },
  17. {
  18. "bucket": "2020-10",
  19. "request_count": 42
  20. },
  21. {
  22. "bucket": "2021-11",
  23. "request_count": 296
  24. },
  25. {
  26. "bucket": "2021-12",
  27. "request_count": 58
  28. },
  29. {
  30. "bucket": "UNKNOWN",
  31. "request_count": 50
  32. }
  33. ],
  34. "db_version": "postgres 9.6.24",
  35. "kong_version": "2.7.0.1-enterprise-edition",
  36. "license_key": "KONGLICENSEKEY_NOTVALIDFORREAL_USAGE",
  37. "rbac_users": 0,
  38. "services_count": 27,
  39. "system_info": {
  40. "cores": 6,
  41. "hostname": "akongnode",
  42. "uname": "Linux x86_64"
  43. },
  44. "workspaces_count":1
  45. }

For a TAR file, enter the following cURL command to make a call to the Kong Admin API:

  1. curl {ADMIN_API_URL}/license/report -o response.json && tar -cf report-$(date +"%Y_%m_%d_%I_%M_%p").tar response.json

A license report file is generated and archived to a *.tar file.

Report Structure

FieldDescription
countersCounts the number of requests made in a given month.

bucket: Year and month when the requests were processed. If the value in bucket is UNKNOWN, then the requests were processed before Kong Gateway 2.7.0.1.
request_count: Number of requests processed in the given month and year.
db_versionThe type and version of the datastore Kong Gateway is using.
kong_versionThe version of the Kong Gateway instance.
license_keyAn encrypted identifier for the current license key. If no license is present, the field displays as UNLICENSED.
rbac_usersThe number of users registered with through RBAC.
services_countThe number of configured services in the Kong Gateway instance.
system_infoDisplays information about the system running Kong Gateway.

cores: Number of CPU cores on the node
hostname: Encrypted system hostname
uname: Operating system
workspaces_countThe number of workspaces configured in the Kong Gateway instance.