You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -743,12 +743,16 @@ end
743
743
*`offset` is the message's offset within the topic partition.
744
744
*`offset_lag` is the number of messages within the topic partition that have not yet been consumed.
745
745
746
+
*`start_process_message.consumer.kafka` is sent before `process_message.consumer.kafka`, and contains the same payload. It is delivered _before_ the message is processed, rather than _after_.
747
+
746
748
*`process_batch.consumer.kafka` is sent whenever a message batch is processed by a consumer. It includes the following payload:
747
749
*`message_count` is the number of messages in the batch.
748
750
*`topic` is the topic that the message batch was consumed from.
749
751
*`partition` is the topic partition that the message batch was consumed from.
750
752
*`highwater_mark_offset` is the message batch's highest offset within the topic partition.
751
-
*`offset_lag` is the number of messages within the topic partition that have not yet been consumed.
753
+
*`offset_lag` is the number of messages within the topic partition that have not yet been consumed.
754
+
755
+
*`start_process_batch.consumer.kafka` is sent before `process_batch.consumer.kafka`, and contains the same payload. It is delivered _before_ the batch is processed, rather than _after_.
752
756
753
757
*`join_group.consumer.kafka` is sent whenever a consumer joins a consumer group. It includes the following payload:
0 commit comments