-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Dj Walker-Morgan <[email protected]>
- Loading branch information
Showing
31 changed files
with
224 additions
and
5,528 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: pgd assess | ||
navTitle: Assess | ||
--- | ||
|
||
The `pgd assess` commands are used to assess the suitability of a Postgres server instance for migration to the EDB Postgres Distributed cluster. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: pgd cluster | ||
navTitle: Cluster | ||
--- | ||
|
||
The `pgd cluster` commands are used to manage the EDB Postgres Distributed cluster. | ||
|
||
## Subcommands | ||
|
||
- [show](show): Show cluster-level information. | ||
- [verify](verify): Verify cluster-level information. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
title: pgd cluster show | ||
navTitle: Show | ||
--- | ||
|
||
## Synopsis | ||
|
||
The `pgd cluster show` command is used to display the cluster-level information in the EDB Postgres Distributed cluster. | ||
|
||
## Syntax | ||
|
||
```plaintext | ||
pgd cluster show [OPTIONS] | ||
``` | ||
|
||
## Options | ||
|
||
The following table lists the options available for the `pgd events show` command: | ||
|
||
| Short | Long | Description | | ||
|-------------|---------------------|---------------------------------------------------------| | ||
| | --clock-drift | Only show detailed clock drift information. | | ||
| | --summary | Only show cluster summary information. | | ||
| | --health | Only show cluster health information. | | ||
|
||
Only one of the above options can be specified at a time. | ||
|
||
## Examples |
28 changes: 28 additions & 0 deletions
28
product_docs/docs/pgd/5/cli/command_ref/cluster/verify.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
title: pgd cluster verify | ||
navTitle: Verify | ||
--- | ||
|
||
## Synopsis | ||
|
||
The `pgd cluster verify` command is used to verify the configuration of an EDB Postgres Distributed cluster. | ||
|
||
## Syntax | ||
|
||
```plaintext | ||
pgd cluster show [OPTIONS] | ||
``` | ||
|
||
## Options | ||
|
||
The following table lists the options available for the `pgd events show` command: | ||
|
||
| Short | Long | Description | | ||
|-------|------------|------------------------------------------| | ||
| | --settings | Verify Postgres settings in the cluster. | | ||
| | --arch | Verify the cluster architecture | | ||
| | --verbose | Display verbose output. | | ||
|
||
With no option set, both setting and arch are verified by default and output is not verbose. | ||
|
||
## Examples |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: pgd completion | ||
navTitle: Completion | ||
--- | ||
|
||
The `pgd completion` commands are used to manage the completion settings for the EDB Postgres Distributed CLI. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: pgd events | ||
navTitle: Events | ||
--- | ||
|
||
The `pgd events` commands are used to display the events in the EDB Postgres Distributed cluster. | ||
|
||
## Subcommands | ||
|
||
- [show](show): Show events. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
title: pgd events show | ||
navTitle: show | ||
--- | ||
|
||
## Synopsis | ||
|
||
The `pgd events show` command is used to display the events in the EDB Postgres Distributed cluster. With no additional flags, the command displays the 20 most recent events for all nodes and groups. | ||
|
||
## Syntax | ||
|
||
```plaintext | ||
pgd events show [OPTIONS] | ||
``` | ||
|
||
## Options | ||
|
||
The following table lists the options available for the `pgd events show` command: | ||
|
||
| Short | Long | Description | | ||
|-------------|---------------------|---------------------------------------------------------| | ||
| | --node _nodename_ | Only show events for the node with the specified name. | | ||
| | --group _groupname_ | Only show events for the group with the specified name. | | ||
| -n _number_ | --number _number_ | Show the specified number of events. Defaults to 20. | | ||
|
||
## Examples |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
title: pgd group | ||
navTitle: Group | ||
--- | ||
|
||
The `pgd group` commands are used to manage the groups in the EDB Postgres Distributed cluster. | ||
|
||
## Subcommands | ||
|
||
- [show](pgd_group_show): Show group-level information. | ||
- [set-option](pgd_group_set-option): Set group-level options. | ||
- [get-option](pgd_group_get-option): Get group-level options. | ||
- [set-leader](pgd_group_set-leader): Set the leader of a group (perform a switchover). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: pgd groups | ||
navTitle: Groups | ||
--- | ||
|
||
The `pgd groups` commands are used to display the groups in the EDB Postgres Distributed cluster. | ||
|
||
## Subcommands | ||
|
||
- [list](pgd_groups_list): List groups. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
title: pgd node | ||
navTitle: Node | ||
--- | ||
|
||
The `pgd node` commands are used to manage the nodes in the EDB Postgres Distributed cluster. | ||
|
||
## Subcommands | ||
|
||
- [show](pgd_node_show): Show node-level information. | ||
- [set-option](pgd_node_set-option): Set node-level options. | ||
- [get-option](pgd_node_get-option): Get node-level options. | ||
- [upgrade-postgres](pgd_node_upgrade-postgres): Perform a major version upgrade of a PGD Postgres node. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: pgd nodes | ||
navTitle: Nodes | ||
--- | ||
|
||
The `pgd nodes` commands are used to display the nodes in the EDB Postgres Distributed cluster. | ||
|
||
## Subcommands | ||
|
||
- [list](pgd_nodes_list): List nodes. | ||
|
73 changes: 0 additions & 73 deletions
73
product_docs/docs/pgd/5/cli/command_ref/pgd_check-health.mdx
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.