* ============LICENSE_START=======================================================
  * ONAP PAP
  * ================================================================================
- * Copyright (C) 2019, 2021 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2019, 2022 AT&T Intellectual Property. All rights reserved.
  * Modifications Copyright (C) 2020-2021 Nordix Foundation.
  * Modifications Copyright (C) 2021 Bell Canada. All rights reserved.
  * ================================================================================
 import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifier;
 import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifierOptVersion;
 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy;
+import org.onap.policy.pap.main.PapConstants;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.stereotype.Service;
 
         ToscaConceptIdentifier desiredIdent = policy.getIdentifier();
         ToscaConceptIdentifier desiredType = policy.getTypeIdentifier();
+        PapStatisticsManager mgr = Registry.get(PapConstants.REG_STATISTICS_MANAGER, PapStatisticsManager.class);
+        mgr.updateTotalPolicyDeployCount();
 
         return (group, subgroup) -> {
 
 
  * ============LICENSE_START=======================================================
  * ONAP PAP
  * ================================================================================
- * Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2019-2022 AT&T Intellectual Property. All rights reserved.
  * Modifications Copyright (C) 2021 Nordix Foundation.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
     protected PdpModifyRequestMap reqmap;
     protected PolicyModelsProviderFactoryWrapper daofact;
     protected ToscaPolicy policy1;
-
+    protected PapStatisticsManager statsmanager;
 
     /**
      * Configures DAO, captors, and various mocks.
         lockit = new Object();
         daofact = mock(PolicyModelsProviderFactoryWrapper.class);
         policy1 = loadPolicy("policy.json");
+        statsmanager = mock(PapStatisticsManager.class);
 
         when(daofact.create()).thenReturn(dao);
 
         Registry.register(PapConstants.REG_PDP_MODIFY_MAP, reqmap);
         Registry.register(PapConstants.REG_PAP_DAO_FACTORY, daofact);
         Registry.register(PapConstants.REG_POLICY_NOTIFIER, notifier);
+        Registry.register(PapConstants.REG_STATISTICS_MANAGER, statsmanager);
     }
 
     protected void assertGroup(List<PdpGroup> groups, String name) {
 
  * ============LICENSE_START=======================================================
  * ONAP PAP
  * ================================================================================
- * Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2019-2022 AT&T Intellectual Property. All rights reserved.
  * Modifications Copyright (C) 2021 Nordix Foundation.
  * Modifications Copyright (C) 2021 Bell Canada. All rights reserved.
  * ================================================================================
 import org.onap.policy.models.pdp.concepts.PdpUpdate;
 import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifier;
 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy;
+import org.onap.policy.pap.main.PapConstants;
 
 public class TestPdpGroupDeployProvider extends ProviderSuper {
 
                 .hasMessage("policy not supported by any PDP group: policyA 1.2.3");
     }
 
+    /**
+     * Tests PapStatisticsManager counts when policies are added to a subgroup.
+     *
+     * @throws Exception if an error occurs
+     */
+    @Test
+    public void testDeployedPdpGroupCountStatistics() throws Exception {
+        Registry.unregister(PapConstants.REG_STATISTICS_MANAGER);
+        PapStatisticsManager mgr = new PapStatisticsManager();
+        Registry.register(PapConstants.REG_STATISTICS_MANAGER, mgr);
+
+        when(dao.getFilteredPdpGroups(any())).thenReturn(loadGroups("deployPoliciesWildCard.json"));
+        prov.deployPolicies(loadRequest("multiple_requests.json"), DEFAULT_USER);
+        assertEquals(mgr.getTotalPolicyDeployCount(), 3);
+
+        Registry.unregister(PapConstants.REG_STATISTICS_MANAGER);
+        Registry.register(PapConstants.REG_STATISTICS_MANAGER, statsmanager);
+    }
+
     @Test
     public void testMakeUpdater() throws Exception {
         /*
 
--- /dev/null
+{
+  "policies": [
+    {
+      "name": "policy_test1",
+      "policy-id": "policy_test1",
+      "version": "1.2.3",
+      "type": "typeA",
+      "type_version": "100.2.3"
+    },
+    {
+      "name": "policy_test2",
+      "policy-id": "policy_test2",
+      "version": "4.5.6",
+      "type": "typeB",
+      "type_version": "100.2.3"
+    },
+    {
+      "name": "policy_test3",
+      "policy-id": "policy_test3",
+      "version": "1.2.3",
+      "type": "typeC",
+      "type_version": "100.2.3"
+    }
+  ]
+}