neo4j / neo4j-dotnet-driver

Neo4j Bolt driver for .NET
Apache License 2.0
226 stars 69 forks source link

Add support for Bolt 5.4 and API Telemetry. #735

Closed thelonelyvulpes closed 11 months ago

thelonelyvulpes commented 11 months ago

Starting with Bolt 5.4, which, by default, will send high-level API usage to the server if requested.

When creating a driver instance, the driver can be configured to turn off this collection using ConfigBuilder.WithTelemetryDisabled.

using var driver = GraphDatabase.Driver(..., x => x.WithTelemetryDisabled());