1
0
mirror of https://github.com/opinkerfi/nagios-plugins.git synced 2026-02-13 02:20:57 +01:00

Compare commits

..

3 Commits

Author SHA1 Message Date
Tomas Edwardsson
911720e5d4 Automatic commit of package [nagios-okplugin-check_http_multi] release [0.1.1-1]. 2013-06-06 10:22:35 +00:00
Tomas Edwardsson
4e21b502b7 Added packaging and rudimentary documentation 2013-06-06 10:22:09 +00:00
Tomas Edwardsson
0828935d90 Allow -u "" for service macros 2013-06-06 10:11:31 +00:00
4 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
Introduction
============
Check http multi was created to check multiple websites in one plugin. You can check the following:
* Latency per website
* Overall runtime of http requests (serial)
* Number of failed websites
* Percentage of failed websites
How
===
Check Percentage Failed
-----------------------
Here we check http://www.google.com and http://adagios.org
Failure rates of
* 0%-30% are ok
* 30%-60% are warning
* everything above is critical
```
$ check_http_multi -u http://www.google.com -u http://adagios.org/ \
--th metric=failed_percentage,warning=30..60,critical=60..inf
Checked 2 uris, 0 failed | 'http://www.google.com'=0.24s;;;; 'http://adagios.org/'=0.47s;;;; 'failed'=0;;;; 'failed_percentage'=0.0%;30..60;60..inf;; 'runtime'=0.711745977402s;;;;
http://www.google.com fetched in 0.24 seconds
http://adagios.org/ fetched in 0.47 seconds
```
Author
======
Tomas Edwardsson <tommi@tommi.org>
License
=======
GPLv3 or later

View File

@@ -44,6 +44,7 @@ def main():
success = 0
failed = 0
for uri in plugin.options.uri:
if not uri: continue
webstate, status = check_website(uri)
if webstate:
success += 1

View File

@@ -0,0 +1,43 @@
%define debug_package %{nil}
%define plugin check_http_multi
Summary: A Nagios plugin to check multiple websites
Name: nagios-okplugin-%{plugin}
Version: 0.1.1
Release: 1%{?dist}
License: GPLv3+
Group: Applications/System
URL: https://github.com/opinkerfi/misc/tree/master/nagios-plugins/check_%{plugin}
Source0: https://github.com/opinkerfi/misc/tree/master/nagios-plugins/check_%{plugin}/releases/%{name}-%{version}.tar.gz
Requires: nagios-okconfig-nrpe >= 0.0.4
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Packager: Tomas Edwardsson <tommi@tommi.org>
BuildArch: noarch
%description
Checks multiple websites for latency and failures. You can specify how many
of them will fail to return warning or critical state.
%prep
%setup -q
%build
%install
rm -rf %{buildroot}
install -D -p -m 0755 %{plugin} %{buildroot}%{_libdir}/nagios/plugins/%{plugin}
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc README.md
%{_libdir}/nagios/plugins/*
%changelog
* Thu Jun 06 2013 Tomas Edwardsson <tommi@tommi.org> 0.1.1-1
- new package built with tito

View File

@@ -0,0 +1 @@
0.1.1-1 check_http_multi/