sergey-safarov commented on issue #286:
URL: https://github.com/apache/couchdb-docker/issues/286#issuecomment-3754469461
To get request couner on current node can be used next curl command
```sh
curl -s -u admin:pass \
http://127.0.0.1:5984/_node/_local/_stats/couchdb/httpd/requests| jq
{
"value": 20569549,
"type": "counter",
"desc": "number of HTTP requests"
}
```
@willholley could you suggest RPC command to get same value?
And probable this counter can be saved in variable and checked again after
grace period. If counter does not increased, then exit from the script.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]