Navigation Menu

Skip to content

Commit

Permalink
Add "reporter" field to examples of system.status results
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Apr 23, 2015
1 parent 34cfe46 commit 575e0cf
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions tutorial/1.1.0/add-replica/index.md
Expand Up @@ -92,7 +92,8 @@ $ curl "http://node0:10041/droonga/system/status" | jq "."
"node1:10031/droonga": {
"live": true
}
}
},
"reporter": "..."
}
$ curl "http://node1:10041/droonga/system/status" | jq "."
{
Expand All @@ -103,15 +104,17 @@ $ curl "http://node1:10041/droonga/system/status" | jq "."
"node1:10031/droonga": {
"live": true
}
}
},
"reporter": "..."
}
$ curl "http://node2:10041/droonga/system/status" | jq "."
{
"nodes": {
"node2:10031/droonga": {
"live": true
}
}
},
"reporter": "..."
}
~~~

Expand Down Expand Up @@ -192,7 +195,8 @@ $ curl "http://node0:10041/droonga/system/status" | jq "."
"node2:10031/droonga": {
"live": true
}
}
},
"reporter": "..."
}
~~~

Expand Down Expand Up @@ -252,7 +256,8 @@ $ curl "http://node0:10041/droonga/system/status" | jq "."
"node1:10031/droonga": {
"live": true
}
}
},
"reporter": "..."
}
$ curl "http://node1:10041/droonga/system/status" | jq "."
{
Expand All @@ -263,15 +268,17 @@ $ curl "http://node1:10041/droonga/system/status" | jq "."
"node1:10031/droonga": {
"live": true
}
}
},
"reporter": "..."
}
$ curl "http://node2:10041/droonga/system/status" | jq "."
{
"nodes": {
"node2:10031/droonga": {
"live": true
}
}
},
"reporter": "..."
}
~~~

Expand Down Expand Up @@ -306,7 +313,8 @@ $ curl "http://node0:10041/droonga/system/status" | jq "."
"node0:10031/droonga": {
"live": true
}
}
},
"reporter": "..."
}
~~~

Expand Down Expand Up @@ -357,7 +365,8 @@ $ curl "http://node0:10041/droonga/system/status" | jq "."
"node2:10031/droonga": {
"live": true
}
}
},
"reporter": "..."
}
$ curl "http://node2:10041/droonga/system/status" | jq "."
{
Expand All @@ -368,7 +377,8 @@ $ curl "http://node2:10041/droonga/system/status" | jq "."
"node2:10031/droonga": {
"live": true
}
}
},
"reporter": "..."
}
~~~

Expand Down

0 comments on commit 575e0cf

Please sign in to comment.