From 36d7575fa346a2aa6ef9682145396f103b714109 Mon Sep 17 00:00:00 2001 From: "Ekaterina.Itsenko" Date: Fri, 12 Jun 2026 03:25:17 +0000 Subject: [PATCH] [pycharm] PY-84800 Jupyter: update topics list Merge-request: IJ-MR-208094 Merged-by: Ekaterina Itsenko GitOrigin-RevId: 24b3a5fce58abd9ebdaddd21093b8a55b61189c2 --- .../intellij/help/impl/JupyterHelpUsageCollector.kt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) 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) } }