Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 518 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 518 Bytes

collectd-clickhouse

clickhouse plugin written in Python

Configure this plugin based on collectd.conf parts.

Example configuration:

<LoadPlugin python>
       Globals true
</LoadPlugin>

TypesDB "/usr/local/lib/collectd/python/clickhouse_types.db"

<Plugin python>
    ModulePath "/usr/local/lib/collectd/python/"
    LogTraces true
    Interactive false
    Import "clickhouse"
    <Module clickhouse>
        URL "http://localhost:8123/"
        User "default"
        Password ""
    </Module>
</Plugin>