Skip to content

Commit

Permalink
Merge pull request #2638 from digma-ai/add-connection-status-to-error…
Browse files Browse the repository at this point in the history
…-event

add-connection-status-to-error-event
  • Loading branch information
shalom938 authored Dec 26, 2024
2 parents ba2c81b + 535d4a3 commit c8a8bf7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,8 @@ class ActivityMonitor(private val project: Project, cs: CoroutineScope) : Dispos
"ide.build" to ideBuildNumber,
"plugin.version" to pluginVersion,
"server.version" to serverInfo?.applicationVersion.toString(),
"user.type" to if (UniqueGeneratedUserId.isDevUser) "internal" else "external"
"user.type" to if (UniqueGeneratedUserId.isDevUser) "internal" else "external",
"backend.connection.status" to if(BackendConnectionMonitor.getInstance(project).isConnectionOk()) "connected" else "disconnected"
)


Expand Down

0 comments on commit c8a8bf7

Please sign in to comment.