mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-21 02:00:42 +01:00
CZMQ Output Plugin REQUIREMENTS: * libsodium ( https://github.com/jedisct1/libsodium ) * zeromq v4.x build with libsodium support ( http://zeromq.org/ ) * czmq 3.x ( http://czmq.zeromq.org/ ) ------------------------------------------------------------------------------- module(load="omczmq") action( name="curve_server_socket" type="omczmq" endpoints="tcp://some.server.com:24445" socktype="PUSH" authtype="CURVECLIENT" clientcertpath="/etc/curve.d/example_curve_client_cert" servercertpath="/etc/curve.d/example_curve_server_cert" ) ------------------------------------------------------------------------------- Explanation of Options: name: name of this action type: type of action (omczmq for this plugin) endpoints: comma delimited list of zeromq endpoints (see zeromq documentation) socktype: zeromq socket type (currently supports PUSH and PUB) authtype: CURVECLIENT or CURVESERVER clientcertpath: if CURVECLIENT, this client's cert if CURVESERVER, "*" for all, or a directory of allowed public certs servercertpath: if CURVECLIENT, the servers public cert you wish to connect to if CURVESERVER, this servers cert