author | Marc Fournier <marc.fournier@camptocamp.com> | |
Mon, 10 Oct 2016 18:58:19 +0000 (20:58 +0200) | ||
committer | Marc Fournier <marc.fournier@camptocamp.com> | |
Mon, 10 Oct 2016 18:58:19 +0000 (20:58 +0200) |
1 | 2 | |||
---|---|---|---|---|
src/collectd.conf.pod | patch | | diff1 | | diff2 | | blob | history |
src/daemon/common.c | patch | | diff1 | | diff2 | | blob | history |
src/tail_csv.c | patch | | diff1 | | diff2 | | blob | history |
src/write_redis.c | patch | | diff1 | | diff2 | | blob | history |
diff --cc src/collectd.conf.pod
index 090f18eec78d9c0178b1908c41e788cf53fe1669,e476c48f1127533839d4cccbbc19c15ecf16245b..9c97137ce8b9121f0536efb3cef1d335aafac189
+++ b/src/collectd.conf.pod
Specify the plugin instance name that should be used instead of the database
name (which is the default, if this option has not been specified). This
- allows to query multiple databases of the same name on the same host (e.g.
+ allows one to query multiple databases of the same name on the same host (e.g.
when running multiple database server versions in parallel).
+The plugin instance name can also be set from the query result using
+the B<PluginInstanceFrom> option in B<Query> block.
=item B<Host> I<hostname>
statistics of processes matching the specified I<regex> (see L<regex(7)> for
details). The statistics of all matching processes are summed up and
dispatched to the daemon using the specified I<name> as an identifier. This
- allows to "group" several processes together. I<name> must not contain
+ allows one to "group" several processes together. I<name> must not contain
slashes.
+=item B<CollectContextSwitch> I<Boolean>
+
+Collect context switch of the process.
+
=back
=head2 Plugin C<protocols>
diff --cc src/daemon/common.c
Simple merge
diff --cc src/tail_csv.c
index 1bdf8b29de65dc4317b9714613ea337028d06408,919f94821498a2dc3823882211c720fb943b2130..206f1037fba03aef9c9af748b6122c10ce8cdb2e
--- 1/src/tail_csv.c
--- 2/src/tail_csv.c
+++ b/src/tail_csv.c
}
else if (ds->ds_num != 1)
{
- ERROR ("tail_csv plugin: The type \"%s\" has %i data sources. "
+ ERROR ("tail_csv plugin: The type \"%s\" has %zu data sources. "
- "Only types with a single data soure are supported.",
+ "Only types with a single data source are supported.",
ds->type, ds->ds_num);
continue;
}
diff --cc src/write_redis.c
Simple merge