summaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/sentinel-masters.json12
-rw-r--r--src/commands/sentinel-myid.json6
-rw-r--r--src/commands/sentinel-sentinels.json10
-rw-r--r--src/commands/sentinel-slaves.json10
4 files changed, 36 insertions, 2 deletions
diff --git a/src/commands/sentinel-masters.json b/src/commands/sentinel-masters.json
index 0b6e15b63..1e96b7105 100644
--- a/src/commands/sentinel-masters.json
+++ b/src/commands/sentinel-masters.json
@@ -11,6 +11,16 @@
"ADMIN",
"SENTINEL",
"ONLY_SENTINEL"
- ]
+ ],
+ "reply_schema": {
+ "type": "array",
+ "description": "List of monitored Redis masters, and their state.",
+ "items": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ }
+ }
+ }
}
}
diff --git a/src/commands/sentinel-myid.json b/src/commands/sentinel-myid.json
index a49c78bd9..4d366ebf3 100644
--- a/src/commands/sentinel-myid.json
+++ b/src/commands/sentinel-myid.json
@@ -11,6 +11,10 @@
"ADMIN",
"SENTINEL",
"ONLY_SENTINEL"
- ]
+ ],
+ "reply_schema": {
+ "description": "Node ID of the sentinel instance.",
+ "type": "string"
+ }
}
}
diff --git a/src/commands/sentinel-sentinels.json b/src/commands/sentinel-sentinels.json
index 3a2c7362a..fdaa5cb99 100644
--- a/src/commands/sentinel-sentinels.json
+++ b/src/commands/sentinel-sentinels.json
@@ -12,6 +12,16 @@
"SENTINEL",
"ONLY_SENTINEL"
],
+ "reply_schema": {
+ "type": "array",
+ "description": "List of sentinel instances, and their state.",
+ "items": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ }
+ }
+ },
"arguments": [
{
"name": "master-name",
diff --git a/src/commands/sentinel-slaves.json b/src/commands/sentinel-slaves.json
index 83ee44d16..c1fec41bb 100644
--- a/src/commands/sentinel-slaves.json
+++ b/src/commands/sentinel-slaves.json
@@ -17,6 +17,16 @@
"SENTINEL",
"ONLY_SENTINEL"
],
+ "reply_schema": {
+ "type": "array",
+ "description": "List of monitored replicas, and their state.",
+ "items": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ }
+ }
+ },
"arguments": [
{
"name": "master-name",