• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

build-aux/H10-Apr-2021-16,16312,451

config_test/H10-Apr-2021-12274

gl/H03-May-2022-80,81563,484

lib/H03-May-2022-7,9706,439

m4/H10-Apr-2021-508435

perlmods/H03-May-2022-3,0622,913

pkg/H10-Apr-2021-223197

plugins/H03-May-2022-39,82030,489

plugins-root/H03-May-2022-5,3444,180

plugins-scripts/H03-May-2022-6,6625,160

po/H03-May-2022-20,22115,988

tap/H03-May-2022-2,2371,919

tools/H10-Apr-2021-582393

ABOUT-NLSH A D10-Apr-202178.7 KiB1,1121,065

ACKNOWLEDGEMENTSH A D10-Apr-20211.5 KiB4029

AUTHORSH A D10-Apr-2021409 2624

CODINGH A D10-Apr-20213.7 KiB11773

COPYINGH A D10-Apr-202134.3 KiB675553

ChangeLogH A D10-Apr-202155 21

FAQH A D10-Apr-20211.9 KiB5636

INSTALLH A D10-Apr-202115.4 KiB371288

Makefile.amH A D10-Apr-20212.1 KiB6444

Makefile.inH A D03-May-202264.9 KiB1,9481,843

NEWSH A D10-Apr-202129.7 KiB547508

NP-VERSION-GENH A D10-Apr-20211.1 KiB5441

NPTest.pmH A D10-Apr-202116.2 KiB647329

READMEH A D10-Apr-20213.4 KiB9966

REQUIREMENTSH A D10-Apr-20213.8 KiB11291

SUPPORTH A D10-Apr-20213.2 KiB7758

THANKSH A D10-Apr-20215.8 KiB393391

acinclude.m4H A D10-Apr-20212.3 KiB7866

aclocal.m4H A D10-Apr-202141.2 KiB1,1801,072

config.h.inH A D10-Apr-202174 KiB2,4801,728

config.rpathH A D10-Apr-202117.7 KiB661557

configureH A D03-May-20221.1 MiB44,17835,574

configure.acH A D10-Apr-202165 KiB1,9351,724

mkinstalldirsH A D10-Apr-20213.4 KiB159109

releaseH A D10-Apr-20216 21

test.pl.inH A D10-Apr-2021831 5335

README

1Monitoring Plugins
2==================
3
4* For instructions on installing these plugins for use with your monitoring
5  system, see below.  In addition, generic instructions for the GNU
6  toolchain can be found in the `INSTALL` file.
7
8* For major changes between releases, read the `NEWS` file.
9
10* For information on detailed changes that have been made or plugins
11  that have been added, read the `ChangeLog` file.
12
13* Some plugins require that you have additional programs or
14  libraries installed on your system before they can be used.  Plugins that
15  are dependent on other programs/libraries that are missing are usually not
16  compiled.  Read the `REQUIREMENTS` file for more information.
17
18* Individual plugins are self-documenting.  All plugins that comply with
19  the basic guidelines for development will provide detailed help when
20  invoked with the `-h` or `--help` options.
21
22You can check the latest plugins at:
23
24* <https://www.monitoring-plugins.org/>
25
26Send an email to <help@monitoring-plugins.org> for assistance.  Please
27include the OS type and version that you are using.  Also, run the plugin
28with the `-vvv` option and provide the resulting version information.  Of
29course, there may be additional diagnostic information required as well.
30Use good judgment.
31
32Send an email to <devel@monitoring-plugins.org> for developer discussions.
33
34For patch submissions and bug reports, please use the appropriate resources
35at:
36
37* <https://github.com/monitoring-plugins>
38
39
40Installation Instructions
41-------------------------
42
431.  If you are using the Git tree, you will need m4, gettext, automake, and
44    autoconf.  To start out, run:
45
46    	./tools/setup
47
48    For more detail, see the developer guidelines at
49    <https://www.monitoring-plugins.org/doc/guidelines.html>.
50
512.  Run the configure script to initialize variables and create a Makefile,
52    etc.
53
54    	./configure --prefix=BASEDIRECTORY --with-cgiurl=SOMEURL
55
56    Replace `BASEDIRECTORY` with the path of the directory under which your
57    monitoring system is installed (default is `/usr/local`), and replace
58    `SOMEURL` with the path used to access the monitoring system CGIs with a
59    web browser (default is `/nagios/cgi-bin`).
60
613.  Compile the plugins with the following command:
62
63    	make
64
654.  Install the compiled plugins and plugin scripts with the following
66    command:
67
68    	make install
69
70    The installation procedure will attempt to place the plugins in a
71    `libexec/` subdirectory in the base directory you specified with the
72    `--prefix` argument to the configure script.
73
745.  There are some plugins that require setuid.  If you run make install as
75    a non-root user, they will not be installed.  To install, switch to root
76    and run:
77
78    	make install-root
79
80That's it!  If you have any problems or questions, feel free to send an
81email to <help@monitoring-plugins.org>.
82
83
84License Notice
85--------------
86
87You can redistribute and/or modify this software under the terms of the GNU
88General Public License as published by the Free Software Foundation; either
89version 3 of the License, or (at your option) any later version; with the
90additional exemption that compiling, linking, and/or using OpenSSL is
91allowed.
92
93This software is distributed in the hope that it will be useful, but WITHOUT
94ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
95FITNESS FOR A PARTICULAR PURPOSE.
96
97See the `COPYING` file for the complete text of the GNU General Public
98License, version 3.
99