summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/NEW_STARTERS2
-rw-r--r--doc/RELEASING.md2
-rw-r--r--doc/developer-guidelines.sgml10
3 files changed, 7 insertions, 7 deletions
diff --git a/doc/NEW_STARTERS b/doc/NEW_STARTERS
index 2c5aac88..4fda35fb 100644
--- a/doc/NEW_STARTERS
+++ b/doc/NEW_STARTERS
@@ -10,7 +10,7 @@ Need to know:
10 10
111. Add member to team mailing list (https://www.monitoring-plugins.org/list/listinfo/team/) 111. Add member to team mailing list (https://www.monitoring-plugins.org/list/listinfo/team/)
12 and to the commits mailing list (https://www.monitoring-plugins.org/list/listinfo/commits/), 12 and to the commits mailing list (https://www.monitoring-plugins.org/list/listinfo/commits/),
13 add sourceforge email address via Privacy Options->Sender filters) 13 add sourceforge email address via Privacy Options->Sender filters
142. Add Sourceforge access: 142. Add Sourceforge access:
15 - Translator: CVS access, Shell access, Release Tech (no) 15 - Translator: CVS access, Shell access, Release Tech (no)
16 - Developer: Project role: Developer, CVS access, Shell access, Release Tech (no), Task Manager (A&T), 16 - Developer: Project role: Developer, CVS access, Shell access, Release Tech (no), Task Manager (A&T),
diff --git a/doc/RELEASING.md b/doc/RELEASING.md
index e1f3bf74..700683e7 100644
--- a/doc/RELEASING.md
+++ b/doc/RELEASING.md
@@ -9,7 +9,7 @@ using the remote name `monitoring-plugins` (rather than `origin`).
9Before you start 9Before you start
10---------------- 10----------------
11 11
12- Check Github Actions status. 12- Check GitHub Actions status.
13- Update local Git repository to the current `master` tip. For a 13- Update local Git repository to the current `master` tip. For a
14 maintenance release (e.g., version 2.4.1), update to the current 14 maintenance release (e.g., version 2.4.1), update to the current
15 `maint-2.4` tip, instead. 15 `maint-2.4` tip, instead.
diff --git a/doc/developer-guidelines.sgml b/doc/developer-guidelines.sgml
index 0afa733b..8288b897 100644
--- a/doc/developer-guidelines.sgml
+++ b/doc/developer-guidelines.sgml
@@ -23,9 +23,9 @@
23 23
24 24
25<preface id="preface"><title>Preface</title> 25<preface id="preface"><title>Preface</title>
26 <para>The purpose of this guidelines is to provide a reference for 26 <para>The purpose of these guidelines is to provide a reference for
27 the plugin developers and encourage the standardization of the 27 the plugin developers and encourage the standardization of the
28 different kind of plugins: C, shell, perl, python, etc.</para> 28 different kinds of plugins: C, shell, perl, python, etc.</para>
29 29
30 <para>Monitoring Plugins Development Guidelines Copyright (C) 2000-2024 30 <para>Monitoring Plugins Development Guidelines Copyright (C) 2000-2024
31 (Monitoring Plugins Team)</para> 31 (Monitoring Plugins Team)</para>
@@ -68,7 +68,7 @@
68 68
69 <para>You should always print something to STDOUT that tells if the 69 <para>You should always print something to STDOUT that tells if the
70 service is working or why it is failing. Try to keep the output short - 70 service is working or why it is failing. Try to keep the output short -
71 probably less that 80 characters. Remember that you ideally would like 71 probably less than 80 characters. Remember that you ideally would like
72 the entire output to appear in a pager message, which will get chopped 72 the entire output to appear in a pager message, which will get chopped
73 off after a certain length.</para> 73 off after a certain length.</para>
74 74
@@ -214,7 +214,7 @@
214 back a numerical value, or metric, which is then compared to the warning and 214 back a numerical value, or metric, which is then compared to the warning and
215 critical thresholds. Use the get_status(double, thresholds *) function to 215 critical thresholds. Use the get_status(double, thresholds *) function to
216 compare the value against the thresholds.</para> 216 compare the value against the thresholds.</para>
217 <para>This is the generalised format for ranges:</para> 217 <para>This is the generalized format for ranges:</para>
218 218
219 <literallayout> 219 <literallayout>
220 [@]start:end 220 [@]start:end
@@ -474,7 +474,7 @@
474 </listitem> 474 </listitem>
475 475
476 <listitem><para>If writing to a file (perhaps recording 476 <listitem><para>If writing to a file (perhaps recording
477 performance data) explicitly close close it. The plugin never 477 performance data) explicitly close it. The plugin never
478 calls <emphasis role="strong">exit</emphasis>; that is caught by 478 calls <emphasis role="strong">exit</emphasis>; that is caught by
479 p1.pl, so output streams are never closed.</para> 479 p1.pl, so output streams are never closed.</para>
480 </listitem> 480 </listitem>