Skip to content

Commit 3531f6e

Browse files
committed
- initial publish version
1 parent 7706819 commit 3531f6e

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

README.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,11 @@ collectd.d/sqlalchemy.conf file, assuming a system-installed sqlalchemy-collectd
208208
Import "sqlalchemy_collectd.server.plugin"
209209

210210
<Module "sqlalchemy_collectd.server.plugin">
211+
# ipv4 only for the moment
211212
listen "0.0.0.0" 25827
213+
214+
# set to "debug" to show messages received
215+
loglevel "info"
212216
</Module>
213217
</Plugin>
214218

@@ -240,6 +244,13 @@ For further information about the Python plugin system see
240244
The collectd server is typically restarted for the configurational change
241245
to take effect.
242246

247+
TODO
248+
^^^^
249+
250+
* ipv6 support
251+
252+
* security layer (e.g. network packet signing / encryption)
253+
243254
Stats
244255
=====
245256

collectdconsole.conf

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,7 @@ LoadPlugin python
3030
<Module "sqlalchemy_collectd.server.plugin">
3131
listen "localhost" 25827
3232

33-
# the plugin sends logging into the collectd
34-
# notify system.
35-
# "info" shows essentially a startup message; set to "debug" to
36-
# show messages received
33+
# set to "debug" to show messages received
3734
loglevel "info"
3835
</Module>
3936
</Plugin>

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
keywords='SQLAlchemy collectd',
3434
author='Mike Bayer',
3535
author_email='[email protected]',
36-
url='http://github.org/zzzeek/sqlalchemy-collectd',
36+
url='http://github.org/sqlalchemy/sqlalchemy-collectd',
3737
license='MIT',
3838
packages=find_packages(".", exclude=["*.tests"]),
3939
include_package_data=True,

0 commit comments

Comments
 (0)