mirror of
https://github.com/collectd/collectd.git
synced 2026-02-09 04:09:15 +08:00
Docs: use "its" vice "it's" where appropriate
This commit is contained in:
committed by
Florian Forster
parent
dda68af662
commit
79a8e6dee4
@@ -56,7 +56,7 @@ exit (0);
|
||||
|
||||
=head1 CONFIGURATION
|
||||
|
||||
This script reads it's configuration from F</etc/exec-munin.conf>. The
|
||||
This script reads its configuration from F</etc/exec-munin.conf>. The
|
||||
configuration is read using C<Config::General> which understands a Apache-like
|
||||
config syntax, so it's very similar to the F<collectd.conf> syntax, too.
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ exit (0);
|
||||
|
||||
=head1 CONFIGURATION
|
||||
|
||||
This script reads it's configuration from F</etc/exec-nagios.conf>. The
|
||||
This script reads its configuration from F</etc/exec-nagios.conf>. The
|
||||
configuration is read using C<Config::General> which understands a Apache-like
|
||||
config syntax, so it's very similar to the F<collectd.conf> syntax, too.
|
||||
|
||||
|
||||
@@ -536,7 +536,7 @@ function rrd_get_color($code, $line = true) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Draw RRD file based on it's structure
|
||||
* Draw RRD file based on its structure
|
||||
* @host
|
||||
* @plugin
|
||||
* @pinst
|
||||
@@ -635,7 +635,7 @@ function collectd_draw_rrd($host, $plugin, $pinst = null, $type, $tinst = null,
|
||||
}
|
||||
|
||||
/**
|
||||
* Draw RRD file based on it's structure
|
||||
* Draw RRD file based on its structure
|
||||
* @timespan
|
||||
* @host
|
||||
* @plugin
|
||||
|
||||
@@ -73,7 +73,7 @@ Each line beginning with a C<#> (hash mark) is ignored.
|
||||
=item B<PUTVAL> I<Identifier> [I<OptionList>] I<Valuelist>
|
||||
|
||||
Submits one or more values (identified by I<Identifier>, see below) to the
|
||||
daemon which will dispatch it to all it's write-plugins.
|
||||
daemon which will dispatch it to all its write-plugins.
|
||||
|
||||
An I<Identifier> is of the form
|
||||
C<I<host>B</>I<plugin>B<->I<instance>B</>I<type>B<->I<instance>> with both
|
||||
|
||||
@@ -107,7 +107,7 @@ consolidations simply ignore NaN values.
|
||||
=head1 RETURN VALUE
|
||||
|
||||
As usual for Nagios plugins, this program writes a short, one line status
|
||||
message to STDOUT and signals success or failure with it's return value. It
|
||||
message to STDOUT and signals success or failure with its return value. It
|
||||
exits with a return value of B<0> for I<success>, B<1> for I<warning> and B<2>
|
||||
for I<critical>. If the values are not available or some other error occurred,
|
||||
it returns B<3> for I<unknown>.
|
||||
|
||||
@@ -40,7 +40,7 @@ Also, all values that match a threshold are considered to be relevant or
|
||||
"interesting". As a consequence collectd will issue a notification if they are
|
||||
not received for B<Timeout> iterations. The B<Timeout> configuration option is
|
||||
explained in section L<collectd.conf(5)/"GLOBAL OPTIONS">. If, for example,
|
||||
B<Timeout> is set to "2" (the default) and some hosts sends it's CPU statistics
|
||||
B<Timeout> is set to "2" (the default) and some hosts sends its CPU statistics
|
||||
to the server every 60 seconds, a notification will be dispatched after about
|
||||
120 seconds. It may take a little longer because the timeout is checked only
|
||||
once each B<Interval> on the server.
|
||||
|
||||
@@ -84,7 +84,7 @@ Example:
|
||||
=item B<PUTVAL> I<Identifier> [I<OptionList>] I<Valuelist>
|
||||
|
||||
Submits one or more values (identified by I<Identifier>, see below) to the
|
||||
daemon which will dispatch it to all it's write-plugins.
|
||||
daemon which will dispatch it to all its write-plugins.
|
||||
|
||||
An I<Identifier> is of the form
|
||||
C<I<host>B</>I<plugin>B<->I<instance>B</>I<type>B<->I<instance>> with both
|
||||
|
||||
@@ -69,7 +69,7 @@ Output usage information and exit.
|
||||
|
||||
=head1 PLUGINS
|
||||
|
||||
As noted above, the real power of collectd lies within it's plugins. A
|
||||
As noted above, the real power of collectd lies within its plugins. A
|
||||
(hopefully complete) list of plugins and short descriptions can be found in the
|
||||
F<README> file that is distributed with the sourcecode. If you're using a
|
||||
package it's a good bet to search somewhere near F</usr/share/doc/collectd>.
|
||||
|
||||
@@ -65,7 +65,7 @@ struct latency_counter_s {
|
||||
* When a value above this range is added, Histogram's range is increased by
|
||||
* increasing the bin width (note that number of bins remains always at 1000).
|
||||
* This operation of increasing bin width is little expensive as each bin need
|
||||
* to be visited to update it's count. To reduce frequent change of bin width,
|
||||
* to be visited to update its count. To reduce frequent change of bin width,
|
||||
* new bin width will be the next nearest power of 2. Example: 2, 4, 8, 16, 32,
|
||||
* 64, 128, 256, 512, 1024, 2048, 5086, ...
|
||||
*
|
||||
|
||||
@@ -59,7 +59,7 @@ static struct MHD_Daemon *httpd;
|
||||
|
||||
static cdtime_t staleness_delta = PROMETHEUS_DEFAULT_STALENESS_DELTA;
|
||||
|
||||
/* Unfortunately, protoc-c doesn't export it's implementation of varint, so we
|
||||
/* Unfortunately, protoc-c doesn't export its implementation of varint, so we
|
||||
* need to implement our own. */
|
||||
static size_t varint(uint8_t buffer[static VARINT_UINT32_BYTES],
|
||||
uint32_t value) {
|
||||
|
||||
Reference in New Issue
Block a user