aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/nagios-check_postgres/Makefile
blob: 617b05b11129374b1bf65b4d12a1f006d129509f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Created by: Matthew Seaman <matthew@FreeBSD.org>
# $FreeBSD$

PORTNAME=	check_postgres
PORTVERSION=	2.25.0
CATEGORIES=	net-mgmt databases perl5
MASTER_SITES=	http://bucardo.org/downloads/
PKGNAMEPREFIX=	nagios-

MAINTAINER=	matthew@FreeBSD.org
COMMENT=	Monitor various attributes of your PostgreSQL database

LICENSE=	BSD2CLAUSE

NO_ARCH=	yes

USES=		perl5
USE_PERL5=	configure
USES+=		pgsql

# This script is primarily used for monitoring via Nagios, but it also
# has output styles compatible with cacti or mrtg.  The options
# control whether symlinks get made to locations where those
# applications expect to find their plugin scripts.

OPTIONS_DEFINE=		NAGIOS CACTI
OPTIONS_DEFAULT=	NAGIOS
OPTIONS_SUB=		yes

NAGIOS_DESC=	Create symlinks in Nagios plugins dir
NAGIOS_PLUGINS=	${PREFIX}/libexec/nagios
NAGIOS_LINKS=	archive_ready		\
		autovac_freeze		\
		backends		\
		bloat			\
		checkpoint		\
		cluster_id		\
		commitratio		\
		connection		\
		custom_query		\
		database_size		\
		disabled_triggers	\
		disk_space		\
		fsm_pages		\
		fsm_relations		\
		hitratio		\
		hot_standby_delay	\
		index_size		\
		last_analyze		\
		last_autoanalyze	\
		last_autovacuum		\
		last_vacuum		\
		listener		\
		locks			\
		logfile			\
		new_version_bc		\
		new_version_box		\
		new_version_cp		\
		new_version_pg		\
		new_version_tnm		\
		pgagent_jobs		\
		pgb_pool_cl_active	\
		pgb_pool_cl_waiting	\
		pgb_pool_maxwait	\
		pgb_pool_sv_active	\
		pgb_pool_sv_idle	\
		pgb_pool_sv_login	\
		pgb_pool_sv_tested	\
		pgb_pool_sv_used	\
		pgbouncer_backends	\
		pgbouncer_checksum	\
		prepared_txns		\
		query_runtime		\
		query_time		\
		relation_size		\
		replicate_row		\
		same_schema		\
		sequence		\
		settings_checksum	\
		slony_status		\
		table_size		\
		timesync		\
		txn_idle		\
		txn_time		\
		txn_wraparound		\
		version			\
		wal_files

CACTI_DESC=	Create symlinks in Cacti scripts dir
CACTI_SCRIPTS=	${PREFIX}/share/cacti/scripts
CACTI_LINKS=	dbstats

.include <bsd.port.options.mk>

post-patch:
	${REINPLACE_CMD} -e s,%%LOCALBASE%%,${LOCALBASE}, ${WRKSRC}/check_postgres.pl

post-install-NAGIOS-on:
	@${MKDIR} ${STAGEDIR}${NAGIOS_PLUGINS}
.for l in ${NAGIOS_LINKS}
	${LN} -s ../../bin/check_postgres.pl \
		${STAGEDIR}${NAGIOS_PLUGINS}/check_postgres_${l}
.endfor

post-install-CACTI-on:
	@${MKDIR} ${STAGEDIR}${CACTI_SCRIPTS}
.for l in ${CACTI_LINKS}
	${LN} -s ../../../bin/check_postgres.pl \
		${STAGEDIR}${CACTI_SCRIPTS}/check_postgres_${l}
.endfor

regression-test: build
	@cd ${WRKSRC} && ${MAKE} test

.include <bsd.port.mk>