/var/lib/pcp/testsuite/archives/mk.dynmetric is in pcp-testsuite 4.0.1-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/sh
#
# Create dynmetric archive
#
rm -f dynmetric.*
tmp=/var/tmp/$$
trap "rm -f $tmp.*; exit 0" 0 1 2 3 15
cat <<End-of-File >$tmp.config
log mandatory on default {
sampledso.drift
sampledso.secret
sampledso.bin
sampledso.long
}
End-of-File
pmlogger -s 10 -t 1 -c $tmp.config dynmetric
|