You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Help: "Lowest RTT measured on a connection in millisec",
131
134
},
132
-
clientConnLabels,
135
+
[]string{ConnectionIndexMetricLabel},
133
136
),
134
137
latestRTT: prometheus.NewGaugeVec(
135
138
prometheus.GaugeOpts{
@@ -138,7 +141,7 @@ var (
138
141
Name: "latest_rtt",
139
142
Help: "Latest RTT measured on a connection",
140
143
},
141
-
clientConnLabels,
144
+
[]string{ConnectionIndexMetricLabel},
142
145
),
143
146
smoothedRTT: prometheus.NewGaugeVec(
144
147
prometheus.GaugeOpts{
@@ -147,7 +150,7 @@ var (
147
150
Name: "smoothed_rtt",
148
151
Help: "Calculated smoothed RTT measured on a connection in millisec",
149
152
},
150
-
clientConnLabels,
153
+
[]string{ConnectionIndexMetricLabel},
151
154
),
152
155
mtu: prometheus.NewGaugeVec(
153
156
prometheus.GaugeOpts{
@@ -156,7 +159,7 @@ var (
156
159
Name: "mtu",
157
160
Help: "Current maximum transmission unit (MTU) of a connection",
158
161
},
159
-
clientConnLabels,
162
+
[]string{ConnectionIndexMetricLabel},
160
163
),
161
164
congestionWindow: prometheus.NewGaugeVec(
162
165
prometheus.GaugeOpts{
@@ -165,7 +168,7 @@ var (
165
168
Name: "congestion_window",
166
169
Help: "Current congestion window size",
167
170
},
168
-
clientConnLabels,
171
+
[]string{ConnectionIndexMetricLabel},
169
172
),
170
173
congestionState: prometheus.NewGaugeVec(
171
174
prometheus.GaugeOpts{
@@ -174,13 +177,13 @@ var (
174
177
Name: "congestion_state",
175
178
Help: "Current congestion control state. See https://pkg.go.dev/github.com/quic-go/[email protected]/logging#CongestionState for what each value maps to",
0 commit comments