diff --git a/ee/app/assets/javascripts/usage_quotas/seats/components/subscription_upgrade_info_card.vue b/ee/app/assets/javascripts/usage_quotas/seats/components/subscription_upgrade_info_card.vue
index 736a01085798f720b7547aed8d25c139a21f2fc2..44a1448a10f7d1b829ee4c8a489a540863af40ba 100644
--- a/ee/app/assets/javascripts/usage_quotas/seats/components/subscription_upgrade_info_card.vue
+++ b/ee/app/assets/javascripts/usage_quotas/seats/components/subscription_upgrade_info_card.vue
@@ -1,10 +1,13 @@
 <script>
 import { GlLink, GlButton, GlSprintf } from '@gitlab/ui';
 import { s__ } from '~/locale';
+import Tracking from '~/tracking';
+import { EXPLORE_PAID_PLANS_CLICKED } from '../constants';
 
 export default {
   name: 'SubscriptionUpgradeInfoCard',
   components: { GlLink, GlButton, GlSprintf },
+  mixins: [Tracking.mixin()],
   props: {
     maxNamespaceSeats: {
       type: Number,
@@ -23,6 +26,11 @@ export default {
     cta: s__('Billing|Explore all plans'),
   },
   overLimitLink: 'https://about.gitlab.com/blog/2022/03/24/efficient-free-tier/',
+  methods: {
+    trackClick() {
+      this.track('click_button', { label: EXPLORE_PAID_PLANS_CLICKED });
+    },
+  },
 };
 </script>
 
@@ -45,7 +53,12 @@ export default {
         </p>
       </div>
       <div>
-        <gl-button :href="explorePlansPath" category="primary" variant="confirm">
+        <gl-button
+          :href="explorePlansPath"
+          category="primary"
+          variant="confirm"
+          @click="trackClick"
+        >
           {{ $options.i18n.cta }}
         </gl-button>
       </div>
diff --git a/ee/app/assets/javascripts/usage_quotas/seats/constants.js b/ee/app/assets/javascripts/usage_quotas/seats/constants.js
index e7f7c4148005a9501425968a5fc473892f02b013..feb516549d6233f483aac40c5eec6a20a176e4cc 100644
--- a/ee/app/assets/javascripts/usage_quotas/seats/constants.js
+++ b/ee/app/assets/javascripts/usage_quotas/seats/constants.js
@@ -86,3 +86,4 @@ export const DISMISS_SEATS_ALERT_COOKIE_NAME = 'dismiss_seats_alert_usage_quotas
 export const RENDER_SEATS_PAGE_TRACK_LABEL = 'usage_quotas_page_viewed';
 export const RENDER_SEATS_ALERT_TRACK_LABEL = 'over_limit_alert_viewed';
 export const DISMISS_SEATS_ALERT_TRACK_LABEL = 'over_limit_alert_dismissed';
+export const EXPLORE_PAID_PLANS_CLICKED = 'explore_paid_plans_clicked';
diff --git a/ee/spec/frontend/usage_quotas/seats/components/subscription_upgrade_info_card_spec.js b/ee/spec/frontend/usage_quotas/seats/components/subscription_upgrade_info_card_spec.js
index 965c6382dd74bc9560f097a8632ddd292cda1e46..fd5447f76c8bd3dd3ac592a94a0e611a3a4e061d 100644
--- a/ee/spec/frontend/usage_quotas/seats/components/subscription_upgrade_info_card_spec.js
+++ b/ee/spec/frontend/usage_quotas/seats/components/subscription_upgrade_info_card_spec.js
@@ -1,8 +1,11 @@
 import { GlButton } from '@gitlab/ui';
 import { mount } from '@vue/test-utils';
+import { mockTracking } from 'helpers/tracking_helper';
 import SubscriptionUpgradeInfoCard from 'ee/usage_quotas/seats/components/subscription_upgrade_info_card.vue';
+import { EXPLORE_PAID_PLANS_CLICKED } from 'ee/usage_quotas/seats/constants';
 
 describe('SubscriptionUpgradeInfoCard', () => {
+  let trackingSpy;
   let wrapper;
 
   const defaultProps = {
@@ -22,6 +25,7 @@ describe('SubscriptionUpgradeInfoCard', () => {
 
   beforeEach(() => {
     createComponent();
+    trackingSpy = mockTracking(undefined, wrapper.element, jest.spyOn);
   });
 
   it('renders help link if description and helpLink props are passed', () => {
@@ -35,4 +39,14 @@ describe('SubscriptionUpgradeInfoCard', () => {
   it('renders description message with max number of seats', () => {
     expect(findDescription().text()).toContain('has over 5 members');
   });
+
+  it('tracks on click', () => {
+    const link = findExplorePlansLink();
+
+    link.vm.$emit('click');
+
+    expect(trackingSpy).toHaveBeenCalledWith(undefined, 'click_button', {
+      label: EXPLORE_PAID_PLANS_CLICKED,
+    });
+  });
 });