Configuring Watson Assistant

You can configure the Watson Assistant instance by editing the CR.

Enabling or Disabling Analytics

Analytics is enabled by default. To disable it, edit the Watson Assistant Custom Resource:

oc project ${PROJECT_CPD_INSTANCE}
export INSTANCE=`oc get wa -n ${PROJECT_CPD_INSTANCE} |grep -v NAME| awk '{print $1}'`
oc edit wa $INSTANCE

You can update the flag to true or false to either enable or disable Analytics:

features:
    analytics:
      enabled: true

After 10 minutes, test out the chatbot in the UI to ensure that chat logs are displayed correctly in the Analytics section. Verify that the new records appear or do not appear based on the flag value set for the feature.