From 89b5020973220f0592170a7a014f2c28e5199931 Mon Sep 17 00:00:00 2001 From: Jon Torre <78599298+JTorreG@users.noreply.github.com> Date: Mon, 6 Oct 2025 12:43:23 +0100 Subject: [PATCH] docs: Update agent features configuration examples Removed 'connection' and 'agent-api' features from launch and environment variable examples. as these don't apply to v3 --- .../agent/configure-instances/configure-agent-features.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/content/nginx-one/agent/configure-instances/configure-agent-features.md b/content/nginx-one/agent/configure-instances/configure-agent-features.md index 81957964f..54afc0bc7 100644 --- a/content/nginx-one/agent/configure-instances/configure-agent-features.md +++ b/content/nginx-one/agent/configure-instances/configure-agent-features.md @@ -26,9 +26,7 @@ The following table lists the NGINX Agent features: | ------------------- | --------------------------------------------------------------------------- | ------- | | configuration | Full read/write management of configurations, controlled by DataPlaneConfig ConfigMode. | On | | certificates | Inclusion of public keys and other certificates in the configurations toggled by DataPlaneConfig CertMode | Off | -| connection | Sends an initial connection message reporting instance information on presence of Command ServerConfig Host and Port | On | | file-watcher | Monitoring of file changes in the allowed directories list and references from product configs. | On | -| agent-api | REST API for NGINX Agent. | Off | | metrics | Full metrics reporting. | On | | > metrics-host | Host-level metrics (cpu, disk, load, fs, memory, network, paging). | On | | > metrics-container | Container-level metrics from cgroup information. | On | @@ -46,7 +44,7 @@ You can enable or disable features using several configuration sources: Enable features at launch: ```shell - ./nginx-agent --features=connection,configuration,metrics,file-watcher,agent-api + ./nginx-agent --features=configuration,metrics,file-watcher ``` ### Environment variables @@ -54,7 +52,7 @@ Enable features at launch: Use environment variables for containerized deployments: ```shell - export NGINX_AGENT_FEATURES="connection,configuration,metrics,file-watcher,agent-api" + export NGINX_AGENT_FEATURES="configuration,metrics,file-watcher" ``` ### Configuration file @@ -63,11 +61,9 @@ Define features in the `nginx-agent.conf` file: ```yaml features: - - connection - configuration - metrics - file-watcher - - agent-api ``` ## Use cases