summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1948228)
raw | patch | inline | side by side (parent: 1948228)
author | Sebastian Harl <sh@tokkee.org> | |
Sat, 21 Feb 2015 16:07:14 +0000 (17:07 +0100) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Sat, 21 Feb 2015 16:07:14 +0000 (17:07 +0100) |
doc/Makefile.am | patch | blob | history | |
doc/sysdbd-store-network.5.txt | [new file with mode: 0644] | patch | blob |
diff --git a/doc/Makefile.am b/doc/Makefile.am
index b795d62e0ae752a003d873264e89723187a750ee..38677442a3fe58ef784aa9f0a5248b271e887d0a 100644 (file)
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
sysdbd-facter.5.txt \
sysdbd-mk-livestatus.5.txt \
sysdbd-puppet-store-configs.5.txt \
+ sysdbd-store-network.5.txt \
sysdbd-syslog.5.txt \
sysdbd-timeseries-rrdtool.5.txt \
sysdb.7.txt \
sysdbd-facter.5 \
sysdbd-mk-livestatus.5 \
sysdbd-puppet-store-configs.5 \
+ sysdbd-store-network.5 \
sysdbd-syslog.5 \
sysdbd-timeseries-rrdtool.5 \
sysdb.7 \
sysdbd-facter.5.html \
sysdbd-mk-livestatus.5.html \
sysdbd-puppet-store-configs.5.html \
+ sysdbd-store-network.5.html \
sysdbd-syslog.5.html \
sysdbd-timeseries-rrdtool.5.html \
sysdb.7.html \
sysdbd-facter.5.xml \
sysdbd-mk-livestatus.5.xml \
sysdbd-puppet-store-configs.5.xml \
+ sysdbd-store-network.5.xml \
sysdbd-syslog.5.xml \
sysdbd-timeseries-rrdtool.5.xml \
sysdb.7.xml \
sysdbd-facter.5 \
sysdbd-mk-livestatus.5 \
sysdbd-puppet-store-configs.5 \
+ sysdbd-store-network.5 \
sysdbd-syslog.5 \
sysdbd-timeseries-rrdtool.5 \
sysdb.7 \
sysdbd-facter.5.html \
sysdbd-mk-livestatus.5.html \
sysdbd-puppet-store-configs.5.html \
+ sysdbd-store-network.5.html \
sysdbd-syslog.5.html \
sysdbd-timeseries-rrdtool.5.html \
sysdb.7.html \
sysdbd-facter.5.xml: sysdbd-facter.5.txt $(MAN_DEPS)
sysdbd-mk-livestatus.5.xml: sysdbd-mk-livestatus.5.txt $(MAN_DEPS)
sysdbd-puppet-store-configs.5.xml: sysdbd-puppet-store-configs.5.txt $(MAN_DEPS)
+sysdbd-store-network.5.xml: sysdbd-store-network.5.txt $(MAN_DEPS)
sysdbd-syslog.5.xml: sysdbd-syslog.5.txt $(MAN_DEPS)
sysdbd-timeseries-rrdtool.5.xml: sysdbd-timeseries-rrdtool.5.txt $(MAN_DEPS)
sysdb.7.xml: sysdb.7.txt sysdb-description.txt $(MAN_DEPS)
sysdbd-facter.5: sysdbd-facter.5.xml
sysdbd-mk-livestatus.5: sysdbd-mk-livestatus.5.xml
sysdbd-puppet-store-configs.5: sysdbd-puppet-store-configs.5.xml
+sysdbd-store-network.5: sysdbd-store-network.5.xml
sysdbd-syslog.5: sysdbd-syslog.5.xml
sysdbd-timeseries-rrdtool.5: sysdbd-timeseries-rrdtool.5.xml
sysdb.7: sysdb.7.xml
sysdbd-facter.5.html: sysdbd-facter.5.txt $(MAN_DEPS)
sysdbd-mk-livestatus.5.html: sysdbd-mk-livestatus.5.txt $(MAN_DEPS)
sysdbd-puppet-store-configs.5.html: sysdbd-puppet-store-configs.5.txt $(MAN_DEPS)
+sysdbd-store-network.5.html: sysdbd-store-network.5.txt $(MAN_DEPS)
sysdbd-syslog.5.html: sysdbd-syslog.5.txt $(MAN_DEPS)
sysdbd-timeseries-rrdtool.5.html: sysdbd-timeseries-rrdtool.5.txt $(MAN_DEPS)
sysdb.7.html: sysdb.7.txt sysdb-auth.txt sysdb-description.txt $(MAN_DEPS)
diff --git a/doc/sysdbd-store-network.5.txt b/doc/sysdbd-store-network.5.txt
--- /dev/null
@@ -0,0 +1,86 @@
+sysdbd-store-network(5)
+=======================
+:doctype: manpage
+
+NAME
+----
+sysdbd-store-network - store::network plugin sending to remote instances
+
+SYNOPSIS
+--------
+ LoadPlugin "store::network"
+
+ <Plugin "store::network">
+ <Server "some.host.name:12345">
+ Username "my.host.name"
+ SSLCertificate "/etc/sysdb/ssl/cert.pem"
+ SSLCertificateKey "/etc/sysdb/ssl/key.pem"
+ SSLCACertificates "/etc/ssl/certs/ca-certificates.crt"
+ </Server>
+ </Plugin>
+
+DESCRIPTION
+-----------
+*store::network* is a plugin which connects to a remote SysDB instance and
+sends all locally collected stored objects to that instance. It uses the
+low-level binary protocol to efficiently transmit the data.
+
+CONFIGURATION
+-------------
+*store::network* accepts the following configuration options:
+
+*Server* '<address>'::
+ A server block specifies the connection settings. Multiple servers may be
+ specified to send all data to multiple instances. The specified
+ '<address>' may be a local path-name of a UNIX domain socket, a hostname,
+ an IPv4 address, or and IPv6 address along with the remote port, separated
+ by a colon (":").
+ +
+ All TCP connections are encrypted with SSL/TLS. See the *SSL*
+ configuration options for details about how to configure this.
+ +
+ All clients need to authenticate against the remote SysDB instance. See
+ the section *AUTHENTICATION* for details.
+ +
+ A server block accepts the following configuration options:
+
+ *Username* '<name>';;
+ The username used for authentication against the remote instance.
+
+ *SSLCertificate* '<filename>';;
+ The SSL certificate file to use for SSL connections and
+ authentication.
+
+ *SSLCertificateKey* '<filename>';;
+ The SSL private key file to use for SSL connections and
+ authentication.
+
+ *SSLCACertificates* '<filename>';;
+ The certificate authority (CA) certificates file for server
+ certificate verification to use for SSL connection.
+
+AUTHENTICATION
+--------------
+
+include::sysdb-auth.txt[]
+
+SEE ALSO
+--------
+manpage:sysdbd[1], manpage:sysdbd.conf[5]
+
+The SysDB homepage: https://sysdb.io/
+
+AUTHOR
+------
+SysDB was written by Sebastian "tokkee" Harl <sh@tokkee.org>.
+
+COPYRIGHT
+---------
+Copyright (C) 2012-2015 Sebastian "tokkee" Harl <sh@tokkee.org>
+
+This is free software under the terms of the BSD license, see the source for
+copying conditions. There is NO WARRANTY; not even for MERCHANTABILITY or
+FITNESS FOR A PARTICULAR PURPOSE.
+
+// vim: set tw=78 sw=4 ts=4 noexpandtab spell spelllang=en_us :
+