-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add
ABCIMethodLatency
histogram [BLO-791] (#26)
* Add ABCIMethodLatency Histogram * instrument Prepare/ProcessProposal * testing * integration tests * fix docker-build * report latencies in all cases * extra tests
- Loading branch information
Showing
13 changed files
with
316 additions
and
125 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 |
---|---|---|
@@ -1,2 +1 @@ | ||
go.work* | ||
go.sum |
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
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
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
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,22 @@ | ||
# Oracle Application / Service Metrics | ||
|
||
## `oracle_response_latency` | ||
|
||
* **purpose** | ||
* This prometheus histogram measures the RTT time taken (per request) from the `metrics_client`'s request to the oracle's server's response. | ||
* Observations from this histogram are measured in nano-seconds | ||
|
||
## `oracle_responses` | ||
|
||
* **purpose** | ||
* This prometheus counter measures the the # of oracle responses that a `metrics_client` has received | ||
* **labels** | ||
* `status` := (failure, success) | ||
|
||
## `oracle_ABCI_method_latency` | ||
|
||
* **purpose** | ||
* This prometheus histogram measures the latency (per request) in seconds of ABCI method calls | ||
* The latency is measured over all of the slinky-specific code, and ignores any down-stream dependencies | ||
* **labels** | ||
* `method`: one of (ExtendVote, PrepareProposal, ProcessProposal, VerifyVoteExtension, FinalizeBlock), this is the ABCI method that this latency report resulted from |
Oops, something went wrong.