Merge pull request #535 from kklipsch/client_example_fix

fix client trace examples to actually capture metrics
This commit is contained in:
Björn Rabenstein 2019-02-05 00:33:00 +01:00 committed by GitHub
commit 7190de1ef2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -74,16 +74,16 @@ func TestClientMiddlewareAPI(t *testing.T) {
trace := &InstrumentTrace{
DNSStart: func(t float64) {
dnsLatencyVec.WithLabelValues("dns_start")
dnsLatencyVec.WithLabelValues("dns_start").Observe(t)
},
DNSDone: func(t float64) {
dnsLatencyVec.WithLabelValues("dns_done")
dnsLatencyVec.WithLabelValues("dns_done").Observe(t)
},
TLSHandshakeStart: func(t float64) {
tlsLatencyVec.WithLabelValues("tls_handshake_start")
tlsLatencyVec.WithLabelValues("tls_handshake_start").Observe(t)
},
TLSHandshakeDone: func(t float64) {
tlsLatencyVec.WithLabelValues("tls_handshake_done")
tlsLatencyVec.WithLabelValues("tls_handshake_done").Observe(t)
},
}