This repository has been archived by the owner on Mar 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BIOHAZARD WARNING - PMCD IMPLANT (#1157)
- Loading branch information
Showing
3 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#! /bin/sh | ||
|
||
set -eu | ||
|
||
# Initialize a little unprivileged pcp pmcd metrics collector | ||
# process within this container; run this in a background subshell. | ||
# No special signal handling or cleanup required. | ||
( | ||
# Setup pmcd to run in unprivileged mode of operation | ||
. /etc/pcp.conf | ||
|
||
# Configure pmcd with a minimal set of DSO agents | ||
rm -f $PCP_PMCDCONF_PATH; # start empty | ||
echo "# Name ID IPC IPC Params File/Cmd" >> $PCP_PMCDCONF_PATH; | ||
echo "pmcd 2 dso pmcd_init $PCP_PMDAS_DIR/pmcd/pmda_pmcd.so" >> $PCP_PMCDCONF_PATH; | ||
echo "proc 3 dso proc_init $PCP_PMDAS_DIR/proc/pmda_proc.so" >> $PCP_PMCDCONF_PATH; | ||
echo "linux 60 dso linux_init $PCP_PMDAS_DIR/linux/pmda_linux.so" >> $PCP_PMCDCONF_PATH; | ||
rm -f $PCP_VAR_DIR/pmns/root_xfs $PCP_VAR_DIR/pmns/root_jbd2 $PCP_VAR_DIR/pmns/root_root $PCP_VAR_DIR/pmns/root | ||
touch $PCP_VAR_DIR/pmns/.NeedRebuild | ||
|
||
# allow unauthenticated access to proc.* metrics (default is false) | ||
export PROC_ACCESS=1 | ||
export PMCD_ROOT_AGENT=0 | ||
|
||
# NB: we can't use the rc.pmcd script. It assumes that it's run as root. | ||
cd $PCP_VAR_DIR/pmns | ||
./Rebuild | ||
|
||
cd $PCP_LOG_DIR | ||
|
||
: "${PCP_HOSTNAME:=`hostname`}" | ||
# possibly: filter pod name? | ||
|
||
# We can log in plaintext to stdout also, even though ALM uses | ||
# JSON. pmcd is not chatty and only speaks up during errors. | ||
exec /usr/libexec/pcp/bin/pmcd -l /dev/no-such-file -f -A -H $PCP_HOSTNAME | ||
) & | ||
sleep 5 # give time for pmcd's startup messages, so it doesn't intermix with ALM's | ||
|
||
|
||
exec bin/alm ${1+"$@"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[fche-pcp] | ||
name=Copr repo for pcp owned by fche | ||
baseurl=https://copr-be.cloud.fedoraproject.org/results/fche/pcp/epel-7-$basearch/ | ||
type=rpm-md | ||
skip_if_unavailable=True | ||
gpgcheck=1 | ||
gpgkey=https://copr-be.cloud.fedoraproject.org/results/fche/pcp/pubkey.gpg | ||
repo_gpgcheck=0 | ||
enabled=1 | ||
enabled_metadata=1 |