-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
standardize between interface and device for network metric labels #1223
Labels
Comments
It looks like we missed this when reviewing the netclass collector (#851). |
Good catch! |
discordianfish
added a commit
that referenced
this issue
Jan 5, 2019
This makes it consistent with other networking metrics like node_network_receive_bytes_total This closes #1223 Signed-off-by: Johannes 'fish' Ziemke <github@freigeist.org>
SuperQ
pushed a commit
that referenced
this issue
Feb 6, 2019
* Rename interface to device in netclass collector This makes it consistent with other networking metrics like node_network_receive_bytes_total This closes #1223 Signed-off-by: Johannes 'fish' Ziemke <github@freigeist.org>
Can we get a release cut for this fix? |
Yes, we have a couple of cleanup items I want to get in before the next release. |
oblitorum
pushed a commit
to shatteredsilicon/node_exporter
that referenced
this issue
Apr 9, 2024
* Rename interface to device in netclass collector This makes it consistent with other networking metrics like node_network_receive_bytes_total This closes prometheus#1223 Signed-off-by: Johannes 'fish' Ziemke <github@freigeist.org>
oblitorum
pushed a commit
to shatteredsilicon/node_exporter
that referenced
this issue
Apr 9, 2024
* Rename interface to device in netclass collector This makes it consistent with other networking metrics like node_network_receive_bytes_total This closes prometheus#1223 Signed-off-by: Johannes 'fish' Ziemke <github@freigeist.org>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Host operating system: output of
uname -a
node_exporter version: output of
node_exporter --version
node_exporter command line flags
Are you running node_exporter in Docker?
No
What did you do that produced an error?
Running node_exporter with the above options
What did you expect to see?
I expected to see that the metrics
node_network_speed_bytes
andnode_network_receive_bytes_total
would have the same way of accessing an interface name.What did you see instead?
node_network_speed_bytes
usesinterface
whereasnode_network_receive_bytes_total
usesdevice
. I think that this should be consistent between all network metrics. It looks like the metrics pulled from/sys/class/net/<iface>
useinterface
.The text was updated successfully, but these errors were encountered: