Skip to content

Commit

Permalink
Rename dashboard for primary metrics to product metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
annaMarchenkoJetBrains committed Sep 24, 2024
1 parent e8c659e commit ae241ed
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<DashboardPage
db-name="perfintDev"
table="idea"
persistent-id="idea_primary_dashboard_dev"
persistent-id="idea_product_dashboard_dev"
initial-machine="Linux EC2 C6id.8xlarge (32 vCPU Xeon, 64 GB)"
:charts="charts"
:with-installer="false"
Expand Down
14 changes: 7 additions & 7 deletions dashboard/new-dashboard/src/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const TEST_ROUTE = "tests"
const DEV_TEST_ROUTE = "testsDev"
const DASHBOARD_ROUTE = "dashboard"
const STARTUP_ROUTE = "startup"
const PRIMARY_METRICS_ROUTE = "primary-metrics"
const PRODUCT_METRICS_ROUTE = "product-metrics"
const COMPARE_ROUTE = "compare"
const COMPARE_BRANCHES_ROUTE = "compareBranches"

Expand All @@ -51,7 +51,7 @@ enum ROUTES {
StartupExplore = `${ROUTE_PREFIX.Startup}/explore`,
StartupExploreInstaller = `${ROUTE_PREFIX.Startup}/exploreInstaller`,
IntelliJStartupDashboard = `${ROUTE_PREFIX.IntelliJ}/${STARTUP_ROUTE}`,
IntelliJPrimaryMetricsDashboard = `${ROUTE_PREFIX.IntelliJ}/${PRIMARY_METRICS_ROUTE}`,
IntelliJProductMetricsDashboard = `${ROUTE_PREFIX.IntelliJ}/${PRODUCT_METRICS_ROUTE}`,
IntelliJDashboard = `${ROUTE_PREFIX.IntelliJ}/${DASHBOARD_ROUTE}`,
IntelliJDashboardOld = `${ROUTE_PREFIX.IntelliJ}/dashboardOld`,
IntelliJPopupsDashboard = `${ROUTE_PREFIX.IntelliJ}/popupsDashboard`,
Expand Down Expand Up @@ -223,7 +223,7 @@ const COMPARE_BUILDS_LABEL = "Compare Builds"
const COMPARE_BRANCHES_LABEL = "Compare Branches"
const DASHBOARD_LABEL = "Dashboard"
const STARTUP_LABEL = "Startup"
const PRIMARY_METRICS_LABEL = "Primary Metrics"
const PRODUCT_METRICS_LABEL = "Product Metrics"

const IJ_STARTUP: Product = {
url: ROUTE_PREFIX.Startup,
Expand Down Expand Up @@ -278,8 +278,8 @@ const IDEA: Product = {
label: STARTUP_LABEL,
},
{
url: ROUTES.IntelliJPrimaryMetricsDashboard,
label: PRIMARY_METRICS_LABEL,
url: ROUTES.IntelliJProductMetricsDashboard,
label: PRODUCT_METRICS_LABEL,
},
{
url: ROUTES.IntelliJDashboard,
Expand Down Expand Up @@ -1154,8 +1154,8 @@ export function getNewDashboardRoutes(): ParentRouteRecord[] {
meta: { pageTitle: "IDEA Startup dashboard" },
},
{
path: ROUTES.IntelliJPrimaryMetricsDashboard,
component: () => import("./components/intelliJ/PrimaryMetricsDashboard.vue"),
path: ROUTES.IntelliJProductMetricsDashboard,
component: () => import("./components/intelliJ/ProductMetricsDashboard.vue"),
meta: { pageTitle: "IDEA primary metrics" },
},
{
Expand Down

0 comments on commit ae241ed

Please sign in to comment.