Dependency pill clicks now tracked in telemetry

n8n's editor now captures which dependency items users click in the dropdown, adding click-level detail to existing open events.
The n8n editor can already log when users open the dependency pill dropdown. What it couldn't show was which specific dependencies users navigated to once inside. A new telemetry event changes that.
Now when a user clicks a dependency item, the system records the source card type, the dependency type selected, and how many dependencies exist in total. This data builds a picture of dependency usage patterns—who's using which integrations, and how often.
The telemetry captures clicks at the point of selection, joining existing data about dropdown opens. For teams analyzing workflow patterns, the difference is meaningful: they can now see not just that a user explored dependencies, but which ones they actually chose.
The change lives in the editor UI's dependency pill component and sends the new event alongside the existing navigation logic.
View Original GitHub Description
Summary
Adds a new telemetry event 'User clicked dependency pill item' that fires when a user clicks on an item in the dependency pill dropdown. Tracks the source card type, dependency type clicked, and total dependency count. Complements the existing 'User opened dependency pill' event to give visibility into which dependencies users actually navigate to.
Related Linear tickets, Github issues, and Community forum posts
<!-- N/A -->Review / Merge checklist
- PR title and summary are descriptive. (conventions)
- Docs updated or follow-up ticket created.
- Tests included.
- PR Labeled with
Backport to Beta,Backport to Stable, orBackport to v1(if the PR is an urgent fix that needs to be backported)