add one useful query

This commit is contained in:
Anton Kaliaev 2018-06-15 17:38:46 +04:00
parent e90cb4f5fa
commit bba2862498
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 8 additions and 0 deletions

View File

@ -24,3 +24,11 @@ to enable it.
| consensus_total_txs | Gauge | Total number of transactions committed |
| consensus_block_size | Gauge | Block size in bytes |
| p2p_peers | Gauge | Number of peers node's connected to |
## Useful queries
Percentage of missing + byzantine validators:
```
((consensus_byzantine_validators_power + consensus_missing_validators_power) / consensus_validators_power) * 100
```