[fus] increment group ids

Since GitActionIdsHolder update

(cherry picked from commit d9585d217159bf8d02f9731e1291f84538b81efd)


(cherry picked from commit c80fc407a70edbdce80dab02fd10055b77e9aa80)

IJ-MR-150633

GitOrigin-RevId: 5c0bf2145c8422933af0d697c0919bc595a51329
This commit is contained in:
Dmitry Zhuravlev
2024-11-27 17:35:57 +01:00
committed by intellij-monorepo-bot
parent 62683ce762
commit 1e56ff834c
7 changed files with 8 additions and 8 deletions

View File

@@ -22,7 +22,7 @@ object ExternalSystemActionsCollector : CounterUsagesCollector() {
override fun getGroup(): EventLogGroup = GROUP
private val GROUP = EventLogGroup("build.tools.actions", 9)
private val GROUP = EventLogGroup("build.tools.actions", 10)
val EXTERNAL_SYSTEM_ID = EventFields.StringValidatedByEnum("system_id", "build_tools")
private val ACTION_EXECUTOR_FIELD =
EventFields.StringValidatedByCustomRule("executor", RunConfigurationExecutorUtilValidator::class.java)

View File

@@ -20,7 +20,7 @@ import java.util.HashSet;
import java.util.Set;
final class KeymapChangesCollector extends ApplicationUsagesCollector {
private static final EventLogGroup GROUP = new EventLogGroup("keymap.changes", 3);
private static final EventLogGroup GROUP = new EventLogGroup("keymap.changes", 4);
private static final BooleanEventField IMPORTED = EventFields.Boolean("imported");

View File

@@ -21,7 +21,7 @@ import java.awt.event.InputEvent;
*/
@ApiStatus.Internal
public final class ToolbarClicksCollector extends CounterUsagesCollector {
private static final EventLogGroup GROUP = new EventLogGroup("toolbar", 63);
private static final EventLogGroup GROUP = new EventLogGroup("toolbar", 64);
private static final VarargEventId CLICKED = ActionsEventLogGroup.registerActionEvent(GROUP, "clicked");
@Override
@@ -34,4 +34,4 @@ public final class ToolbarClicksCollector extends CounterUsagesCollector {
dataContext, null, place, ActionUiKind.TOOLBAR, inputEvent);
ActionsCollectorImpl.record(CLICKED, event.getProject(), action, event, (list) -> Unit.INSTANCE);
}
}
}

View File

@@ -17,7 +17,7 @@ internal object NotificationsEventLogGroup : CounterUsagesCollector() {
override fun getGroup(): EventLogGroup = GROUP
@JvmField
val GROUP: EventLogGroup = EventLogGroup("notifications", 68)
val GROUP: EventLogGroup = EventLogGroup("notifications", 69)
@JvmField
val DISPLAY_TYPE: EnumEventField<NotificationDisplayType> = Enum("display_type", NotificationDisplayType::class.java)

View File

@@ -22,7 +22,7 @@ import java.util.concurrent.atomic.AtomicReference
*/
@ApiStatus.Internal
object DumbModeBlockedFunctionalityCollector : CounterUsagesCollector() {
private val GROUP = EventLogGroup("dumb.mode.blocked.functionality", 9)
private val GROUP = EventLogGroup("dumb.mode.blocked.functionality", 10)
private val FUNCTIONALITY_SOURCE = EventFields.Enum("functionality", DumbModeBlockedFunctionality::class.java)
private val EXECUTED_WHEN_SMART = EventFields.Boolean("executed_when_smart")

View File

@@ -11,7 +11,7 @@ import com.intellij.openapi.project.Project
internal object XDebuggerPerformanceCollector : CounterUsagesCollector() {
override fun getGroup(): EventLogGroup = GROUP
private val GROUP = EventLogGroup("debugger.performance", 4)
private val GROUP = EventLogGroup("debugger.performance", 5)
private val EXECUTION_POINT_REACHED = GROUP.registerEvent(
"execution.point.reached",

View File

@@ -296,7 +296,7 @@ object SearchEverywhereMLStatisticsCollector : CounterUsagesCollector() {
return true
}
private val GROUP = EventLogGroup("mlse.log", 107, MLSE_RECORDER_ID)
private val GROUP = EventLogGroup("mlse.log", 108, MLSE_RECORDER_ID)
private val IS_INTERNAL = EventFields.Boolean("isInternal")
private val ORDER_BY_ML_GROUP = EventFields.Boolean("orderByMl")