File tree 2 files changed +3
-3
lines changed
kubert-prometheus-process
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " kubert-prometheus-process"
3
- version = " 0.2.2 "
3
+ version = " 0.2.3 "
4
4
edition = " 2021"
5
5
license = " Apache-2.0"
6
6
description = " A prometheus-client process metrics collector"
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ impl Collector for System {
143
143
Ok ( ProcNetstat { ip_ext, .. } ) => {
144
144
let recv_bytes = ConstCounter :: new ( ip_ext. in_octets . unwrap_or_default ( ) ) ;
145
145
let rbe = encoder. encode_descriptor (
146
- "network_receive_bytes_total " ,
146
+ "network_receive " ,
147
147
"Number of bytes received by the process over the network" ,
148
148
Some ( & Unit :: Bytes ) ,
149
149
MetricType :: Counter ,
@@ -152,7 +152,7 @@ impl Collector for System {
152
152
153
153
let transmit_bytes = ConstCounter :: new ( ip_ext. out_octets . unwrap_or_default ( ) ) ;
154
154
let tbe = encoder. encode_descriptor (
155
- "network_transmit_bytes_total " ,
155
+ "network_transmit " ,
156
156
"Number of bytes sent by the process over the network" ,
157
157
Some ( & Unit :: Bytes ) ,
158
158
MetricType :: Counter ,
You can’t perform that action at this time.
0 commit comments