Lua plugin: turn the collectd functions into a lib
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sun, 14 Aug 2016 10:07:59 +0000 (12:07 +0200)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Sun, 14 Aug 2016 10:13:20 +0000 (12:13 +0200)
commitc6d13fbae8ca35535bcd9ae857985c78051db872
treedabe33b338691d5ff8f74c4295b65de1eb841b6c
parentf6c4f3e43d5a8a49de8f6a5d9ee8ae362fc7f0b1
Lua plugin: turn the collectd functions into a lib

Now the module shows up in 'package.loaded':

for name, func in pairs(package.loaded['collectd']) do
    print(name, func)
end

returns:
dispatch_values function: 0x7f38b8a472c0
log_debug function: 0x7f38b8a47130
register_write function: 0x7f38b8a47520
log_info function: 0x7f38b8a470d0
register_read function: 0x7f38b8a47360
log_warning function: 0x7f38b8a47070
log_error function: 0x7f38b8a47100
log_notice function: 0x7f38b8a470a0
src/lua.c