@@ -38,15 +38,15 @@ class GettingStartedOnStartup : StartupActivity {
38
38
GettingStartedPanel .openPanel(project, firstInstance = true , connectionInitiatedFromExplorer = false )
39
39
AuthTelemetry .addConnection(
40
40
project,
41
- source = SourceOfEntry .FIRST_STARTUP .name ,
41
+ source = SourceOfEntry .FIRST_STARTUP .toString() ,
42
42
featureId = FeatureId .Unknown ,
43
43
credentialSourceId = CredentialSourceId .Unknown ,
44
44
isAggregated = true ,
45
45
result = Result .Succeeded
46
46
)
47
47
AuthTelemetry .addedConnections(
48
48
project,
49
- source = SourceOfEntry .FIRST_STARTUP .name ,
49
+ source = SourceOfEntry .FIRST_STARTUP .toString() ,
50
50
authConnectionsCount = getConnectionCount(),
51
51
newAuthConnectionsCount = 0 ,
52
52
enabledAuthConnections = getEnabledConnections(project),
@@ -60,7 +60,7 @@ class GettingStartedOnStartup : StartupActivity {
60
60
LOG .error(e) { " Error opening getting started panel" }
61
61
AuthTelemetry .addConnection(
62
62
project,
63
- source = SourceOfEntry .FIRST_STARTUP .name ,
63
+ source = SourceOfEntry .FIRST_STARTUP .toString() ,
64
64
featureId = FeatureId .Unknown ,
65
65
credentialSourceId = CredentialSourceId .Unknown ,
66
66
isAggregated = false ,
@@ -69,7 +69,7 @@ class GettingStartedOnStartup : StartupActivity {
69
69
)
70
70
AuthTelemetry .addedConnections(
71
71
project,
72
- source = SourceOfEntry .FIRST_STARTUP .name ,
72
+ source = SourceOfEntry .FIRST_STARTUP .toString() ,
73
73
authConnectionsCount = getConnectionCount(),
74
74
newAuthConnectionsCount = 0 ,
75
75
enabledAuthConnections = getEnabledConnections(project),
0 commit comments