Skip to content

Commit

Permalink
Merge pull request #9053 from tomwilkie/peer_round_trip_time_seconds
Browse files Browse the repository at this point in the history
Documentation/op-guide: fix typo, s/member_round_trip_time/peer_round_trip_time/
  • Loading branch information
gyuho committed Dec 20, 2017
2 parents e49e231 + 13a8634 commit c002559
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Documentation/op-guide/etcd3_alert.rules
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ ANNOTATIONS {

# alert if 99th percentile of round trips take 150ms
ALERT EtcdMemberCommunicationSlow
IF histogram_quantile(0.99, rate(etcd_network_member_round_trip_time_seconds_bucket[5m])) > 0.15
IF histogram_quantile(0.99, rate(etcd_network_peer_round_trip_time_seconds_bucket[5m])) > 0.15
FOR 10m
LABELS {
severity = "warning"
Expand Down
2 changes: 1 addition & 1 deletion Documentation/op-guide/etcd3_alert.rules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ groups:
its file descriptors soon'
summary: file descriptors soon exhausted
- alert: EtcdMemberCommunicationSlow
expr: histogram_quantile(0.99, rate(etcd_network_member_round_trip_time_seconds_bucket[5m]))
expr: histogram_quantile(0.99, rate(etcd_network_peer_round_trip_time_seconds_bucket[5m]))
> 0.15
for: 10m
labels:
Expand Down

0 comments on commit c002559

Please sign in to comment.