Supported telemetry types
The NGINX integration supports these telemetry types:Prerequisites
The NGINX integration has the following prerequisites:-
Use an NGINX build that includes the
ngx_http_stub_status_module. To confirm that your build includes the module, run: - Make the NGINX status endpoint reachable from the collector.
Configure
To configure the NGINX integration, follow these steps:-
Configure NGINX to expose status information at
/status. For example, add the following location to the NGINX server configuration: -
Choose how the collector finds your NGINX servers:
- For NGINX pods that listen on port
80, add theapp.kubernetes.io/name: nginxlabel to the pod template. - For NGINX pods or Services that use another port or status path, add autodiscovery annotations that provide the NGINX status URL.
- For NGINX pods that listen on port
-
Optional: Configure static targets to collect metrics from NGINX servers outside
your Kubernetes cluster. For example, add the following to the
values.yamlfor your Helm chart:When you configure static targets, this integration instance collects from exactly those targets instead of discovered targets. -
Optional: Configure a second integration instance to collect from both discovered
pods and static targets. For example, add the following to the
values.yamlfor your Helm chart:Thenginx/edgekey defines a named instance for the static targets. The barenginxkey continues to use autodiscovery.
Validate
To validate the NGINX integration, follow these steps:-
In the Live Telemetry Analyzer, filter for
cxdot.integration.name=nginx. Confirm that the NGINX metric names appear. -
In Metrics Explorer, run the following query while the NGINX servers receive
traffic:
Confirm that the query returns the expected time series for each target.
Configuration reference
Configure one NGINX integration instance with the following settings. In Helm values, place these settings underconfig.integrations.nginx. In a Collector configuration file, place them
under cxdot.integrations.nginx.
Optional settings
-
enabledType:boolean. Optional. Default:true. Whether to enable this NGINX integration instance. If true, the Collector runs the instance. If false, the Collector doesn’t run it. -
endpointsType:array of object. Optional. Static NGINX targets. When this list is empty or omitted, the integration uses autodiscovery. When the list contains targets, this integration instance collects from exactly those targets and doesn’t use autodiscovery. Configure a second named instance to use both methods. For ahost:portvalue, the Collector requestshttp://<host>:<port>/status. For a full URL, the Collector requests the URL as written. AnhttpsURL must include the status path. -
endpoints[].endpointType:string. Required. NGINX endpoint as eitherhost:portor a full HTTP or HTTPS URL. Forhost:port, the Collector requests the/statuspath over HTTP. -
collection_intervalType:duration. Optional. Default:10s. How often the Collector collects metrics from each NGINX endpoint. -
timeoutType:duration. Optional. Default:10s. Maximum time the Collector waits for an NGINX endpoint to respond during one collection. This value must not exceedcollection_interval. If the deadline expires, that collection fails. -
disable_keep_alivesType:boolean. Optional. Default:true. Close the scrape connection after each collection instead of holding it open with keep-alive. A held connection remains in the NGINXwaitingstate forkeepalive_timeoutand inflatesnginx.connections_current{state="waiting"}, so connections close by default. Set this value tofalseto reuse one connection across collections. Annotation-discovered endpoints instead take connection persistence from the annotation’spersist_connections,tls_use_host_header,headers, andextra_headersfields. -
tlsType:object. Optional. TLS settings for connections to NGINX endpoints. These settings apply only to endpoints that usehttps. The Collector verifies server certificates by default. -
tls.ca_fileType:string. Optional. Path to a PEM-encoded certificate authority (CA) certificate file used to verify the NGINX server certificate. If omitted, the Collector uses the system certificate authority pool. -
tls.ca_pemType:string. Optional. PEM-encoded certificate authority certificate content used to verify the NGINX server certificate. -
tls.cert_fileType:string. Optional. Path to the PEM-encoded client certificate file to present when the NGINX endpoint requires mutual TLS authentication. -
tls.cert_pemType:string. Optional. PEM-encoded client certificate content to present when the NGINX endpoint requires mutual TLS authentication. -
tls.cipher_suitesType:array of string. Optional. TLS cipher suites that the Collector can use, in preference order. If omitted, the Collector uses the secure defaults from the Go TLS library. For supported names, see https://go.dev/src/crypto/tls/cipher_suites.go. -
tls.curve_preferencesType:array of string. Optional. Elliptic curves that the Collector can use for an elliptic curve Diffie-Hellman ephemeral handshake, in preference order. If omitted, the Collector uses the Go TLS library defaults. -
tls.include_system_ca_certs_poolType:boolean. Optional. Whether to add certificates from the system certificate authority pool to the configured certificate authorities. If true, the Collector trusts both sources. If false, the Collector trusts only the configured certificate authorities. -
tls.insecureType:boolean. Optional. Whether to disable transport security. If true, the Collector uses an unencrypted connection. If false, the Collector uses TLS for HTTPS endpoints. -
tls.insecure_skip_verifyType:boolean. Optional. Whether to skip verification of the NGINX server certificate. If true, the connection is encrypted but isn’t authenticated and is vulnerable to man-in-the-middle attacks. If false, the Collector verifies the certificate. -
tls.key_fileType:string. Optional. Path to the PEM-encoded client private key file used withcert_filefor mutual TLS authentication. -
tls.key_pemType:string. Optional. PEM-encoded client private key content used withcert_pemfor mutual TLS authentication. -
tls.max_versionType:string. Optional. Maximum TLS protocol version the Collector can use. If omitted, the Collector uses the maximum version supported by the Go TLS library. -
tls.min_versionType:string. Optional. Minimum TLS protocol version the Collector can use. If omitted, the minimum version is TLS 1.2. -
tls.reload_intervalType:duration. Optional. How often the Collector reloads certificate and key files. If omitted, the Collector doesn’t reload the files. -
tls.server_name_overrideType:string. Optional. Server name to verify in the NGINX certificate instead of the endpoint hostname. Use this setting when the certificate name differs from the endpoint hostname. -
tls.tpmType:object. Optional. Trusted platform module settings for the TLS private key. -
tls.tpm.authType:string. Optional. Authorization value for the trusted platform module key. -
tls.tpm.enabledType:boolean. Optional. Whether to use a trusted platform module for the TLS private key. If true, the Collector loads the key from the configured device or socket. If false, the Collector uses the configured key file or in-memory key. -
tls.tpm.owner_authType:string. Optional. Owner authorization value for the trusted platform module. -
tls.tpm.pathType:string. Optional. Path to the trusted platform module device or Unix domain socket, such as/dev/tpm0or/dev/tpmrm0.

