Why does Streamlit send webhook requests to fivetran.com?

I have a simple app running both locally and remotely on Azure, and I realized that both were sending requests to https://webhooks.fivetran.com/webhooks/.

I can’t find any ressources about why and what does these requests send to fivetran.

Is there any way to disable these ? And if not can someone enlighten me on what data is send and what it is used for ?

Thanks for your time,

Louis

Hello! I am an engineer on the streamlit team and can answer this question.

The data that is sent to fivetran is for our analytics/telemetry. This data helps us make streamlit better for everyone by better understanding how users are using various components of the library. Without this data, our job becomes much more challenging as we would struggle to see what our users are having issues with and we’d also have less data knowing what our users are really enjoying and where we should continue to invest. The data being sent complies with GDPR and is stripped of any personal information. For example, we can see that a function is called with 2 arguments of X size, but we don’t actually see the strings you passed to it.

With that being said, if you still want to disable this, you can do so by adding the following in your config.toml:

[browser]
gatherUsageStats = false
2 Likes

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.