-
Notifications
You must be signed in to change notification settings - Fork 337
/
Copy pathdatadog.rb
420 lines (329 loc) · 11.5 KB
/
datadog.rb
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
# frozen_string_literal: true
begin
require "datadog/statsd"
rescue LoadError
$stderr.puts "In order to report Kafka client metrics to Datadog you need to install the `dogstatsd-ruby` gem."
raise
end
require "active_support/subscriber"
module Kafka
# Reports operational metrics to a Datadog agent using the modified Statsd protocol.
#
# require "kafka/datadog"
#
# # Default is "ruby_kafka".
# Kafka::Datadog.namespace = "custom-namespace"
#
# # Default is "127.0.0.1".
# Kafka::Datadog.host = "statsd.something.com"
#
# # Default is 8125.
# Kafka::Datadog.port = 1234
#
# Once the file has been required, no further configuration is needed – all operational
# metrics are automatically emitted.
module Datadog
STATSD_NAMESPACE = "ruby_kafka"
class << self
def statsd
@statsd ||= ::Datadog::Statsd.new(host, port, namespace: namespace, tags: tags, socket_path: socket_path)
end
def statsd=(statsd)
clear
@statsd = statsd
end
def host
@host
end
def host=(host)
@host = host
clear
end
def port
@port
end
def port=(port)
@port = port
clear
end
def socket_path
@socket_path
end
def socket_path=(socket_path)
@socket_path = socket_path
clear
end
def namespace
@namespace ||= STATSD_NAMESPACE
end
def namespace=(namespace)
@namespace = namespace
clear
end
def tags
@tags ||= []
end
def tags=(tags)
@tags = tags
clear
end
private
def clear
@statsd && @statsd.close
@statsd = nil
end
end
class StatsdSubscriber < ActiveSupport::Subscriber
private
%w[increment histogram count timing gauge].each do |type|
define_method(type) do |*args, **kwargs|
emit(type, *args, **kwargs)
end
end
def emit(type, *args, tags: {})
tags = tags.map {|k, v| "#{k}:#{v}" }.to_a
Kafka::Datadog.statsd.send(type, *args, tags: tags)
end
end
class ConnectionSubscriber < StatsdSubscriber
def request(event)
client = event.payload.fetch(:client_id)
api = event.payload.fetch(:api, "unknown")
request_size = event.payload.fetch(:request_size, 0)
response_size = event.payload.fetch(:response_size, 0)
broker = event.payload.fetch(:broker_host)
tags = {
client: client,
api: api,
broker: broker
}
timing("api.latency", event.duration, tags: tags)
increment("api.calls", tags: tags)
histogram("api.request_size", request_size, tags: tags)
histogram("api.response_size", response_size, tags: tags)
if event.payload.key?(:exception)
increment("api.errors", tags: tags)
end
end
attach_to "connection.kafka"
end
class ConsumerSubscriber < StatsdSubscriber
def process_message(event)
offset = event.payload.fetch(:offset)
offset_lag = event.payload.fetch(:offset_lag)
create_time = event.payload.fetch(:create_time)
time_lag = create_time && ((Time.now - create_time) * 1000).to_i
tags = {
client: event.payload.fetch(:client_id),
group_id: event.payload.fetch(:group_id),
topic: event.payload.fetch(:topic),
partition: event.payload.fetch(:partition),
}
if event.payload.key?(:exception)
increment("consumer.process_message.errors", tags: tags)
else
timing("consumer.process_message.latency", event.duration, tags: tags)
increment("consumer.messages", tags: tags)
end
gauge("consumer.offset", offset, tags: tags)
gauge("consumer.lag", offset_lag, tags: tags)
# Not all messages have timestamps.
if time_lag
gauge("consumer.time_lag", time_lag, tags: tags)
end
end
def process_batch(event)
offset = event.payload.fetch(:last_offset)
messages = event.payload.fetch(:message_count)
create_time = event.payload.fetch(:last_create_time)
time_lag = create_time && ((Time.now - create_time) * 1000).to_i
tags = {
client: event.payload.fetch(:client_id),
group_id: event.payload.fetch(:group_id),
topic: event.payload.fetch(:topic),
partition: event.payload.fetch(:partition),
}
if event.payload.key?(:exception)
increment("consumer.process_batch.errors", tags: tags)
else
timing("consumer.process_batch.latency", event.duration, tags: tags)
count("consumer.messages", messages, tags: tags)
end
gauge("consumer.offset", offset, tags: tags)
if time_lag
gauge("consumer.time_lag", time_lag, tags: tags)
end
end
def fetch_batch(event)
lag = event.payload.fetch(:offset_lag)
batch_size = event.payload.fetch(:message_count)
tags = {
client: event.payload.fetch(:client_id),
group_id: event.payload.fetch(:group_id),
topic: event.payload.fetch(:topic),
partition: event.payload.fetch(:partition),
}
histogram("consumer.batch_size", batch_size, tags: tags)
gauge("consumer.lag", lag, tags: tags)
end
def join_group(event)
tags = {
client: event.payload.fetch(:client_id),
group_id: event.payload.fetch(:group_id),
}
timing("consumer.join_group", event.duration, tags: tags)
if event.payload.key?(:exception)
increment("consumer.join_group.errors", tags: tags)
end
end
def sync_group(event)
tags = {
client: event.payload.fetch(:client_id),
group_id: event.payload.fetch(:group_id),
}
timing("consumer.sync_group", event.duration, tags: tags)
if event.payload.key?(:exception)
increment("consumer.sync_group.errors", tags: tags)
end
end
def leave_group(event)
tags = {
client: event.payload.fetch(:client_id),
group_id: event.payload.fetch(:group_id),
}
timing("consumer.leave_group", event.duration, tags: tags)
if event.payload.key?(:exception)
increment("consumer.leave_group.errors", tags: tags)
end
end
def loop(event)
tags = {
client: event.payload.fetch(:client_id),
group_id: event.payload.fetch(:group_id),
}
histogram("consumer.loop.duration", event.duration, tags: tags)
end
def pause_status(event)
tags = {
client: event.payload.fetch(:client_id),
group_id: event.payload.fetch(:group_id),
topic: event.payload.fetch(:topic),
partition: event.payload.fetch(:partition),
}
duration = event.payload.fetch(:duration)
gauge("consumer.pause.duration", duration, tags: tags)
end
attach_to "consumer.kafka"
end
class ProducerSubscriber < StatsdSubscriber
def produce_message(event)
client = event.payload.fetch(:client_id)
topic = event.payload.fetch(:topic)
message_size = event.payload.fetch(:message_size)
buffer_size = event.payload.fetch(:buffer_size)
max_buffer_size = event.payload.fetch(:max_buffer_size)
buffer_fill_ratio = buffer_size.to_f / max_buffer_size.to_f
buffer_fill_percentage = buffer_fill_ratio * 100.0
tags = {
client: client,
topic: topic,
}
# This gets us the write rate.
increment("producer.produce.messages", tags: tags)
# Information about typical/average/95p message size.
histogram("producer.produce.message_size", message_size, tags: tags)
# Aggregate message size.
count("producer.produce.message_size.sum", message_size, tags: tags)
# This gets us the avg/max buffer size per producer.
histogram("producer.buffer.size", buffer_size, tags: tags)
# This gets us the avg/max buffer fill ratio per producer.
histogram("producer.buffer.fill_ratio", buffer_fill_ratio, tags: tags)
histogram("producer.buffer.fill_percentage", buffer_fill_percentage, tags: tags)
end
def buffer_overflow(event)
tags = {
client: event.payload.fetch(:client_id),
topic: event.payload.fetch(:topic),
}
increment("producer.produce.errors", tags: tags)
end
def deliver_messages(event)
client = event.payload.fetch(:client_id)
message_count = event.payload.fetch(:delivered_message_count)
attempts = event.payload.fetch(:attempts)
tags = {
client: client,
}
if event.payload.key?(:exception)
increment("producer.deliver.errors", tags: tags)
end
timing("producer.deliver.latency", event.duration, tags: tags)
# Messages delivered to Kafka:
count("producer.deliver.messages", message_count, tags: tags)
# Number of attempts to deliver messages:
histogram("producer.deliver.attempts", attempts, tags: tags)
end
def ack_message(event)
tags = {
client: event.payload.fetch(:client_id),
topic: event.payload.fetch(:topic),
}
# Number of messages ACK'd for the topic.
increment("producer.ack.messages", tags: tags)
# Histogram of delay between a message being produced and it being ACK'd.
histogram("producer.ack.delay", event.payload.fetch(:delay), tags: tags)
end
def topic_error(event)
tags = {
client: event.payload.fetch(:client_id),
topic: event.payload.fetch(:topic)
}
increment("producer.ack.errors", tags: tags)
end
attach_to "producer.kafka"
end
class AsyncProducerSubscriber < StatsdSubscriber
def enqueue_message(event)
client = event.payload.fetch(:client_id)
topic = event.payload.fetch(:topic)
queue_size = event.payload.fetch(:queue_size)
max_queue_size = event.payload.fetch(:max_queue_size)
queue_fill_ratio = queue_size.to_f / max_queue_size.to_f
tags = {
client: client,
topic: topic,
}
# This gets us the avg/max queue size per producer.
histogram("async_producer.queue.size", queue_size, tags: tags)
# This gets us the avg/max queue fill ratio per producer.
histogram("async_producer.queue.fill_ratio", queue_fill_ratio, tags: tags)
end
def buffer_overflow(event)
tags = {
client: event.payload.fetch(:client_id),
topic: event.payload.fetch(:topic),
}
increment("async_producer.produce.errors", tags: tags)
end
def drop_messages(event)
tags = {
client: event.payload.fetch(:client_id),
}
message_count = event.payload.fetch(:message_count)
count("async_producer.dropped_messages", message_count, tags: tags)
end
attach_to "async_producer.kafka"
end
class FetcherSubscriber < StatsdSubscriber
def loop(event)
queue_size = event.payload.fetch(:queue_size)
tags = {
client: event.payload.fetch(:client_id),
group_id: event.payload.fetch(:group_id),
}
gauge("fetcher.queue_size", queue_size, tags: tags)
end
attach_to "fetcher.kafka"
end
end
end