Skip to content

Commit

Permalink
fix: Fix typo in infra.awsnlb.failedClientNlbTlsHandshakes (#95)
Browse files Browse the repository at this point in the history
There is one too many open paren's in the select clause.
  • Loading branch information
rcrocker authored Feb 23, 2021
1 parent 110e25e commit 871953b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions definitions/infra-awsnlb/golden_metrics.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
failedClientNlbTlsHandshakes:
title: Failed client-NLB TLS handshakes
query:
select: rate((sum(provider.clientTlsNegotiationErrorCount.Sum),1 minute)
select: rate(sum(provider.clientTlsNegotiationErrorCount.Sum),1 minute)
from: LoadBalancerSample
where: provider='Nlb'
eventId: entityGuid
Expand Down Expand Up @@ -30,4 +30,4 @@ concurrentTlsFlows:
where: provider='Nlb'
eventId: entityGuid
facet: entityName


0 comments on commit 871953b

Please sign in to comment.