You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Usage data is collected for improving quality of the library.
170
+
It is turned on by default if the backend is [Hopsworks Serverless](https://c.app.hopsworks.ai).
171
+
To turn it off, use one of the following ways:
172
+
```python
173
+
# use environment variable
174
+
import os
175
+
os.environ["ENABLE_HOPSWORKS_USAGE"] ="false"
176
+
177
+
# use `disable_usage_logging`
178
+
import hopsworks
179
+
hopsworks.disable_usage_logging()
180
+
```
181
+
182
+
The corresponding source code is in `python/hopsworks_common/usage.py`.
183
+
167
184
## Tutorials
168
185
169
186
Need more inspiration or want to learn more about the Hopsworks platform? Check out our [tutorials](https://github.com/logicalclocks/hopsworks-tutorials).
0 commit comments