@@ -112,8 +112,8 @@ export class IntegrationService implements Disposable {
112112
113113 if ( this . container . telemetry . enabled ) {
114114 this . container . telemetry . setGlobalAttributes ( {
115- 'cloudIntegrations.connectedCount ' : connectedIntegrations . size ,
116- 'cloudIntegrations.connectedIds ' : join ( connectedIntegrations . values ( ) , ',' ) ,
115+ 'cloudIntegrations.connected.count ' : connectedIntegrations . size ,
116+ 'cloudIntegrations.connected.ids ' : join ( connectedIntegrations . values ( ) , ',' ) ,
117117 } ) ;
118118 }
119119
@@ -168,7 +168,10 @@ export class IntegrationService implements Disposable {
168168 if ( this . container . telemetry . enabled ) {
169169 this . container . telemetry . sendEvent (
170170 'cloudIntegrations/connected' ,
171- { 'integration.ids' : connected ? join ( connected . values ( ) , ',' ) : undefined } ,
171+ {
172+ 'integration.ids' : undefined ,
173+ 'integration.connected.ids' : connected ? join ( connected . values ( ) , ',' ) : undefined ,
174+ } ,
172175 source ,
173176 ) ;
174177 }
@@ -293,7 +296,10 @@ export class IntegrationService implements Disposable {
293296 if ( this . container . telemetry . enabled ) {
294297 this . container . telemetry . sendEvent (
295298 'cloudIntegrations/connected' ,
296- { 'integration.ids' : connected ? join ( connected . values ( ) , ',' ) : undefined } ,
299+ {
300+ 'integration.ids' : integrationIds ?. join ( ',' ) ,
301+ 'integration.connected.ids' : connected ? join ( connected . values ( ) , ',' ) : undefined ,
302+ } ,
297303 source ,
298304 ) ;
299305 }
0 commit comments