diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-11-23 22:06:28 +0000 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-11-23 22:06:28 +0000 |
commit | 04a8b31d190f2ad4dfa9550d605290a426ce1ff0 (patch) | |
tree | d8746d209070f9d74f0ecc118feeab9c1dac9117 /plugins/check_ntp_peer.c | |
parent | 97131650ea6bf9f16b775743e9931a91ea441887 (diff) | |
download | monitoring-plugins-04a8b31d190f2ad4dfa9550d605290a426ce1ff0.tar.gz |
comments and notes
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/branches/dermoth_ntp_rework@1833 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_ntp_peer.c')
-rw-r--r-- | plugins/check_ntp_peer.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/plugins/check_ntp_peer.c b/plugins/check_ntp_peer.c index 840fe0ac..016a034e 100644 --- a/plugins/check_ntp_peer.c +++ b/plugins/check_ntp_peer.c | |||
@@ -12,9 +12,14 @@ | |||
12 | * | 12 | * |
13 | * This file contains the check_ntp_peer plugin | 13 | * This file contains the check_ntp_peer plugin |
14 | * | 14 | * |
15 | * This plugin to check ntp servers independant of any commandline | 15 | * This plugin checks an NTP server independent of any commandline |
16 | * programs or external libraries. | 16 | * programs or external libraries. |
17 | * | 17 | * |
18 | * Use this plugin to check the health of an NTP server. It supports | ||
19 | * checking the offset with the sync peer, the jitter and stratum. This | ||
20 | * plugin will not check the clock offset between the local host and NTP | ||
21 | * server; please use check_ntp_time for that purpose. | ||
22 | * | ||
18 | * | 23 | * |
19 | * License Information: | 24 | * License Information: |
20 | * | 25 | * |
@@ -592,6 +597,13 @@ void print_help(void){ | |||
592 | 597 | ||
593 | printf("\n"); | 598 | printf("\n"); |
594 | printf("%s\n", _("Notes:")); | 599 | printf("%s\n", _("Notes:")); |
600 | printf(" %s\n", _("This plugin checks an NTP server independent of any commandline")); | ||
601 | printf(" %s\n\n", _("programs or external libraries.")); | ||
602 | printf(" %s\n", _("Use this plugin to check the health of an NTP server. It supports")); | ||
603 | printf(" %s\n", _("checking the offset with the sync peer, the jitter and stratum. This")); | ||
604 | printf(" %s\n", _("plugin will not check the clock offset between the local host and NTP")); | ||
605 | printf(" %s\n\n", _("server; please use check_ntp_time for that purpose.")); | ||
606 | |||
595 | printf(" %s\n", _("See:")); | 607 | printf(" %s\n", _("See:")); |
596 | printf(" %s\n", ("http://nagiosplug.sourceforge.net/developer-guidelines.html#THRESHOLDFORMAT")); | 608 | printf(" %s\n", ("http://nagiosplug.sourceforge.net/developer-guidelines.html#THRESHOLDFORMAT")); |
597 | printf(" %s\n", _("for THRESHOLD format and examples.")); | 609 | printf(" %s\n", _("for THRESHOLD format and examples.")); |