diff --git a/ee/changelogs/unreleased/the-one.yml b/ee/changelogs/unreleased/the-one.yml
new file mode 100644
index 0000000000000000000000000000000000000000..eaf831e57fc510ba8f621a4292a432d47494c6e1
--- /dev/null
+++ b/ee/changelogs/unreleased/the-one.yml
@@ -0,0 +1,5 @@
+---
+title: "[Geo] Add CI job artifact numbers to rake geo:status"
+merge_request:
+author:
+type: changed
diff --git a/ee/lib/tasks/geo.rake b/ee/lib/tasks/geo.rake
index 85bd71bacb4dd7683b6803f525d756b55e99fe9f..45d5aad6ff25dcd132484890f382b7ea4516c3ce 100644
--- a/ee/lib/tasks/geo.rake
+++ b/ee/lib/tasks/geo.rake
@@ -281,6 +281,11 @@ namespace :geo do
     print "#{current_node_status.attachments_synced_count}/#{current_node_status.attachments_count} "
     puts using_percentage(current_node_status.attachments_synced_in_percentage)
 
+    print 'CI job artifacts: '.rjust(COLUMN_WIDTH)
+    show_failed_value(current_node_status.job_artifacts_failed_count)
+    print "#{current_node_status.job_artifacts_synced_count}/#{current_node_status.job_artifacts_count} "
+    puts using_percentage(current_node_status.job_artifacts_synced_in_percentage)
+
     if Gitlab::CurrentSettings.repository_checks_enabled
       print 'Repositories Checked: '.rjust(COLUMN_WIDTH)
       show_failed_value(current_node_status.repositories_checked_failed_count)