Automated license utilization reporting

This topic describes how to enable automated license utilization reporting in Consul Enterprise. This feature automatically sends license utilization data to HashiCorp so that you do not have to manually collect and report it. It also enables you to review your license usage with the monitoring solution you already use, such as Splunk and Datadog, as you optimize and manage your deployments.

Introduction

You can use automated license utilization report to understand how much additional networking infrastructure you can deploy under your current contract. This feature helps you protect against overutilization and budget for predicted consumption.

Automated reporting shares the minimum data required to validate license utilization as defined in our contracts. This data mostly consists of computed metrics, and it will never contain Personal Identifiable Information (PII) or other sensitive information. Automated reporting shares the data with HashiCorp using a secure unidirectional HTTPS API and makes an auditable record in the product logs each time it submits a report. This process is GDPR-compliant.

Requirements

Automated license utilization reporting does not support air-gapped installations, which are systems with no network interfaces.

The following versions of Consul Enterprise support automated license utilization reporting:

  • Consul Enterprise v1.16.0 and newer.
  • Patch releases of Consul Enterprise v1.15.4 and newer.
  • Patch releases of Consul Enterprise v1.14.8 and newer.
  • Patch releases of Consul Enterprise v1.13.9 and newer.

Download a supported release from the Consul Versions page.

Enable automated reporting

Before you enable automated reporting, make sure that outbound network traffic is configured correctly and upgrade your enterprise product to a version that supports it. If your installation is air-gapped or network settings are not in place, automated reporting will not work.

To enable automated reporting, complete the following steps:

  1. Allow outbound HTTPS traffic on port 443
  2. Check product logs

Allow outbound HTTPS traffic on port 443

Make sure that your network allows HTTPS egress on port 443 from https://reporting.hashicorp.services by adding the following IP adddresses to your allow-list:

Check product logs

Automatic license utilization reporting starts sending data within roughly 24 hours. Check the product logs for records that the data sent successfully.

  1. [DEBUG] beginning snapshot export
  2. [DEBUG] creating payload
  3. [DEBUG] marshalling payload to json
  4. [DEBUG] generating authentication headers
  5. [DEBUG] creating request
  6. [DEBUG] sending request
  7. [DEBUG] performing request: method=POST url=https://census.license.hashicorp.services
  8. [DEBUG] recording audit record
  9. [INFO] reporting: Report sent: auditRecord={"payload":{"payload_version":"1","license_id":"d2cdd857-4202-5a45-70a6-e4b531050c34","product":"consul","product_version":"1.16.0-dev+ent","export_timestamp":"2023-05-26T20:09:13.753921087Z","snapshots":[{"snapshot_version":1,"snapshot_id":"0001J724F90F4XWQDSAA76ZQWA","process_id":"01H1CTJPC1S8H7Q45MKTJ689ZW","timestamp":"2023-05-26T20:09:13.753513962Z","schema_version":"1.0.0","service":"consul","metrics":{"consul.billable.nodes":{"key":"consul.billable.nodes","kind":"counter","mode":"write","value":2},"consul.billable.service_instances":{"key":"consul.billable.service_instances","kind":"counter","mode":"write","value":2}}}],"metadata":{}}}
  10. [DEBUG] completed recording audit record
  11. [DEBUG] export finished successfully"

If your installation is air-gapped or your network does not allow the correct egress, the logs show an error.

  1. [DEBUG] reporting: beginning snapshot export
  2. [DEBUG] reporting: creating payload
  3. [DEBUG] reporting: marshalling payload to json
  4. [DEBUG] reporting: generating authentication headers
  5. [DEBUG] reporting: creating request
  6. [DEBUG] reporting: sending request
  7. [DEBUG] reporting: performing request: method=POST url=https://census.license.hashicorp.services
  8. [DEBUG] reporting: error status code received: statusCode=403

In this case, reconfigure your network to allow egress and check the logs again in roughly 24 hours to confirm that automated reporting works correctly.

Opt out

If your installation is air-gapped or you want to manually collect and report on the same license utilization metrics, you can opt out of automated reporting.

Manually reporting these metrics can be time consuming. Opting out of automated reporting does not mean that you also opt out from sending license utilization metrics. Customers who opt out of automated reporting are still required to manually collect and send license utilization metrics to HashiCorp.

If you are considering opting out because you are worried about the data, we strongly recommend that you review the example payloads before opting out. If you have concerns with any of the automatically reported data, raise these concerns with your account manager.

There are two methods for opting out of automated reporting:

  • HCL configuration (recommended)
  • Environment variable (requires restart)

We recommend opting out in your product’s configuration file because it does not require a system restart. Add the following block to your configuration.hcl or configuration.json file.

  1. reporting {
  2. license {
  3. enabled = false
  4. }
  5. }

When opting out using an environment variable, the system provides a startup message confirming that you have disabled automated reporting. Set the following environment variable to disable automated reporting:

  1. $ export OPTOUT_LICENSE_REPORTING=true

After you set the environment variable, restart your system to complete the process for opting out.

  1. $ consul reload

Check your product logs roughly 24 hours after opting out to make sure that the system is not trying to send reports. Keep in mind that if your configuration file and environment variable differ, the environment variable setting takes precedence.

Example payloads

HashiCorp collects the following utilization data as JSON payloads: exporter_version - The version of the licensing exporter

  1. {
  2. "payload": {
  3. "payload_version": "1",
  4. "license_id": "d2cdd857-4202-5a45-70a6-e4b531050c34",
  5. "product": "consul",
  6. "product_version": "1.16.0-dev+ent",
  7. "export_timestamp": "2023-05-26T20:09:13.753921087Z",
  8. "snapshots": [
  9. {
  10. "snapshot_version": 1,
  11. "snapshot_id": "0001J724F90F4XWQDSAA76ZQWA",
  12. "process_id": "01H1CTJPC1S8H7Q45MKTJ689ZW",
  13. "timestamp": "2023-05-26T20:09:13.753513962Z",
  14. "schema_version": "1.0.0",
  15. "service": "consul",
  16. "metrics": {
  17. "consul.billable.nodes": {
  18. "key": "consul.billable.nodes",
  19. "kind": "counter",
  20. "mode": "write",
  21. "value": 2
  22. },
  23. "consul.billable.service_instances": {
  24. "key": "consul.billable.service_instances",
  25. "kind": "counter",
  26. "mode": "write",
  27. "value": 2
  28. }
  29. }
  30. }
  31. ],
  32. "metadata": {}
  33. }
  34. }