Difference between sent_bytes and sent_event_bytes in component telemetry #22848
-
Hi all, What is the difference between the Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @mditsworth, this a nuanced topic. Hope the following explanation helps: component_[received/sent]_bytes_total
component_[received/sent]_event_bytes_totalThis represents the estimated JSON size, in bytes, of the events sent by the component. For sinks, the |
Beta Was this translation helpful? Give feedback.
Hi @mditsworth, this a nuanced topic. Hope the following explanation helps:
component_[received/sent]_bytes_total
component_sent_bytes_total
. Transforms emit neither. This represents the number of bytes (not compressed) received or sent by the component. It is not the raw network bytes.component_[received/sent]_event_bytes_total
This represents the estimated JSON size, in bytes, of the events sent by the component. For sinks, the
sent_
value is reported before the sink enriches the event with any service integration-specific data.