Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Instrument create_time from last message in batch #811

Merged
merged 1 commit into from
Mar 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/kafka/consumer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ def each_batch(min_bytes: 1, max_bytes: 10485760, max_wait_time: 1, automaticall
topic: batch.topic,
partition: batch.partition,
last_offset: batch.last_offset,
last_create_time: batch.messages.last.try(:create_time),
offset_lag: batch.offset_lag,
highwater_mark_offset: batch.highwater_mark_offset,
message_count: batch.messages.count,
Expand Down
6 changes: 6 additions & 0 deletions lib/kafka/datadog.rb
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ def process_message(event)
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),
Expand All @@ -176,6 +178,10 @@ def process_batch(event)
end

gauge("consumer.offset", offset, tags: tags)

if time_lag
gauge("consumer.time_lag", time_lag, tags: tags)
end
end

def fetch_batch(event)
Expand Down
1 change: 1 addition & 0 deletions spec/prometheus_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@
topic: 'AAA',
partition: 4,
last_offset: 100,
last_create_time: Time.now,
message_count: 7
}
end
Expand Down