diff options
| author | Holger Weiss <holger@zedat.fu-berlin.de> | 2014-01-22 08:54:05 +0100 |
|---|---|---|
| committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2014-01-22 08:54:05 +0100 |
| commit | 7dd4264a11d7628df4c806eadaeca1c4115e1fc8 (patch) | |
| tree | 1e7850ad989f1d9b9c4ca546eb5b75cfffcdff0b /web | |
| parent | 01f275f0537a0f919686bd5b1ad8c46279577788 (diff) | |
| download | site-7dd4264a11d7628df4c806eadaeca1c4115e1fc8.tar.gz | |
s/Nagios::Plugin/Monitoring::Plugin/
The Nagios::Plugin module has been renamed to Monitoring::Plugin.
Diffstat (limited to 'web')
| -rw-r--r-- | web/input/development.md | 2 | ||||
| -rw-r--r-- | web/input/doc/extra-opts.md | 4 | ||||
| -rw-r--r-- | web/input/doc/faq/build-perl-module.md | 4 | ||||
| -rw-r--r-- | web/input/doc/faq/index.md | 4 | ||||
| -rw-r--r-- | web/input/doc/faq/use-perl-module.md | 18 | ||||
| -rw-r--r-- | web/input/doc/index.md | 6 | ||||
| -rw-r--r-- | web/input/download.md | 6 | ||||
| -rw-r--r-- | web/input/index.md | 4 | ||||
| -rw-r--r-- | web/input/news/release-1-4-15.md | 2 | ||||
| -rw-r--r-- | web/input/news/release-1-4-16.md | 2 | ||||
| -rw-r--r-- | web/input/news/ton-voon-resigns.md | 2 |
11 files changed, 27 insertions, 27 deletions
diff --git a/web/input/development.md b/web/input/development.md index 76a52df..17972b9 100644 --- a/web/input/development.md +++ b/web/input/development.md | |||
| @@ -10,7 +10,7 @@ menu: 6 | |||
| 10 | The [Monitoring Plugins Development Team][team] takes care of three projects: | 10 | The [Monitoring Plugins Development Team][team] takes care of three projects: |
| 11 | 11 | ||
| 12 | * Monitoring Plugins — the core bundle of standard plugins. | 12 | * Monitoring Plugins — the core bundle of standard plugins. |
| 13 | * Nagios::Plugin — a module used by plugins written in Perl. | 13 | * Monitoring::Plugin — a module used by plugins written in Perl. |
| 14 | * NagiosMIB — SNMP MIB files for traps sent from [Nagios][nagios]. | 14 | * NagiosMIB — SNMP MIB files for traps sent from [Nagios][nagios]. |
| 15 | 15 | ||
| 16 | These projects are maintained in separate repositories on [GitHub][github]: | 16 | These projects are maintained in separate repositories on [GitHub][github]: |
diff --git a/web/input/doc/extra-opts.md b/web/input/doc/extra-opts.md index 7e68264..1ea4251 100644 --- a/web/input/doc/extra-opts.md +++ b/web/input/doc/extra-opts.md | |||
| @@ -7,7 +7,7 @@ parent: Documentation | |||
| 7 | Starting with the 1.4.12 release, most Nagios Plugins (those written in C) | 7 | Starting with the 1.4.12 release, most Nagios Plugins (those written in C) |
| 8 | support reading options from a configuration file. This needs to be enabled | 8 | support reading options from a configuration file. This needs to be enabled |
| 9 | at compile-time for now (`--enable-extra-opts`) and will be enabled by default | 9 | at compile-time for now (`--enable-extra-opts`) and will be enabled by default |
| 10 | in the future. Perl plugins using the [Nagios::Plugin][module] module have | 10 | in the future. Perl plugins using the [Monitoring::Plugin][module] module have |
| 11 | this support since version 0.16. | 11 | this support since version 0.16. |
| 12 | 12 | ||
| 13 | You can easily know if a plugin supports *Extra-Opts* by checking the `--help` | 13 | You can easily know if a plugin supports *Extra-Opts* by checking the `--help` |
| @@ -69,6 +69,6 @@ The initial use case for this functionality is for hiding passwords, so you do | |||
| 69 | not have to define sensitive credentials in the Nagios configuration and these | 69 | not have to define sensitive credentials in the Nagios configuration and these |
| 70 | options won't appear in the command line. | 70 | options won't appear in the command line. |
| 71 | 71 | ||
| 72 | [module]: http://search.cpan.org/dist/Nagios-Plugin/ "Nagios::Plugin" | 72 | [module]: http://search.cpan.org/dist/Monitoring-Plugin/ "Monitoring::Plugin" |
| 73 | 73 | ||
| 74 | <!--% # vim:set filetype=markdown textwidth=78 joinspaces: # %--> | 74 | <!--% # vim:set filetype=markdown textwidth=78 joinspaces: # %--> |
diff --git a/web/input/doc/faq/build-perl-module.md b/web/input/doc/faq/build-perl-module.md index 8c6f2ac..fe9e85d 100644 --- a/web/input/doc/faq/build-perl-module.md +++ b/web/input/doc/faq/build-perl-module.md | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | title: Building Nagios::Plugin | 1 | title: Building Monitoring::Plugin |
| 2 | parent: FAQ | 2 | parent: FAQ |
| 3 | --- | 3 | --- |
| 4 | 4 | ||
| 5 | # How do I build Nagios::Plugin? | 5 | # How do I build Monitoring::Plugin? |
| 6 | 6 | ||
| 7 | This is currently an optional setting at configure time. You need to run: | 7 | This is currently an optional setting at configure time. You need to run: |
| 8 | 8 | ||
diff --git a/web/input/doc/faq/index.md b/web/input/doc/faq/index.md index 6b01670..e67e7a5 100644 --- a/web/input/doc/faq/index.md +++ b/web/input/doc/faq/index.md | |||
| @@ -20,7 +20,7 @@ Plugins. | |||
| 20 | * [How do I compile the plugins?][compilation] | 20 | * [How do I compile the plugins?][compilation] |
| 21 | * [The configure script appears to hang][configure-hangs] | 21 | * [The configure script appears to hang][configure-hangs] |
| 22 | * [Why doesn't the --ssl option work?][ssl] | 22 | * [Why doesn't the --ssl option work?][ssl] |
| 23 | * [How do I build the Nagios::Plugin module?][build-perl-module] | 23 | * [How do I build the Monitoring::Plugin module?][build-perl-module] |
| 24 | * [Building check\_mysql fails on Solaris][mixing-compilers] | 24 | * [Building check\_mysql fails on Solaris][mixing-compilers] |
| 25 | * [Why use pst3 for check\_procs on Solaris?][ps-on-solaris] | 25 | * [Why use pst3 for check\_procs on Solaris?][ps-on-solaris] |
| 26 | 26 | ||
| @@ -40,7 +40,7 @@ Plugins. | |||
| 40 | * [Can I add extra tests to the C routines?][extra-tests] | 40 | * [Can I add extra tests to the C routines?][extra-tests] |
| 41 | * [How do the NPTest parameters work?][nptest] | 41 | * [How do the NPTest parameters work?][nptest] |
| 42 | * [How do I use and update Gnulib?][gnulib] | 42 | * [How do I use and update Gnulib?][gnulib] |
| 43 | * [How do I use the Nagios::Plugin module?][use-perl-module] | 43 | * [How do I use the Monitoring::Plugin module?][use-perl-module] |
| 44 | * [How do I modify NagiosMIB?][nagiosmib] | 44 | * [How do I modify NagiosMIB?][nagiosmib] |
| 45 | * [Can I reuse Monitoring Plugins code?][reuse] | 45 | * [Can I reuse Monitoring Plugins code?][reuse] |
| 46 | 46 | ||
diff --git a/web/input/doc/faq/use-perl-module.md b/web/input/doc/faq/use-perl-module.md index d624e5f..3ac5674 100644 --- a/web/input/doc/faq/use-perl-module.md +++ b/web/input/doc/faq/use-perl-module.md | |||
| @@ -1,10 +1,10 @@ | |||
| 1 | title: Using Nagios::Plugin | 1 | title: Using Monitoring::Plugin |
| 2 | parent: FAQ | 2 | parent: FAQ |
| 3 | --- | 3 | --- |
| 4 | 4 | ||
| 5 | # How do I use the Nagios::Plugin module? | 5 | # How do I use the Monitoring::Plugin module? |
| 6 | 6 | ||
| 7 | The Nagios::Plugin Perl module can be obtained from two main locations: | 7 | The Monitoring::Plugin Perl module can be obtained from two main locations: |
| 8 | 8 | ||
| 9 | * from the Monitoring Plugins tarball with an | 9 | * from the Monitoring Plugins tarball with an |
| 10 | [extra configure option][configure-module] | 10 | [extra configure option][configure-module] |
| @@ -20,18 +20,18 @@ To write your plugin, you should start it with: | |||
| 20 | 20 | ||
| 21 | use FindBin; | 21 | use FindBin; |
| 22 | use lib "$FindBin::Bin/../perl/lib"; | 22 | use lib "$FindBin::Bin/../perl/lib"; |
| 23 | use Nagios::Plugin; | 23 | use Monitoring::Plugin; |
| 24 | 24 | ||
| 25 | This bit of code tells Perl to look for the Nagios::Plugin module in a | 25 | This bit of code tells Perl to look for the Monitoring::Plugin module in a |
| 26 | directory relative to where the plugin is executed - this is a hard | 26 | directory relative to where the plugin is executed - this is a hard |
| 27 | dependency. If Nagios::Plugin is not found there, Perl's system directories | 27 | dependency. If Monitoring::Plugin is not found there, Perl's system directories |
| 28 | will be searched. | 28 | will be searched. |
| 29 | 29 | ||
| 30 | This approach allows a system administrator to decide whether they want | 30 | This approach allows a system administrator to decide whether they want |
| 31 | Nagios::Plugin installed via system directories or within the `$prefix` area | 31 | Monitoring::Plugin installed via system directories or within the `$prefix` area |
| 32 | of the plugins. | 32 | of the plugins. |
| 33 | 33 | ||
| 34 | [configure-module]: doc/faq/build-perl-module.html "configure with Nagios::Plugin" | 34 | [configure-module]: doc/faq/build-perl-module.html "configure with Monitoring::Plugin" |
| 35 | [cpan-module]: http://search.cpan.org/dist/Nagios-Plugin/ "Nagios::Plugin on CPAN" | 35 | [cpan-module]: http://search.cpan.org/dist/Monitoring-Plugin/ "Monitoring::Plugin on CPAN" |
| 36 | 36 | ||
| 37 | <!--% # vim:set filetype=markdown textwidth=78 joinspaces: # %--> | 37 | <!--% # vim:set filetype=markdown textwidth=78 joinspaces: # %--> |
diff --git a/web/input/doc/index.md b/web/input/doc/index.md index 907b2f8..ce63262 100644 --- a/web/input/doc/index.md +++ b/web/input/doc/index.md | |||
| @@ -25,7 +25,7 @@ These documents cover specific topics that go beyond the basics: | |||
| 25 | 25 | ||
| 26 | * **[Writing Perl Plugins][perl-plugins]** | 26 | * **[Writing Perl Plugins][perl-plugins]** |
| 27 | This is a video that shows how to write your own check using the | 27 | This is a video that shows how to write your own check using the |
| 28 | [Nagios::Plugin][module] Perl module. | 28 | [Monitoring::Plugin][module] Perl module. |
| 29 | 29 | ||
| 30 | * **[Nagios Plugin Development Guidelines][guidelines]** | 30 | * **[Nagios Plugin Development Guidelines][guidelines]** |
| 31 | Reference documentation for plugin developers. | 31 | Reference documentation for plugin developers. |
| @@ -47,8 +47,8 @@ The following ideas are not yet implemented (and might never be): | |||
| 47 | [man]: doc/man/index.html "Manual Pages" | 47 | [man]: doc/man/index.html "Manual Pages" |
| 48 | [faq]: doc/faq/index.html "Frequently Asked Questions" | 48 | [faq]: doc/faq/index.html "Frequently Asked Questions" |
| 49 | [extra-opts]: doc/extra-opts.html "Extra-Opts" | 49 | [extra-opts]: doc/extra-opts.html "Extra-Opts" |
| 50 | [perl-plugins]: doc/writing-perl-plugins.html "Nagios::Plugin Presentation" | 50 | [perl-plugins]: doc/writing-perl-plugins.html "Monitoring::Plugin Presentation" |
| 51 | [module]: http://search.cpan.org/dist/Nagios-Plugin/ "Nagios::Plugin" | 51 | [module]: http://search.cpan.org/dist/Monitoring-Plugin/ "Monitoring::Plugin" |
| 52 | [guidelines]: doc/guidelines.html "Nagios Plugin Development Guidelines" | 52 | [guidelines]: doc/guidelines.html "Nagios Plugin Development Guidelines" |
| 53 | [new-threshold]: doc/new-threshold-syntax.html "Proposal for New Threshold Syntax" | 53 | [new-threshold]: doc/new-threshold-syntax.html "Proposal for New Threshold Syntax" |
| 54 | [check-many]: doc/check-many.html "Proposal for Check Aggregation Plugin" | 54 | [check-many]: doc/check-many.html "Proposal for Check Aggregation Plugin" |
diff --git a/web/input/download.md b/web/input/download.md index 8881f48..f4341af 100644 --- a/web/input/download.md +++ b/web/input/download.md | |||
| @@ -31,11 +31,11 @@ repository][repository] whenever that branch changes. Snapshots built from | |||
| 31 | other development branches are also available in the [snapshot | 31 | other development branches are also available in the [snapshot |
| 32 | directory][snapshot] of the [download area][download]. | 32 | directory][snapshot] of the [download area][download]. |
| 33 | 33 | ||
| 34 | ## Nagios::Plugin | 34 | ## Monitoring::Plugin |
| 35 | 35 | ||
| 36 | The Nagios::Plugin module is available from [CPAN][cpan]: | 36 | The Monitoring::Plugin module is available from [CPAN][cpan]: |
| 37 | 37 | ||
| 38 | * <http://search.cpan.org/dist/Nagios-Plugin/> | 38 | * <http://search.cpan.org/dist/Monitoring-Plugin/> |
| 39 | 39 | ||
| 40 | ## NagiosMIB | 40 | ## NagiosMIB |
| 41 | 41 | ||
diff --git a/web/input/index.md b/web/input/index.md index 78a4f5e..3c8bf70 100644 --- a/web/input/index.md +++ b/web/input/index.md | |||
| @@ -46,9 +46,9 @@ You can get the latest releases from the [download page][download]. | |||
| 46 | [http]: doc/man/check_http.html "check_http" | 46 | [http]: doc/man/check_http.html "check_http" |
| 47 | [nagex]: http://exchange.nagios.org/directory/Plugins "Plugins on Nagios Exchange" | 47 | [nagex]: http://exchange.nagios.org/directory/Plugins "Plugins on Nagios Exchange" |
| 48 | [monex]: https://www.monitoringexchange.org/inventory/Check-Plugins "Plugins on Monitoring Exchange" | 48 | [monex]: https://www.monitoringexchange.org/inventory/Check-Plugins "Plugins on Monitoring Exchange" |
| 49 | [module]: http://search.cpan.org/dist/Nagios-Plugin/ "Nagios::Plugin Module" | 49 | [module]: http://search.cpan.org/dist/Monitoring-Plugin/ "Monitoring::Plugin Module" |
| 50 | [guidelines]: doc/guidelines.html "Nagios Plugin Development Guidelines" | 50 | [guidelines]: doc/guidelines.html "Nagios Plugin Development Guidelines" |
| 51 | [perl-plugins]: doc/writing-perl-plugins.html "Nagios::Plugin Presentation" | 51 | [perl-plugins]: doc/writing-perl-plugins.html "Monitoring::Plugin Presentation" |
| 52 | [rename]: news/new-project-name.html "New Project Name" | 52 | [rename]: news/new-project-name.html "New Project Name" |
| 53 | [history]: http://www.nagios.org/about/history "Nagios (Plugins) History" | 53 | [history]: http://www.nagios.org/about/history "Nagios (Plugins) History" |
| 54 | [folks]: http://www.nagios.org/about/team "Nagios Team" | 54 | [folks]: http://www.nagios.org/about/team "Nagios Team" |
diff --git a/web/input/news/release-1-4-15.md b/web/input/news/release-1-4-15.md index e0af748..d4ea270 100644 --- a/web/input/news/release-1-4-15.md +++ b/web/input/news/release-1-4-15.md | |||
| @@ -20,7 +20,7 @@ You can get the tarball from: | |||
| 20 | * `check_snmp` `-l` label option now also changes the perfdata label. See [Warnings](#Warnings) | 20 | * `check_snmp` `-l` label option now also changes the perfdata label. See [Warnings](#Warnings) |
| 21 | * `check_snmp` has an `--invert-search` option which reverses status of the string and regexp searches | 21 | * `check_snmp` has an `--invert-search` option which reverses status of the string and regexp searches |
| 22 | * `check_http` now displays the missing search string and the URL in the output when failed | 22 | * `check_http` now displays the missing search string and the URL in the output when failed |
| 23 | * Updated Nagios::Plugin perl module | 23 | * Updated Monitoring::Plugin perl module |
| 24 | * Updated gnulib to June 2010 | 24 | * Updated gnulib to June 2010 |
| 25 | 25 | ||
| 26 | ## Fixes | 26 | ## Fixes |
diff --git a/web/input/news/release-1-4-16.md b/web/input/news/release-1-4-16.md index 19dac30..2e4ad89 100644 --- a/web/input/news/release-1-4-16.md +++ b/web/input/news/release-1-4-16.md | |||
| @@ -25,7 +25,7 @@ You can get the tarball from: | |||
| 25 | * utils.sh now provides a `check_range` function | 25 | * utils.sh now provides a `check_range` function |
| 26 | * Improved the performance of `check_users` | 26 | * Improved the performance of `check_users` |
| 27 | * Add perfdata to `check_disk_smb` | 27 | * Add perfdata to `check_disk_smb` |
| 28 | * Updated Nagios::Plugin perl module | 28 | * Updated Monitoring::Plugin perl module |
| 29 | * Add warning threshold to certificate expiration checks of `check_tcp`/`http`/`smtp` | 29 | * Add warning threshold to certificate expiration checks of `check_tcp`/`http`/`smtp` |
| 30 | * Add `--perf-oids` option for `check_snmp` | 30 | * Add `--perf-oids` option for `check_snmp` |
| 31 | 31 | ||
diff --git a/web/input/news/ton-voon-resigns.md b/web/input/news/ton-voon-resigns.md index 7130c55..7bd8413 100644 --- a/web/input/news/ton-voon-resigns.md +++ b/web/input/news/ton-voon-resigns.md | |||
| @@ -9,7 +9,7 @@ Nagios Plugins.<end-of-teaser> | |||
| 9 | It's almost 7 years to the day since I started as team leader and I've been | 9 | It's almost 7 years to the day since I started as team leader and I've been |
| 10 | honoured to have had a great team of people that have helped with coding and | 10 | honoured to have had a great team of people that have helped with coding and |
| 11 | translations and responding to the mailing lists. I'm particularly proud of | 11 | translations and responding to the mailing lists. I'm particularly proud of |
| 12 | the Nagios::Plugin perl module, originally created by Gavin Carr, and some of | 12 | the Monitoring::Plugin perl module, originally created by Gavin Carr, and some of |
| 13 | the fantastic tests added into the plugins code, started by Nathan Vonnahme. | 13 | the fantastic tests added into the plugins code, started by Nathan Vonnahme. |
| 14 | Also Benoit Mortier did a great job on setting up the translations framework. | 14 | Also Benoit Mortier did a great job on setting up the translations framework. |
| 15 | I also recall, when I first joined the team 9 years ago, racing with Matthew | 15 | I also recall, when I first joined the team 9 years ago, racing with Matthew |
