Difference between revisions of "Plugin:UnixSock"
From collectd Wiki
m (Added DEFAULTSORT magic word.) |
RemiFerrand (talk | contribs) (→Synopsis) |
||
Line 21: | Line 21: | ||
SocketGroup "collectd" | SocketGroup "collectd" | ||
SocketPerms "0770" | SocketPerms "0770" | ||
+ | DeleteSocket true | ||
</Plugin> | </Plugin> | ||
Revision as of 16:08, 17 February 2014
UnixSock plugin | |
---|---|
Type: | other |
Callbacks: | config, init, shutdown |
Status: | supported |
First version: | 4.0 |
Copyright: | 2007–2008 Florian octo Forster |
License: | GPLv2 |
Manpage: | collectd.conf(5) collectd-unixsock(5) |
List of Plugins |
The UnixSock plugin opens a UNIX domain socket and accepts connections. Using this socket one can send commands to the daemon and receive information. The protocol used is documented in the collectd-unixsock(5) manual page and in the Plain text protocol wiki page.
This plugin is a generic plugin, i.e. it cannot work without configuration, because there is no reasonable default behavior. Please read the Plugin unixsock section of the collectd.conf(5) manual page for an in-depth description of the plugin's configuration.
Synopsis
LoadPlugin unixsock # ... <Plugin unixsock> SocketFile "/path/to/socket" SocketGroup "collectd" SocketPerms "0770" DeleteSocket true </Plugin>
Dependencies
- none