Skip to content
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

Rename quarkus.neo4j.pool.metrics-enabled for unification #17654

Merged
merged 1 commit into from
Jun 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/neo4j.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ This behavior can be disabled by setting the `quarkus.neo4j.health.enabled` prop

=== Driver metrics

If you are using a metrics extension and specify the config property `quarkus.neo4j.pool.metrics-enabled=true`, the Neo4j extension will
If you are using a metrics extension and specify the config property `quarkus.neo4j.pool.metrics.enabled=true`, the Neo4j extension will
expose several metrics related to the Neo4j connection pool.

=== Explore Cypher and the Graph
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ static class Pool {
/**
* Flag, if metrics are enabled.
*/
@ConfigItem
@ConfigItem(name = "metrics.enabled")
public boolean metricsEnabled;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
quarkus.neo4j.uri = ${neo4j.uri}
quarkus.neo4j.authentication.username = ${neo4j.username}
quarkus.neo4j.authentication.password = ${neo4j.password}
quarkus.neo4j.pool.metrics-enabled = true
quarkus.neo4j.pool.metrics.enabled = true

# Disabling SSL is not recommended in production and only needed for this integration test.
# Disabling SSL will disable encrypted bolt communication.
Expand Down