-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathinit.lua
166 lines (147 loc) · 6.12 KB
/
init.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
-- Copyright 2015 BMC Software, 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.
local framework = require('framework')
local Plugin = framework.Plugin
local WebRequestDataSource = framework.WebRequestDataSource
local json = require('_json')
local map = framework.functional.map
local clone = framework.table.clone
local hasAny = framework.table.hasAny
local notEmpty = framework.string.notEmpty
local round = framework.util.round
local ipack = framework.util.ipack
local mean = framework.util.mean
local sum = framework.util.sum
local ratio = framework.util.ratio
local toSet = framework.table.toSet
local params = framework.params
local options = {}
options.host = notEmpty(params.host, '127.0.0.1')
options.port = notEmpty(params.port, '2375')
options.path = '/v1.19/containers/json'
-- Adding options to make the socket wait for the entire response.
options.wait_for_end = true
-- Done.
local function getName(fullName)
return string.sub(fullName, 2, -1)
end
local function containerTuple(c)
return { id = c.Id, name = getName(c.Names[1]) }
end
local function getContainers(parsed)
return map(containerTuple, parsed)
end
local pending_requests = {}
local function createDataSource(context, container)
local opts = clone(options)
opts.meta = container.name
opts.path = ('/v1.19/containers/%s/stats?stream=false'):format(container.name)
local data_source = WebRequestDataSource:new(opts)
data_source:propagate('info', context)
data_source:propagate('error', context)
pending_requests[container.name] = true
return data_source
end
local ds = WebRequestDataSource:new(options)
ds:chain(function (context, callback, data)
local parsed = json:decode(data)
if #parsed == 0 then
context:emit('info', 'There aren\'t any containers running.')
end
local data_sources = {}
local containers_filter = toSet(params.containers)
local containers = getContainers(parsed)
for _, c in ipairs(containers) do
if not containers_filter or containers_filter[c.name] then
table.insert(data_sources, createDataSource(context, c))
end
end
return data_sources
end)
local function resetStats()
local stats = {}
stats.memory = {}
stats.cpu_usage = {}
return stats
end
local function calculateCpuUsage(pre, cur)
local cpu_percent = 0
local delta_system_cpu_usage = cur.system_cpu_usage - pre.system_cpu_usage
local delta_cpu_usage = cur.cpu_usage.total_usage - pre.cpu_usage.total_usage
if (delta_system_cpu_usage > 0 and delta_cpu_usage > 0) then
cpu_percent = (delta_cpu_usage / delta_system_cpu_usage) * #cur.cpu_usage.percpu_usage
end
return cpu_percent
end
local function calculateBlockIO(stats)
local read = 0
local write = 0
for _, io in ipairs(stats.io_service_bytes_recursive) do
if (io.op:lower() == 'read') then
read = read + io.value
elseif (io.op:lower() == 'write') then
write = write + io.value
end
end
return read, write
end
local stats = resetStats()
local plugin = Plugin:new(params, ds)
function plugin:onParseValues(data, extra)
local parsed = json:decode(data)
local metrics = {}
local metric = function (...)
ipack(metrics, ...)
end
-- Output metrics for each container
pending_requests[extra.info] = nil
local source = self.source .. '.' .. extra.info
local total_cpu_usage = calculateCpuUsage(parsed.precpu_stats, parsed.cpu_stats)
local memory_limit = parsed.memory_stats.limit
local blk_reads, blk_writes = calculateBlockIO(parsed.blkio_stats)
metric('DOCKER_BLOCK_IO_READ_BYTES', blk_reads, nil, source)
metric('DOCKER_BLOCK_IO_WRITE_BYTES', blk_writes, nil, source)
metric('DOCKER_TOTAL_CPU_USAGE', total_cpu_usage, nil, source)
metric('DOCKER_MEMORY_USAGE_BYTES', parsed.memory_stats.usage, nil, source)
metric('DOCKER_MEMORY_LIMIT_BYTES', memory_limit, nil, source)
metric('DOCKER_MEMORY_USAGE_PERCENT', round(ratio(parsed.memory_stats.usage, memory_limit), 4), nil, source)
metric('DOCKER_NETWORK_RX_BYTES', round(parsed.network.rx_bytes, 2), nil, source)
metric('DOCKER_NETWORK_TX_BYTES', round(parsed.network.tx_bytes, 2), nil, source)
metric('DOCKER_NETWORK_RX_PACKETS', round(parsed.network.rx_packets, 2), nil, source)
metric('DOCKER_NETWORK_TX_PACKETS', round(parsed.network.tx_packets, 2), nil, source)
metric('DOCKER_NETWORK_RX_ERRORS', parsed.network.rx_errors, nil, source)
metric('DOCKER_NETWORK_TX_ERRORS', parsed.network.tx_errors, nil, source)
stats.total_memory_usage = (stats.total_memory_usage or 0) + parsed.memory_stats.usage
stats.total_cpu_usage = (stats.total_cpu_usage or 0) + total_cpu_usage
stats.total_rx_bytes = (stats.total_rx_bytes or 0) + parsed.network.rx_bytes
stats.total_tx_bytes = (stats.total_tx_bytes or 0) + parsed.network.tx_bytes
stats.total_rx_packets = (stats.total_rx_packets or 0) + parsed.network.rx_packets
stats.total_tx_packets = (stats.total_tx_packets or 0) + parsed.network.tx_packets
stats.total_rx_errors = (stats.total_rx_errors or 0) + parsed.network.rx_errors
stats.total_tx_errors = (stats.total_tx_errors or 0) + parsed.network.tx_errors
-- Output aggregated metrics from all containers
if not hasAny(pending_requests) then
metric('DOCKER_TOTAL_CPU_USAGE', stats.total_cpu_usage)
metric('DOCKER_MEMORY_USAGE_BYTES', stats.total_memory_usage)
metric('DOCKER_NETWORK_RX_BYTES', stats.total_rx_bytes)
metric('DOCKER_NETWORK_TX_BYTES', stats.total_tx_bytes)
metric('DOCKER_NETWORK_RX_PACKETS', stats.total_rx_packets)
metric('DOCKER_NETWORK_TX_PACKETS', stats.total_tx_packets)
metric('DOCKER_NETWORK_RX_ERRORS', stats.total_rx_errors)
metric('DOCKER_NETWORK_TX_ERRORS', stats.total_tx_errors)
stats = resetStats()
end
return metrics
end
plugin:run()