diff --git a/.changeset/green-cheetahs-cover.md b/.changeset/green-cheetahs-cover.md
new file mode 100644
index 0000000000..2633a5af01
--- /dev/null
+++ b/.changeset/green-cheetahs-cover.md
@@ -0,0 +1,5 @@
+---
+'@backstage/core-app-api': minor
+---
+
+The analytics' `navigate` event will now include the route parameters as attributes of the navigate event
diff --git a/docs/plugins/analytics.md b/docs/plugins/analytics.md
index e949f7beb4..fa9aed7fe5 100644
--- a/docs/plugins/analytics.md
+++ b/docs/plugins/analytics.md
@@ -54,7 +54,7 @@ installed, may be captured.
| Action | Subject | Other Notes |
| ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `navigate` | The URL of the page that was navigated to. | |
+| `navigate` | The URL of the page that was navigated to. | The parameters of the current route will be included as attributes |
| `click` | The text of the link that was clicked on. | The `to` attribute represents the URL clicked to. |
| `create` | The `name` of the software being created; if no `name` property is requested by the given Software Template, then the string `new {templateName}` is used instead. | The context holds an `entityRef`, set to the template's ref (e.g. `template:default/template-name`). |
| `search` | The search term entered in any search bar component. | The context holds `searchTypes`, representing `types` constraining the search. The `value` represents the total number of search results for the query. This may not be visible if the permission framework is being used. |
diff --git a/packages/core-app-api/src/routing/RouteTracker.test.tsx b/packages/core-app-api/src/routing/RouteTracker.test.tsx
new file mode 100644
index 0000000000..6896b60169
--- /dev/null
+++ b/packages/core-app-api/src/routing/RouteTracker.test.tsx
@@ -0,0 +1,115 @@
+/*
+ * Copyright 2023 The Backstage Authors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import { TestApiProvider } from '@backstage/test-utils';
+import React from 'react';
+import { BackstageRouteObject } from './types';
+import { fireEvent, render } from '@testing-library/react';
+import { RouteTracker } from './RouteTracker';
+import { Link, MemoryRouter, Route, Routes } from 'react-router-dom';
+import {
+ AnalyticsApi,
+ analyticsApiRef,
+ createRouteRef,
+} from '@backstage/core-plugin-api';
+
+describe('RouteTracker', () => {
+ const routeRef1 = createRouteRef({
+ id: 'route1',
+ });
+ const routeRef2 = createRouteRef({
+ id: 'route2',
+ });
+
+ const routeObjects: BackstageRouteObject[] = [
+ {
+ path: '/path/:p1/:p2',
+ element: go,
+ routeRefs: new Set([routeRef1]),
+ caseSensitive: false,
+ },
+ {
+ path: '/path2/:param',
+ element: