@@ -83,6 +83,35 @@ This telemetry event is sent for each component execution.
8383- ** Success** : Whether the component operated successfully, which helps in quality control.
8484- ** ErrorMessage** : Details of any errors encountered, crucial for debugging and improvement.
8585
86+ ### Component inputs
87+
88+ This telemetry event is sent alongside each component execution.
89+ It is joined to the Component event through the component run ID.
90+
91+ By default, Langflow does not send component input values in telemetry.
92+ Only these field types are tracked:
93+
94+ - Integer and float numbers
95+ - Booleans
96+ - Dropdown selections
97+ - Tab selections
98+
99+ Free-text fields such as prompts, messages, code, and multiline text are never tracked.
100+ Password, file, auth, connection, and MCP configuration fields are never tracked.
101+
102+ - ** ComponentRunId** : Unique identifier for the component run, used to join this event with the Component event.
103+ - ** ComponentId** : Identifier for the component instance.
104+ - ** ComponentName** : Name of the component.
105+ - ** ComponentInputs** : Dictionary of input names and their configured values.
106+ - ** ChunkIndex** : Index of the chunk when a large payload is split to respect size limits.
107+ - ** TotalChunks** : Total number of chunks when a large payload is split.
108+
109+ ### Component index
110+
111+ This telemetry event is sent when Langflow loads the component index at startup.
112+ It reports aggregate metrics such as module and component counts and load time.
113+ It does not include user or flow data.
114+
86115### Exception
87116
88117This telemetry event is sent when an unhandled exception is captured by Langflow's lifecycle or global exception handler.
0 commit comments