Vector Internal Metrics #22894
-
I was just looking at some differences in metrics dashboards being reported and wanted to know the difference between these types Example Dashboards Queries.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The answer is similar to this question: #22848 (comment) component_received_bytes_total
component_received_event_bytes_totalThis represents the estimated JSON size, in bytes, of the events received by the component. For sources, the value is (assuming the component is properly adhering to the spec) reported after the bytes received have been decoded into a vector Event structure, before enriching the event (for example with Vector metadata). For transforms, the values are reported by the Vector topology when the input stream receives Events. |
Beta Was this translation helpful? Give feedback.
The answer is similar to this question: #22848 (comment)
component_received_bytes_total
component_sent_bytes_total
. This represents the number of bytes (not compressed) received by the component. It is not the raw network bytes.component_received_event_bytes_total
This represents the estimated JSON size, in bytes, of the events received by the component.
For sources, the value is (assuming the component is properly adhering to the spec) reported after the bytes received have been decoded into a vector Event structure, before enriching the event (for example with Vector metadata).
For transforms, the values are reported by the Vector topology when the input stream rece…