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
Starting with Bolt 5.4, the driver will, by default, send anonymous API usage
statistics to the server if requested.
The driver configuration `telemetry_disabled=True` can be used to disable this.
```python
import neo4j
with neo4j.GraphDatabase.driver(..., telemetry_disabled=True) as driver:
...
```
The driver transmits the following information:
* Every time one of the following APIs is used to execute a query
(for the first time), the server is informed of this
(without any further information like arguments, client identifiers, etc.):
* `driver.execute_query`
* `session.begin_transaction`
* `session.execute_read`, `session.execute_write`
* `session.run`
* the async counterparts of the above methods
0 commit comments