-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add bolt 5.4 support (telemetry) #12
Merged
Merged
Commits on Apr 12, 2024
-
Add bolt 5.4 support (telemetry)
Starting with Bolt 5.4, the driver will, by default, send anonymous API usage statistics to the server if requested. An opt-out is available through `DriverConfig::with_telemetry`: ```rust let driver = Driver::new( connection_config, DriverConfig::new().with_telemetry(false), ); ``` If the server requests is, the driver will send anonymous API usage. Currently, everytime 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.): * `ExecuteQueryBuilder::run()` / `ExecuteQueryBuilder::run_with_retry()` * `TransactionBuilder::run()` * `TransactionBuilder::run_with_retry()` * `AutoCommitBuilder::run()`
Configuration menu - View commit details
-
Copy full SHA for f68aeaf - Browse repository at this point
Copy the full SHA f68aeafView commit details
Commits on Apr 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0382440 - Browse repository at this point
Copy the full SHA 0382440View commit details -
Configuration menu - View commit details
-
Copy full SHA for 370104d - Browse repository at this point
Copy the full SHA 370104dView commit details -
Configuration menu - View commit details
-
Copy full SHA for d90525a - Browse repository at this point
Copy the full SHA d90525aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ff7d38 - Browse repository at this point
Copy the full SHA 2ff7d38View commit details -
TestKit: improve backend logging
* Add time stamp * Remove module of log messages
Configuration menu - View commit details
-
Copy full SHA for dbc0c59 - Browse repository at this point
Copy the full SHA dbc0c59View commit details -
Configuration menu - View commit details
-
Copy full SHA for e3061f9 - Browse repository at this point
Copy the full SHA e3061f9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 35d5391 - Browse repository at this point
Copy the full SHA 35d5391View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.