File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
app/outbound/src/http/logical/policy/route/backend Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ impl<L: StreamLabel> RouteBackendMetrics<L> {
110110 & self ,
111111 l : & labels:: RouteBackend ,
112112 ) -> linkerd_http_prom:: body_data:: response:: BodyDataMetrics {
113- self . body_metrics . get ( l)
113+ self . body_metrics . metrics ( l)
114114 }
115115}
116116
@@ -156,6 +156,6 @@ where
156156 let Self ( families) = self ;
157157 let labels = labels:: RouteBackend ( t. param ( ) , t. param ( ) , t. param ( ) ) ;
158158
159- families. get ( & labels)
159+ families. metrics ( & labels)
160160 }
161161}
Original file line number Diff line number Diff line change 7777 }
7878
7979 /// Returns the [`BodyDataMetrics`] for the given label set.
80- pub fn get ( & self , labels : & L ) -> BodyDataMetrics {
80+ pub fn metrics ( & self , labels : & L ) -> BodyDataMetrics {
8181 let Self {
8282 resp_body_frames_total,
8383 resp_body_frames_bytes,
You can’t perform that action at this time.
0 commit comments