We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9e43522 + 056a0fe commit c882aa9Copy full SHA for c882aa9
lib/kafka/datadog.rb
@@ -229,8 +229,12 @@ def produce_message(event)
229
# This gets us the write rate.
230
increment("producer.produce.messages", tags: tags.merge(topic: topic))
231
232
+ # Information about typical/average/95p message size.
233
histogram("producer.produce.message_size", message_size, tags: tags.merge(topic: topic))
234
235
+ # Aggregate message size.
236
+ count("producer.produce.message_size.sum", message_size, tags: tags.merge(topic: topic))
237
+
238
# This gets us the avg/max buffer size per producer.
239
histogram("producer.buffer.size", buffer_size, tags: tags)
240
0 commit comments