Skip to content
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
64 changes: 64 additions & 0 deletions site/data/3.11/allMetrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2047,6 +2047,70 @@
This metric tracks the runtime of phase2 of an Agency sync. Phase2 calculates
what actions to execute given the difference of the local and target state.

- name: arangodb_network_connectivity_failures_coordinators_total
introducedIn: "3.11.4"
help: |
Number of failed connectivity check requests sent to Coordinators.
unit: number
type: counter
category: Network
complexity: simple
exposedBy:
- coordinator
- dbserver
description: |
Number of failed connectivity check requests sent by this instance
to Coordinators.
The metric will be increased if a cluster-internal connection to a
Coordinator cannot be established within 10 seconds. In this case the
instance will also log a warning.
Connectivity checks run with a configurable frequency, adjustable via
the `--cluster.connectivity-check-interval` startup option.

troubleshoot: |
If this metric keeps increasing permanently or for longer periods, there
are likely network connectivity issues or misconfigurations, which can
prevent the instance from connecting to every Coordinator in the cluster
(potentially connecting to itself). In this case it is advised to check
the connectivity manually, and ensure that the instance can make connections
to all Coordinators, potentially including itself.

If there are temporary network glitches or instance restarts, this metric
can also increase. But increases should stop once the network has stabilized
and/or instances have restarted successfully.

- name: arangodb_network_connectivity_failures_dbservers_total
introducedIn: "3.11.4"
help: |
Number of failed connectivity check requests sent to DB-Servers.
unit: number
type: counter
category: Network
complexity: simple
exposedBy:
- coordinator
- dbserver
description: |
Number of failed connectivity check requests sent by this instance
to DB-Server.
The metric will be increased if a cluster-internal connection to a
DB-Server cannot be established within 10 seconds. In this case the
instance will also log a warning.
Connectivity checks run with a configurable frequency, adjustable via
the `--cluster.connectivity-check-interval` startup option.

troubleshoot: |
If this metric keeps increasing permanently or for longer periods, there
are likely network connectivity issues or misconfigurations, which can
prevent the instance from connecting to every DB-Server in the cluster
(potentially connecting to itself). In this case it is advised to check
the connectivity manually, and ensure that the instance can make connections
to all DB-Servers, potentially including itself.

If there are temporary network glitches or instance restarts, this metric
can also increase. But increases should stop once the network has stabilized
and/or instances have restarted successfully.

- name: arangodb_network_dequeue_duration
introducedIn: "3.10.6"
help: |
Expand Down
4 changes: 2 additions & 2 deletions site/data/3.11/arangobackup.json
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@
},
"server.authentication" : {
"category" : "option",
"default" : false,
"default" : true,
"deprecatedIn" : null,
"description" : "Require authentication credentials when connecting (does not affect the server-side authentication settings).",
"dynamic" : false,
Expand Down Expand Up @@ -1080,7 +1080,7 @@
"server.endpoint" : {
"category" : "option",
"default" : [
"http+tcp://127.0.0.1:8529"
"tcp://127.0.0.1:8529"
],
"deprecatedIn" : null,
"description" : "The endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp:// or unix://",
Expand Down
4 changes: 2 additions & 2 deletions site/data/3.11/arangobench.json
Original file line number Diff line number Diff line change
Expand Up @@ -1331,7 +1331,7 @@
},
"server.authentication" : {
"category" : "option",
"default" : false,
"default" : true,
"deprecatedIn" : null,
"description" : "Require authentication credentials when connecting (does not affect the server-side authentication settings).",
"dynamic" : false,
Expand Down Expand Up @@ -1398,7 +1398,7 @@
"server.endpoint" : {
"category" : "option",
"default" : [
"http+tcp://127.0.0.1:8529"
"tcp://127.0.0.1:8529"
],
"deprecatedIn" : null,
"description" : "The endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp:// or unix://",
Expand Down
Loading