Scroll to navigation

PMDANIXL(1) General Commands Manual PMDANIXL(1)

NAME

pmdanixl - NVIDIA NIXL Performance Metrics Domain Agent

SYNOPSIS

$PCP_PMDAS_DIR/nixl/pmdanixl

DESCRIPTION

pmdanixl is a Performance Co-Pilot (PCP) Performance Metrics Domain Agent (PMDA) that collects performance telemetry from one or more running NIXL (NVIDIA Inference Xfer Library) agents.

NIXL agents write per-event telemetry into shared-memory ring buffers located in the directory specified by the NIXL_TELEMETRY_DIR environment variable (default /var/tmp). The PMDA discovers agent files in that directory, drains new events on each fetch, and accumulates them into per-agent running counters. Each discovered agent appears as a separate instance in the nixl.agents instance domain, so metrics from different agents can be monitored independently.

Metrics are organised into four groups:

Data transfer byte and request counts (TX and RX).
Memory registration and deregistration sizes.
Accumulated transfer time measurements (in microseconds).
Error event counts, broken down by error type.

NIXL CONFIGURATION

NIXL telemetry is disabled by default. The following environment variables must be set in each NIXL application process before it creates its agent for telemetry data to be written to shared memory and discovered by this PMDA.

Activates telemetry collection. Accepted values are 1, yes, on, true, or enable (case-insensitive).
Directory in which NIXL writes its shared-memory telemetry files, one file per agent, named after the agent name supplied at agent creation time. This must match the telemetry_dir setting in $PCP_SYSCONF_DIR/nixl/nixl.conf. Defaults to /var/tmp.
Number of events the ring buffer can hold before older events are silently overwritten. Increase this value if the application produces bursts of telemetry faster than the PMDA drains them. Defaults to 4096.
Flush interval in milliseconds used by the NIXL exporter thread. Defaults to 100.

A minimal setup for a single application is:

export NIXL_TELEMETRY_ENABLE=1
export NIXL_TELEMETRY_DIR=/var/tmp
./my_nixl_application

With multiple applications writing to the same directory, each agent file will be discovered automatically and reported as its own instance. The PMDA user (set via user in nixl.conf) should match the user running the NIXL applications so that file permissions align without requiring world-writable telemetry files.

INSTALLATION

Once NIXL applications are configured to export telemetry, install the PMDA:

# cd $PCP_PMDAS_DIR/nixl
# ./Install
If NIXL_TELEMETRY_DIR is not the default /var/tmp, set it in the environment before running Install so it is recorded in the PMDA's startup configuration.

To verify the PMDA is running and instances are visible:

$ pminfo -t nixl
$ pminfo -f nixl.transfer.tx_bytes

REMOVAL

# cd $PCP_PMDAS_DIR/nixl
# ./Remove

ENVIRONMENT

Overrides telemetry_dir from nixl.conf at runtime. Defaults to /var/tmp.

FILES

$PCP_SYSCONF_DIR/nixl/nixl.conf
PMDA configuration file.
$PCP_PMDAS_DIR/nixl/Install
Installation script.
$PCP_PMDAS_DIR/nixl/Remove
Removal script.
$PCP_LOG_DIR/pmcd/nixl.log
PMDA log file.

PCP ENVIRONMENT

Environment variables with the prefix PCP_ are used to parameterize the file and directory names used by PCP. On each installation, the file /etc/pcp.conf contains the local values for these variables. The $PCP_CONF variable may be used to specify an alternative configuration file, as described in pcp.conf(5).

SEE ALSO

PCPIntro(1), pmcd(1), pminfo(1), pmval(1) and PMDA(3).

PCP Performance Co-Pilot