Improve Gentoo ebuild
This commit is contained in:
parent
320c6ecc73
commit
972916463b
70
gentoo/files/pgmon.cfg
Normal file
70
gentoo/files/pgmon.cfg
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
##
|
||||||
|
# Misc agent settings
|
||||||
|
##
|
||||||
|
|
||||||
|
# Where to write/find the agent PID
|
||||||
|
#pid_file=/tmt/pgmon.pid
|
||||||
|
pid_file=/run/pgmon/pgmon.pid
|
||||||
|
|
||||||
|
##
|
||||||
|
# Agent communication settings
|
||||||
|
##
|
||||||
|
|
||||||
|
# IPC socket
|
||||||
|
#ipc_socket=/tmp/pgmon.sock
|
||||||
|
ipc_socket=/run/pgmon/pgmon.sock
|
||||||
|
|
||||||
|
# IPC communication timeout (s)
|
||||||
|
#ipc_timeout=10
|
||||||
|
|
||||||
|
# Request processing timeout (s)
|
||||||
|
#request_timeout=10
|
||||||
|
|
||||||
|
# Max size of the request queue before it blocks
|
||||||
|
#request_queue_size=100
|
||||||
|
|
||||||
|
# Max time to wait when queueing a request (s)
|
||||||
|
#request_queue_timeout=2
|
||||||
|
|
||||||
|
##
|
||||||
|
# Agent resource settings
|
||||||
|
##
|
||||||
|
|
||||||
|
# Number of worker threads
|
||||||
|
#worker_count=4
|
||||||
|
|
||||||
|
##
|
||||||
|
# Logging settings
|
||||||
|
##
|
||||||
|
|
||||||
|
# Log level for stderr logging (or 'off')
|
||||||
|
stderr_log_level=info
|
||||||
|
|
||||||
|
# Log level for file logging (od 'off')
|
||||||
|
file_log_level=notice
|
||||||
|
|
||||||
|
# Log file
|
||||||
|
#log_file=pgmon.log
|
||||||
|
|
||||||
|
##
|
||||||
|
# DB connection settings
|
||||||
|
#
|
||||||
|
# Each cluster entry is of the form:
|
||||||
|
# name:address:port:dbname:user:password
|
||||||
|
#
|
||||||
|
# Any element other than the name can be left empty to use the defaults
|
||||||
|
##
|
||||||
|
|
||||||
|
#cluster=local:/var/run/postgresql:5432:postgres:zbx_monitor:
|
||||||
|
|
||||||
|
# Default database to connect to when none is specified for a metric
|
||||||
|
#dbname=postgres
|
||||||
|
|
||||||
|
##
|
||||||
|
# Monitoring configuration
|
||||||
|
##
|
||||||
|
|
||||||
|
# Metrics
|
||||||
|
#metrics={}
|
||||||
|
|
||||||
|
include=pgmon-metrics.cfg
|
||||||
10
gentoo/files/pgmon.logrotate
Normal file
10
gentoo/files/pgmon.logrotate
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
/var/log/pgmon/*.log {
|
||||||
|
daily
|
||||||
|
missingok
|
||||||
|
rotate 7
|
||||||
|
compress
|
||||||
|
delaycompress
|
||||||
|
copytruncate
|
||||||
|
notifempty
|
||||||
|
maxsize 1G
|
||||||
|
}
|
||||||
@ -12,7 +12,8 @@ command_user="zabbix:zabbix"
|
|||||||
pidfile="/run/pgmon/${agent_name}.pid"
|
pidfile="/run/pgmon/${agent_name}.pid"
|
||||||
|
|
||||||
start_pre() {
|
start_pre() {
|
||||||
checkpath -d "/run/pgmon"
|
checkpath -d -m 0755 -o "${command_user}" "/run/pgmon"
|
||||||
|
checkpath -d -m 0755 -o "${command_user}" "/var/log/pgmon"
|
||||||
}
|
}
|
||||||
|
|
||||||
reload() {
|
reload() {
|
||||||
|
|||||||
@ -17,9 +17,48 @@ KEYWORDS="amd64"
|
|||||||
EGIT_REPO_URL="https://code2.shh-dot-com.org/pgmon.git"
|
EGIT_REPO_URL="https://code2.shh-dot-com.org/pgmon.git"
|
||||||
#EGIT_COMMIT=""
|
#EGIT_COMMIT=""
|
||||||
|
|
||||||
|
IUSE="+agent agent2"
|
||||||
|
|
||||||
DEPEND="
|
DEPEND="
|
||||||
${PYTHON_DEPS}
|
${PYTHON_DEPS}
|
||||||
dev-python/psycopg:2
|
dev-python/psycopg:2
|
||||||
|
acct-user/zabbix
|
||||||
|
acct-group/zabbix
|
||||||
|
agent? ( net-analyzer/zabbix[agent] )
|
||||||
|
agent2? ( net-analyzer/zabbix[agent2] )
|
||||||
|
app-admin/logrotate
|
||||||
"
|
"
|
||||||
RDEPEND="${DEPEND}"
|
RDEPEND="${DEPEND}"
|
||||||
BDEPEND=""
|
BDEPEND=""
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
default
|
||||||
|
|
||||||
|
# Install init script
|
||||||
|
newinitd files/pgmon.openrc pgmon
|
||||||
|
|
||||||
|
# Install default config
|
||||||
|
diropts -o root -g zabbix -m 0755
|
||||||
|
insinto /etc/pgmon
|
||||||
|
doins "${FILESDIR}/pgmon.cfg"
|
||||||
|
doins "${S}/pgmon-metrics.cfg"
|
||||||
|
|
||||||
|
# Install Zabbix userparams file
|
||||||
|
if use agent; then
|
||||||
|
insinto /etc/zabbix/zabbix_agent.d
|
||||||
|
newins "${S}/pgmon_userparameter.conf" pgmon.conf
|
||||||
|
fperms 0644 /etc/zabbix/zabbix_agent.d/pgmon.conf
|
||||||
|
fowners root:zabbix /etc/zabbix/zabbix_agent.d/pgmon.conf
|
||||||
|
fi
|
||||||
|
|
||||||
|
if use agent2; then
|
||||||
|
insinto /etc/zabbix/zabbix_agent2.d
|
||||||
|
newins "${S}/pgmon_userparameter.conf" pgmon.conf
|
||||||
|
fperms 0644 /etc/zabbix/zabbix_agent2.d/pgmon.conf
|
||||||
|
fowners root:zabbix /etc/zabbix/zabbix_agent2.d/pgmon.conf
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Install logrotate config
|
||||||
|
insinto /etc/logrotate.d
|
||||||
|
newins "${FILESDIR}/pgmon.logrotate" pgmon
|
||||||
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user