Add support for InfluxDB authentication

This commit is contained in:
emanuele-f 2018-08-13 14:35:55 +02:00
parent 165329947b
commit d4ea15619f
15 changed files with 237 additions and 169 deletions

View file

@ -2105,11 +2105,6 @@ end
-- GENERIC UTILS
-- ternary
function ternary(cond, T, F)
if cond then return T else return F end
end
-- split
function split(s, delimiter)
result = {};