mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 02:45:42 +03:00
* Docs SEO: Update Configuration section to improve search engine opt CE-775 * Add enterprise only back to audit * Update descriptions and add intro paragraph * Fix typo * replace "below" and "see" * Apply suggestions from code review Co-authored-by: Jeff Boruszak <104028618+boruszak@users.noreply.github.com> --------- Co-authored-by: Jeff Boruszak <104028618+boruszak@users.noreply.github.com>
43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
---
|
|
layout: docs
|
|
page_title: reporting Block in Agent Configuration
|
|
description: >-
|
|
Enable automated license utilization reporting in the `reporting` block of a Nomad agent configuration. Configuration applies to agents running Nomad Enterprise with server mode enabled.
|
|
---
|
|
|
|
# `reporting` Block in Agent Configuration
|
|
|
|
<Placement groups={['reporting']} />
|
|
<EnterpriseAlert product="nomad"/>
|
|
|
|
This page provides reference information for enabling automated license
|
|
utilization reporting in the `reporting` block of a Nomad agent configuration.
|
|
|
|
Configuration applies to agents running with [server mode
|
|
enabled][server_mode_enabled].
|
|
|
|
Refer to the [Automated license utilization reporting
|
|
guide][automated_license_utilization_reporting] for which ports to open and what
|
|
data is shared.
|
|
|
|
```hcl
|
|
reporting {
|
|
license {
|
|
enabled = true
|
|
}
|
|
}
|
|
```
|
|
|
|
## `reporting` Parameters
|
|
|
|
- `license` <code>([license](#license-block): default)</code> - Configures
|
|
automated license utilization reporting.
|
|
|
|
## `license` Block
|
|
|
|
- `enabled` `(bool: true)` - Specifies whether automated license utilization
|
|
reporting should be enabled and run.
|
|
|
|
[server_mode_enabled]: /nomad/docs/configuration/server#enabled
|
|
[automated_license_utilization_reporting]: /nomad/docs/enterprise/license/utilization-reporting
|