[Tarantool-patches] [PATCH 1/2] feedback_daemon: add operation statistics reporting
Vladislav Shpilevoy
v.shpilevoy at tarantool.org
Thu Dec 24 20:54:13 MSK 2020
Hi! Thanks for the patch!
Consider this diff which I pushed as a separate commit
in your branch:
====================
diff --git a/src/box/lua/feedback_daemon.lua b/src/box/lua/feedback_daemon.lua
index 1aac32bb3..07f114aea 100644
--- a/src/box/lua/feedback_daemon.lua
+++ b/src/box/lua/feedback_daemon.lua
@@ -285,7 +285,7 @@ local function fill_in_options(feedback)
end
local function fill_in_stats(feedback)
- local stats = {box={}, net={}}
+ local stats = {box = {}, net = {}}
local box_stat = box.stat()
local net_stat = box.stat.net()
@@ -300,11 +300,12 @@ local function fill_in_stats(feedback)
end
-- Send box.stat.net().*.total and box.stat.net().*.current.
for val, tbl in pairs(net_stat) do
- if type(tbl) == 'table' and (tbl.total ~= nil or tbl.current ~= nil) then
- stats.net[val] = {
- total = tbl.total,
- current = tbl.current
- }
+ if type(tbl) == 'table' and
+ (tbl.total ~= nil or tbl.current ~= nil) then
+ stats.net[val] = {
+ total = tbl.total,
+ current = tbl.current
+ }
end
end
feedback.stats = stats
More information about the Tarantool-patches
mailing list