Skip to content

Commit f18e903

Browse files
authored
Updated metric name for fisrt startup (#3979)
1 parent b349dd7 commit f18e903

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

jetbrains-core/src/software/aws/toolkits/jetbrains/core/gettingstarted/GettingStartedOnStartup.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ class GettingStartedOnStartup : StartupActivity {
3838
GettingStartedPanel.openPanel(project, firstInstance = true, connectionInitiatedFromExplorer = false)
3939
AuthTelemetry.addConnection(
4040
project,
41-
source = SourceOfEntry.FIRST_STARTUP.name,
41+
source = SourceOfEntry.FIRST_STARTUP.toString(),
4242
featureId = FeatureId.Unknown,
4343
credentialSourceId = CredentialSourceId.Unknown,
4444
isAggregated = true,
4545
result = Result.Succeeded
4646
)
4747
AuthTelemetry.addedConnections(
4848
project,
49-
source = SourceOfEntry.FIRST_STARTUP.name,
49+
source = SourceOfEntry.FIRST_STARTUP.toString(),
5050
authConnectionsCount = getConnectionCount(),
5151
newAuthConnectionsCount = 0,
5252
enabledAuthConnections = getEnabledConnections(project),
@@ -60,7 +60,7 @@ class GettingStartedOnStartup : StartupActivity {
6060
LOG.error(e) { "Error opening getting started panel" }
6161
AuthTelemetry.addConnection(
6262
project,
63-
source = SourceOfEntry.FIRST_STARTUP.name,
63+
source = SourceOfEntry.FIRST_STARTUP.toString(),
6464
featureId = FeatureId.Unknown,
6565
credentialSourceId = CredentialSourceId.Unknown,
6666
isAggregated = false,
@@ -69,7 +69,7 @@ class GettingStartedOnStartup : StartupActivity {
6969
)
7070
AuthTelemetry.addedConnections(
7171
project,
72-
source = SourceOfEntry.FIRST_STARTUP.name,
72+
source = SourceOfEntry.FIRST_STARTUP.toString(),
7373
authConnectionsCount = getConnectionCount(),
7474
newAuthConnectionsCount = 0,
7575
enabledAuthConnections = getEnabledConnections(project),

0 commit comments

Comments
 (0)