PMDAPIPE(1) | General Commands Manual | PMDAPIPE(1) |
pmdapipe - command output capture performance metrics domain agent (PMDA)
$PCP_PMDAS_DIR/pipe/pmdapipe [-c configfile] [-d domain] [-l logfile] [-m memory]
pmdapipe is a configurable command output monitoring Performance Metrics Domain Agent (PMDA). It can be seen as analogous to a restricted shell, where options can be passed to preset commands, and each line of their output is converted into a performance event. These events can be consumed by client tools like pmval(1).
The pipe PMDA exports both event-style metrics reflecting timestamped event records for text-oriented command output, as well as the more orthodox sample-style metrics such as event counts and throughput size values.
The PMDA is configured via a configfile which contains one line for each process from which output can be captured, as described in the ``CONFIGURATION'' section below.
A brief description of the pmdapipe command line options follows:
The set of allowed pipe commands is configured by simple text file(s). The format is a single line for each command followed by an optional access control section.
Blank lines and comments are permitted (even encouraged) in the configuration file. A comment begins with a ``#'' character and finishes at the end of the line.
Each command configuration line is of the form:
Where,
Parameters are passed as a single space-separated or comma-separated string to the pipe.firehose metric, using the pmStore (3) interface. The pmval command provides store access via its -x option. User-supplied parameters are restricted to containing alphanumeric characters.
The access control section of the file must start with a line of the form:
Leading and trailing whitespace may appear around and within the brackets and the case of the access keyword is ignored. No other text may appear on the line except a trailing comment.
Following this line, the remainder of the configuration file should contain lines that allow or disallow use of commands from particular users or groups.
User names and group names will be verified using the local /etc/passwd and /etc/groups files (or an alternative directory service), using the getpwent(3) and getgrent(3) routines.
Access for users or groups are allowed or disallowed by specifying statements of the form:
The username and groupname names will be verified using the local /etc/passwd and /etc/groups files (or an alternative directory service), using the getpwent(3) and getgrent(3) routines.
The wildcard ``*'' can be used to refer to all instance names.
If you want access to the names, help text and values for the pipe performance metrics, do the following as root:
# cd $PCP_PMDAS_DIR/pipe # ./Install
This is an interactive installation process which prompts for each log file path to be monitored (or command to be run), a metric instance name to identify it, and whether access should be restricted (refer to the -x option to pmval(1) for further details).
If you want to undo the installation, do the following as root:
# cd $PCP_PMDAS_DIR/pipe # ./Remove
pmdapipe is launched by pmcd and should never be executed directly. The Install and Remove scripts notify pmcd when the agent is installed or removed.
Following is a simple example of pmdapipe configuration and use of the pipe metrics to run the btrace command, by user bob:
bob> cat $PCP_PMDAS_DIR/pipe/pipe.conf # instance user command rw_syscalls root perf script rw-by-file $1 bdev_trace root btrace -w $1 /dev/$2 [access] allow user bob : *; allow user jane : bdev_trace; allow group perf : rw_syscalls; bob> pmval -i bdev_trace -x '5 sda' pipe.firehose
8,2 5 1 0.000000000 25227 A WS 734332384 + 24 <- (253,2) 734330336
8,0 5 2 0.000000414 25227 A WS 735358432 + 24 <- (8,2) 734332384
8,0 5 3 0.000000756 25227 Q WS 735358432 + 24 [qemu-kvm]
[...5 seconds worth] bob>
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).
PCPIntro(1), pmval(1), pmcd(1), getpwent(3), getgrent(3), pmStore(3), pcp.conf(5) and pcp.env(5).
PCP | Performance Co-Pilot |