fuel-plugin-lma-collector/deployment_scripts/puppet/modules/lma_collector/files/plugins/filters/influxdb_accumulator_legacy...

58 lines
1.7 KiB
Lua

-- Copyright 2015 Mirantis, Inc.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
require "cjson"
require "string"
require "os"
local last_flush = os.time()
local datapoints = {}
local flush_count = read_config('flush_count') or 100
local flush_interval = read_config('flush_interval') or 5
function flush ()
local now = os.time()
if #datapoints > 0 and (#datapoints > flush_count or now - last_flush > flush_interval) then
inject_payload("json", "influxdb", cjson.encode(datapoints))
datapoints = {}
last_flush = now
end
end
function process_message ()
local ts = read_message("Timestamp") / 1e6 -- InfluxDB defaults to ms
local hostname = read_message("Fields[hostname]") or read_message("Hostname")
local metric_name = read_message("Fields[name]")
local value = read_message("Fields[value]")
if value == nil and metric_name == nil then
return -1
end
local serie_name = string.format('%s.%s', hostname, metric_name)
datapoints[#datapoints+1] = {
name = serie_name,
columns = {"time", "value"},
points = {{ts, value}}
}
flush()
return 0
end
function timer_event(ns)
flush()
end