SPECS: nagios-plugin-check_mysql_health.spec (NEW), nagios-plugin-check_mys...
arekm
arekm at pld-linux.org
Thu Apr 2 10:44:41 CEST 2009
Author: arekm Date: Thu Apr 2 08:44:41 2009 GMT
Module: SPECS Tag: HEAD
---- Log message:
- new, obsoletes mysql_perf.
---- Files affected:
SPECS:
nagios-plugin-check_mysql_health.spec (NONE -> 1.1) (NEW), nagios-plugin-check_mysql_perf.spec (1.6 -> NONE) (REMOVED)
---- Diffs:
================================================================
Index: SPECS/nagios-plugin-check_mysql_health.spec
diff -u /dev/null SPECS/nagios-plugin-check_mysql_health.spec:1.1
--- /dev/null Thu Apr 2 10:44:41 2009
+++ SPECS/nagios-plugin-check_mysql_health.spec Thu Apr 2 10:44:36 2009
@@ -0,0 +1,156 @@
+# $Revision$, $Date$
+%define plugin check_mysql_health
+Summary: Nagios plugin: monitor various performance-related characteristics of a MySQL DB
+Summary(pl.UTF-8): Wtyczka Nagiosa monitorująca parametry wydajnościowe bazy danych MySQL
+Name: nagios-plugin-%{plugin}
+Version: 2.0.3
+Release: 1
+License: GPL v2+
+Group: Networking
+Source0: http://www.consol.com/fileadmin/opensource/Nagios/%{plugin}-%{version}.tar.gz
+# Source0-md5: 2e2d7e470066a7cd8b6dff48c46ab8eb
+URL: http://www.consol.de/opensource/nagios/check-mysql-health
+BuildRequires: mysql-devel
+BuildRequires: nagios-plugins-devel
+BuildRequires: sed >= 4.0
+Requires: nagios-core
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%define _sysconfdir /etc/nagios/plugins
+%define plugindir %{_prefix}/lib/nagios/plugins
+
+%description
+Nagios plugin which allows you to monitor various performance-related
+characteristics of a MySQL database.
+
+%description -l pl.UTF-8
+Wtyczka Nagiosa pozwalająca na monitorowanie różnych parametrów bazy
+danych MySQL związanych z wydajnością.
+
+%prep
+%setup -q -n %{plugin}-%{version}
+
+# see plugin --help (-m option) for list of these
+cat > nagios.cfg <<'EOF'
+define command {
+ command_name %{plugin}_uptime
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m uptime
+}
+define command {
+ command_name %{plugin}_tmp_disk_tables
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m tmp-disk-tables
+}
+define command {
+ command_name %{plugin}_index_usage
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m index-usage
+}
+define command {
+ command_name %{plugin}_long_running_procs
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m long-running-procs
+}
+define command {
+ command_name %{plugin}_slave_lag
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m slave-lag
+}
+define command {
+ command_name %{plugin}_slave_io_running
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m slave-io-running
+}
+define command {
+ command_name %{plugin}_slave_sql_running
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m slave-sql-running
+}
+define command {
+ command_name %{plugin}_threads_connected
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m threads-connected
+}
+define command {
+ command_name %{plugin}_threadcache_hitrate
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m threadcache-hitrate
+}
+define command {
+ command_name %{plugin}_querycache_hitrate
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m querycache-hitrate
+}
+define command {
+ command_name %{plugin}_keycache_hitrate
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m keycache-hitrate
+}
+define command {
+ command_name %{plugin}_bufferpool_hitrate
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m bufferpool-hitrate
+}
+define command {
+ command_name %{plugin}_tablecache_hitrate
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m tablecache-hitrate
+}
+define command {
+ command_name %{plugin}_table_lock_contention
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m table-lock-contention
+}
+define command {
+ command_name %{plugin}_temp_disk_tables
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m temp-disk-tables
+}
+define command {
+ command_name %{plugin}_connection_time
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m connection-time
+}
+define command {
+ command_name %{plugin}_slow_queries
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m slow-queries
+}
+define command {
+ command_name %{plugin}_qcache_lowmem_prunes
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m qcache-lowmem-prunes
+}
+define command {
+ command_name %{plugin}_bufferpool_wait_free
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m bufferpool-wait-free
+}
+define command {
+ command_name %{plugin}_log_waits
+ command_line %{plugindir}/%{plugin} -H $HOSTADDRESS$ -u $ARG1$ -p $ARG2$ -m log-waits
+}
+EOF
+
+%build
+%{__libtoolize}
+%{__aclocal}
+%{__autoconf}
+%{__automake}
+%configure \
+ --libdir=%{plugindir} \
+ --libexecdir=%{plugindir} \
+ --with-nagios-user=nagios \
+ --with-nagios-group=nagios
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+install -d $RPM_BUILD_ROOT%{_sysconfdir}
+
+%{__make} install \
+ DESTDIR=$RPM_BUILD_ROOT
+
+cp -a nagios.cfg $RPM_BUILD_ROOT%{_sysconfdir}/%{plugin}.cfg
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{plugin}.cfg
+%attr(755,root,root) %{plugindir}/%{plugin}
+
+%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1 2009/04/02 08:44:36 arekm
+- new, obsoletes mysql_perf.
+
+
================================================================
More information about the pld-cvs-commit
mailing list