Merge "Update policy cookbook documentation" into casablanca
authorPamela Dragosh <pdragosh@research.att.com>
Wed, 7 Nov 2018 00:02:49 +0000 (00:02 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 7 Nov 2018 00:02:49 +0000 (00:02 +0000)
1  2 
docs/platform/cookbook.rst

@@@ -104,33 -150,42 +150,62 @@@ PDP-D Recipes (inside the "drools" cont
         :caption: Manual Healthcheck Invokation
         :linenos:
  
-         # Assuming the healthcheck service credentials have not been changed
-         # post-installation within the drools container
-  
          source ${POLICY_HOME}/config/feature-healthcheck.conf
-         curl --silent --user "${HEALTHCHECK_USER}:${HEALTHCHECK_PASSWORD}" 
-              -X GET http://localhost:6969/healthcheck | python -m json.tool
+         curl --silent --user "${HEALTHCHECK_USER}:${HEALTHCHECK_PASSWORD}"
+              -X GET https://localhost:6969/healthcheck | python -m json.tool
+     .. code-block:: bash
+        :caption: Start a telemetry shell
+        :linenos:
+         telemetry
+     .. code-block:: bash
+        :caption: See all the configured loggers
+        :linenos:
+        curl -k --silent --user "${ENGINE_MANAGEMENT_USER}:${ENGINE_MANAGEMENT_PASSWORD}"
+             https://localhost:9696/policy/pdp/engine/tools/loggers
+     .. code-block:: bash
+        :caption: See the logging level for a given logger (for example the network logger):
+        :linenos:
+        curl -k --silent --user"${ENGINE_MANAGEMENT_USER}:${ENGINE_MANAGEMENT_PASSWORD}"
+             https://localhost:9696/policy/pdp/engine/tools/loggers/network
+     .. code-block:: bash
+        :caption: Modify the logging level for a given logger (for example the network logger):
+        :linenos:
+        curl -k --silent --user"${ENGINE_MANAGEMENT_USER}:${ENGINE_MANAGEMENT_PASSWORD}"
+             -X PUT https://localhost:9696/policy/pdp/engine/tools/loggers/network/WARN
  
 +PAP Recipes (inside the "pap" container)
 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 +
 +    .. code-block:: bash
 +       :caption: Bypass Portal Authentication with the Policy Web UI
 +       :linenos:
 +
 +        edit: /opt/app/policy/servers/console/webapps/onap/WEB-INF/classes/portal.properties
 +        comment out: #role_access_centralized = remote
 +        restart pap: policy.sh stop; policy.sh start;
 +
 +
 +    .. code-block:: bash
 +       :caption: Access the Policy Web UI without going through the Portal UI
 +       :linenos:
 +
 +       https://<pap-vm>:8443/onap/login.htm  (Heat)
 +       https://<pap-vm>:30219/onap/login.htm  (Kubernetes)
 +
 +
  End of Document
  
  .. SSNote: Wiki page ref. https://wiki.onap.org/display/DW/Policy+Cookbook