From 59ec90cfb3a9cc741f2de8ff82e8550bb7467bc4 Mon Sep 17 00:00:00 2001 From: Sergey Nikitin Date: Fri, 13 Sep 2024 22:49:23 +0200 Subject: [PATCH] fix(analytics): Distinguish between ram and ssd --- src/memory/index.ts | 2 +- src/storage/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/memory/index.ts b/src/memory/index.ts index e03a8862..21ed40e5 100644 --- a/src/memory/index.ts +++ b/src/memory/index.ts @@ -75,7 +75,7 @@ export const sendMemoryStatAnalytics = async ( params: { size: sizeMb, app_version: appVersion, - page_location: "system/internal", + page_location: "system/internal/ram", page_title: `Internal system metrics`, thread_id: 0, engagement_time_msec: 0, diff --git a/src/storage/index.ts b/src/storage/index.ts index da6ddf91..c847cd82 100644 --- a/src/storage/index.ts +++ b/src/storage/index.ts @@ -55,7 +55,7 @@ export const sendStorageStatAnalytics = async ( params: { size: sizeMb, app_version: appVersion, - page_location: "system/internal", + page_location: "system/internal/ssd", page_title: `Internal system metrics`, thread_id: 0, engagement_time_msec: 0,