summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Weiss <holger@zedat.fu-berlin.de>2014-01-23 00:29:04 (GMT)
committerHolger Weiss <holger@zedat.fu-berlin.de>2014-01-23 00:29:04 (GMT)
commite269dad05c719e1c7389c4e0ffefa0dc7f073fd0 (patch)
treed6919edbd434375400285c2174482b89f88bf9c9
parent2810a4adace3453e83f7c8d1ba9075b2c64c063b (diff)
downloadsite-e269dad05c719e1c7389c4e0ffefa0dc7f073fd0.tar.gz
Rename Nagios Plugin Development Guidelines
We now host the "Monitoring Plugin Development Guidelines".
-rw-r--r--web/input/doc/faq/git.md2
-rw-r--r--web/input/doc/faq/guidelines.md4
-rw-r--r--web/input/doc/faq/private-c-api.md2
-rw-r--r--web/input/doc/index.md4
-rw-r--r--web/input/doc/state-retention.md2
-rw-r--r--web/input/index.md4
6 files changed, 9 insertions, 9 deletions
diff --git a/web/input/doc/faq/git.md b/web/input/doc/faq/git.md
index e9bc27d..81f5263 100644
--- a/web/input/doc/faq/git.md
+++ b/web/input/doc/faq/git.md
@@ -191,7 +191,7 @@ on the [Git web site][git]).
191- Git for Computer Scientists 191- Git for Computer Scientists
192 <http://eagain.net/articles/git-for-computer-scientists/> 192 <http://eagain.net/articles/git-for-computer-scientists/>
193 193
194[guidelines]: doc/guidelines.html "Nagios Plugin Development Guidelines" 194[guidelines]: doc/guidelines.html "Monitoring Plugin Development Guidelines"
195[git]: http://git-scm.com/ "Git" 195[git]: http://git-scm.com/ "Git"
196[scott]: http://scottchacon.com/ "Scott Chacon" 196[scott]: http://scottchacon.com/ "Scott Chacon"
197[book-home]: http://www.apress.com/9781430218333 "Pro Git at Apress" 197[book-home]: http://www.apress.com/9781430218333 "Pro Git at Apress"
diff --git a/web/input/doc/faq/guidelines.md b/web/input/doc/faq/guidelines.md
index acc73f7..9d0a5a0 100644
--- a/web/input/doc/faq/guidelines.md
+++ b/web/input/doc/faq/guidelines.md
@@ -4,9 +4,9 @@ parent: FAQ
4 4
5# How should a plugin be written? 5# How should a plugin be written?
6 6
7The [Nagios Plugin Development Guidelines][guidelines] provide the 7The [Monitoring Plugin Development Guidelines][guidelines] provide the
8specifications for writing a plugin. 8specifications for writing a plugin.
9 9
10[guidelines]: doc/guidelines.html "Nagios Plugin Development Guidelines" 10[guidelines]: doc/guidelines.html "Monitoring Plugin Development Guidelines"
11 11
12<!--% # vim:set filetype=markdown textwidth=78 joinspaces: # %--> 12<!--% # vim:set filetype=markdown textwidth=78 joinspaces: # %-->
diff --git a/web/input/doc/faq/private-c-api.md b/web/input/doc/faq/private-c-api.md
index 700fd20..3e9199d 100644
--- a/web/input/doc/faq/private-c-api.md
+++ b/web/input/doc/faq/private-c-api.md
@@ -110,7 +110,7 @@ file.
110Same as `np_state_write_string()`, but writes binary data. *Currently 110Same as `np_state_write_string()`, but writes binary data. *Currently
111unimplemented.* 111unimplemented.*
112 112
113[guidelines]: doc/guidelines.html "Nagios Plugin Development Guidelines" 113[guidelines]: doc/guidelines.html "Monitoring Plugin Development Guidelines"
114[extra-opts]: doc/extra-opts.html "Extra-Opts" 114[extra-opts]: doc/extra-opts.html "Extra-Opts"
115 115
116<!--% # vim:set filetype=markdown textwidth=78 joinspaces: # %--> 116<!--% # vim:set filetype=markdown textwidth=78 joinspaces: # %-->
diff --git a/web/input/doc/index.md b/web/input/doc/index.md
index ce63262..667abce 100644
--- a/web/input/doc/index.md
+++ b/web/input/doc/index.md
@@ -27,7 +27,7 @@ These documents cover specific topics that go beyond the basics:
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 [Monitoring::Plugin][module] Perl module. 28 [Monitoring::Plugin][module] Perl module.
29 29
30* **[Nagios Plugin Development Guidelines][guidelines]** 30* **[Monitoring Plugin Development Guidelines][guidelines]**
31 Reference documentation for plugin developers. 31 Reference documentation for plugin developers.
32 32
33## Proposals 33## Proposals
@@ -49,7 +49,7 @@ The following ideas are not yet implemented (and might never be):
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 "Monitoring::Plugin Presentation" 50[perl-plugins]: doc/writing-perl-plugins.html "Monitoring::Plugin Presentation"
51[module]: http://search.cpan.org/dist/Monitoring-Plugin/ "Monitoring::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 "Monitoring 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"
55[retention-rfc]: doc/state-retention.html "Proposal for State Retention Routines" 55[retention-rfc]: doc/state-retention.html "Proposal for State Retention Routines"
diff --git a/web/input/doc/state-retention.md b/web/input/doc/state-retention.md
index 174abd1..8251cae 100644
--- a/web/input/doc/state-retention.md
+++ b/web/input/doc/state-retention.md
@@ -121,6 +121,6 @@ Cleanup.
121 for Nagios::Plugin::Differences. 121 for Nagios::Plugin::Differences.
122 122
123[extra-opts]: doc/extra-opts.html "Extra-Opts" 123[extra-opts]: doc/extra-opts.html "Extra-Opts"
124[guidelines]: doc/guidelines.html "Nagios Plugin Development Guidelines" 124[guidelines]: doc/guidelines.html "Monitoring Plugin Development Guidelines"
125 125
126<!--% # vim:set filetype=markdown textwidth=78 joinspaces: # %--> 126<!--% # vim:set filetype=markdown textwidth=78 joinspaces: # %-->
diff --git a/web/input/index.md b/web/input/index.md
index 8a4f665..a1ddd3c 100644
--- a/web/input/index.md
+++ b/web/input/index.md
@@ -22,7 +22,7 @@ Exchange][nagex] or [Monitoring Exchange][monex].
22In addition to the core plugins bundle, we maintain a [Perl module][module] 22In addition to the core plugins bundle, we maintain a [Perl module][module]
23that makes it [easy][perl-plugins] to write your own plugin. We also take 23that makes it [easy][perl-plugins] to write your own plugin. We also take
24care of an SNMP MIB used for traps sent from Nagios. Last but not least, we 24care of an SNMP MIB used for traps sent from Nagios. Last but not least, we
25host the [Nagios Plugin Development Guidelines][guidelines]. 25host the [Monitoring Plugin Development Guidelines][guidelines].
26 26
27Our bundle was previously known as the “official” Nagios Plugins package. The 27Our bundle was previously known as the “official” Nagios Plugins package. The
28[new name][rename] reflects both the success of the plugin interface 28[new name][rename] reflects both the success of the plugin interface
@@ -47,7 +47,7 @@ You can get the latest releases from the [download page][download].
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/Monitoring-Plugin/ "Monitoring::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 "Monitoring Plugin Development Guidelines"
51[perl-plugins]: doc/writing-perl-plugins.html "Monitoring::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"