Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/catalyst/collectd-network
collectd-python plugins useful for monitoring networking things in linux
https://github.com/catalyst/collectd-network
Last synced: 3 days ago
JSON representation
collectd-python plugins useful for monitoring networking things in linux
- Host: GitHub
- URL: https://github.com/catalyst/collectd-network
- Owner: catalyst
- License: gpl-3.0
- Created: 2015-10-07T04:18:07.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-07T04:32:21.000Z (about 9 years ago)
- Last Synced: 2023-04-18T23:29:49.793Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 152 KB
- Stars: 1
- Watchers: 19
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# collectd-network
collectd-python plugins useful for monitoring networking things in linux.
## catalyst_interface.py
Compatible with the standard `interface' plugin but extends the schema of /etc/network/interfaces to include a description property.
<LoadPlugin python>
Globals true
</LoadPlugin><Plugin python>
ModulePath "/path/where/module/installed"
LogTraces true
Interactive false
Import "catalyst_interface"<Module catalyst_interface>
</Module>
</Plugin># if you need to keep the standard interface plugin loaded, something like this
# will at least stop it from also reporting.
<Plugin "interface">
Interface "not-an-interface"
IgnoreSelected false
</Plugin>## catalyst_conntrack
Read both the number of nf_conntrack connections as well as the maximum number permitted. Will report unhelpful figures if nf_conntrack_tcp_loose is enabled (which it is by default).
<LoadPlugin python>
Globals true
</LoadPlugin><Plugin python>
ModulePath "/path/where/module/installed"
LogTraces true
Interactive false
Import "catalyst_conntrack"<Module catalyst_conntrack>
</Module>
</Plugin>## netfilter_acct
Read nfacct metrics. Presently executes the `nfacct' utility, which could be improved upon.
<LoadPlugin python>
Globals true
</LoadPlugin><Plugin python>
ModulePath "/path/where/module/installed"
LogTraces true
Interactive false
Import "netfilter_acct"<Module netfilter_acct>
</Module>
</Plugin>