File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,8 @@ export class MixpanelTelemetryProvider implements TelemetryProvider {
174174 subscribe_to_run : options ?. subscribe_to_run || false ,
175175 workflow_type : executionContext . is_template ? 'template' : 'custom' ,
176176 workflow_name : executionContext . workflow_name ?? 'untitled' ,
177- total_node_count : executionContext . total_node_count
177+ total_node_count : executionContext . total_node_count ,
178+ subgraph_count : executionContext . subgraph_count
178179 }
179180
180181 this . trackEvent ( TelemetryEvents . RUN_BUTTON_CLICKED , runButtonProperties )
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ export interface RunButtonProperties {
4343 workflow_type : 'template' | 'custom'
4444 workflow_name : string
4545 total_node_count : number
46+ subgraph_count : number
4647}
4748
4849/**
You can’t perform that action at this time.
0 commit comments