I have been doing some research for analytics solutions for a chatbot I am currently building using the Rasa framework. I found some solutions such as chatbase and dashbot. The documents dont provide this information, but does Rasa provide analytics tools? If not, what other tools would you recommend? I am looking for an analytic tool that will allow me to see what questions are asked the most. Thank you in advance!
There are currently no dedicated open source analytic tools for Rasa. What I suggest to do is either using a persistent tracker store, e.g. Mongo, or connect an event broker, e.g. RabbitMq, to Rasa Core and store the streamed events as you like. You can then write queries on top of that, or visualize the data with tools like Prometheus and Grafana.