Skip to content

Commit 13e7733

Browse files
committed
fix(process): fix network_receive and network_transmit metric names
1 parent 0aa68ab commit 13e7733

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

kubert-prometheus-process/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kubert-prometheus-process"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "A prometheus-client process metrics collector"

kubert-prometheus-process/src/linux.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ impl Collector for System {
143143
Ok(ProcNetstat { ip_ext, .. }) => {
144144
let recv_bytes = ConstCounter::new(ip_ext.in_octets.unwrap_or_default());
145145
let rbe = encoder.encode_descriptor(
146-
"network_receive_bytes_total",
146+
"network_receive",
147147
"Number of bytes received by the process over the network",
148148
Some(&Unit::Bytes),
149149
MetricType::Counter,
@@ -152,7 +152,7 @@ impl Collector for System {
152152

153153
let transmit_bytes = ConstCounter::new(ip_ext.out_octets.unwrap_or_default());
154154
let tbe = encoder.encode_descriptor(
155-
"network_transmit_bytes_total",
155+
"network_transmit",
156156
"Number of bytes sent by the process over the network",
157157
Some(&Unit::Bytes),
158158
MetricType::Counter,

0 commit comments

Comments
 (0)