I am creating an Azure chatbot with language(Web App Bot) . I want a log of questions asked by users and what replies the chatbot gave. Is this possible in Azure Chatbot?

Anandkumar Yadav 26 Reputation points
2022-08-12T06:36:47.44+00:00

I am creating an Azure chatbot with language(Web App Bot) . I want a log of questions asked by users and what replies the chatbot gave. Is this possible in Azure Chatbot?

Azure Data Science Virtual Machines
Azure Data Science Virtual Machines
Azure Virtual Machine images that are pre-installed, configured, and tested with several commonly used tools for data analytics, machine learning, and artificial intelligence training.
67 questions
{count} votes

1 answer

Sort by: Most helpful
  1. romungi-MSFT 42,311 Reputation points Microsoft Employee
    2022-08-16T08:46:24.5+00:00

    @Anandkumar Yadav Are you using the blob storage to log your conversation state? I have tried this scenario and the sample did work.
    I also found a simple solution that you can use with minimal effort to log the conversation in a blob container. This can be achieved using a basic echo bot using the readily available sample from VS marketplace. Once you install the VSIX package you can try updating the echo bot by following the steps in this document for C#. The default solution uses in memory storage but after updating the storage account settings it should log the utterances in the container configured.

    Here is a screen shot from my emulator and the log in the container.

    231409-image.png

    If an answer is helpful, please click on 130616-image.png or upvote 130671-image.png which might help other community members reading this thread.