diff --git a/platform/platform-impl/src/com/intellij/help/impl/JupyterHelpUsageCollector.kt b/platform/platform-impl/src/com/intellij/help/impl/JupyterHelpUsageCollector.kt index 59fd3e98dbff..4c50e3f23d95 100644 --- a/platform/platform-impl/src/com/intellij/help/impl/JupyterHelpUsageCollector.kt +++ b/platform/platform-impl/src/com/intellij/help/impl/JupyterHelpUsageCollector.kt @@ -8,13 +8,18 @@ import org.jetbrains.annotations.ApiStatus @ApiStatus.Internal object JupyterHelpUsageCollector : CounterUsagesCollector() { - private val GROUP = EventLogGroup("jupyter.help.usage", 1) + private val GROUP = EventLogGroup("jupyter.help.usage", 2) private val JUPYTER_HELP_TOPICS = listOf( "jupyter.settings.page", "reference.settings.jupyter", "tool_window.jupyter_server_log", "reference.jupyter.vcs", - "how.to.work.with.tables" + "how.to.work.with.tables", + "use.expression.input", + "adjust.table.formatting", + "jupyter.data.issues", + "reference.settings.tables", + "preferences.database.dataViews" ) private val HELP_ID_FIELD = EventFields.String("help_id", JUPYTER_HELP_TOPICS) private val HELP_OPENED_EVENT = GROUP.registerEvent("opened", HELP_ID_FIELD) @@ -23,7 +28,7 @@ object JupyterHelpUsageCollector : CounterUsagesCollector() { @JvmStatic fun logOpened(helpId: String?) { - if (!helpId.isNullOrBlank()) { + if (!helpId.isNullOrBlank() && helpId in JUPYTER_HELP_TOPICS) { HELP_OPENED_EVENT.log(helpId) } }