> For the complete documentation index, see [llms.txt](https://tailwindsdocs.innovativesol.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tailwindsdocs.innovativesol.com/readme/analytic.md).

# Analytics

***

There are several analytic providers to integrates with:

* [Langsmith](https://smith.langchain.com/)
* [Langfuse](https://langfuse.com/)
* [LunaryAI](https://lunary.ai/)
* [LangWatch](https://langwatch.ai/)

## Setup

1. At the top right corner of your Chatflow or Agentflow, click **Settings** > **Configuration**

<figure><img src="/files/KDTL5Ahwe9TuxTHGTe5I" alt="Screenshot of user clicking in the configuration menu" width="375"><figcaption></figcaption></figure>

2. Then go to the Analyse Chatflow section

<figure><img src="/files/HzmmQO33FXiMJVYyv65P" alt="Screenshot of the Analyse Chatflow section with the different Analytics providers"><figcaption></figcaption></figure>

3. You will see a list of providers, along with their configuration fields

{% hint style="info" %}
Tailwinds Monitoring leverages LangFuse
{% endhint %}

<figure><img src="/files/eea8XBULRZXNFUeU4a9Z" alt=""><figcaption></figcaption></figure>

3. Fill in the credentials and other configuration details, then turn the provider **ON**

<figure><img src="/files/bdu6sjgDTs5otKGfSU0i" alt="Screenshot of analytics providers enabled"><figcaption></figcaption></figure>

## API

Once the analytic has been turned ON from the UI, you can override or provide additional configuration in the body of the [Prediction API](/readme/api.md#prediction-api):

```json
{
    "question": "hi there",
    "overrideConfig": {
        "analytics": {
            "langFuse": { // langSmith, langFuse, lunary, langWatch
                "userId": "user1"
            }
        }
    }
}
```
