diff --git a/docs/usage/customization-guide.md b/docs/usage/customization-guide.md index c728508f2..23e49bd36 100644 --- a/docs/usage/customization-guide.md +++ b/docs/usage/customization-guide.md @@ -974,10 +974,10 @@ The following features are available for matching: | | | **`hugepages-`** | string | Total number of huge pages (e.g., `hugepages-1Gi=16`) | | **`network.device`** | instance | | | Physical (non-virtual) network interfaces present in the system | | | | **`name`** | string | Name of the network interface | -| | | **``** | string | Sysfs network interface attribute, available attributes: `operstate`, `speed`, `sriov_numvfs`, `sriov_totalvfs` | +| | | **``** | string | Sysfs network interface attribute, available attributes: `operstate`, `speed`, `sriov_numvfs`, `sriov_totalvfs`, `mtu` | | **`network.virtual`** | instance | | | Virtual network interfaces present in the system | | | | **`name`** | string | Name of the network interface | -| | | **``** | string | Sysfs network interface attribute, available attributes: `operstate`, `speed` | +| | | **``** | string | Sysfs network interface attribute, available attributes: `operstate`, `speed`, `mtu` | | **`pci.device`** | instance | | | PCI devices present in the system | | | | **``** | string | Value of the sysfs device attribute, available attributes: `class`, `vendor`, `device`, `subsystem_vendor`, `subsystem_device`, `sriov_totalvfs`, `iommu_group/type`, `iommu/intel-iommu/version` | | **`storage.block`** | instance | | | Block storage devices present in the system | diff --git a/source/network/network.go b/source/network/network.go index 4039b082d..124668078 100644 --- a/source/network/network.go +++ b/source/network/network.go @@ -60,10 +60,10 @@ var ( var ( // devIfaceAttrs is the list of files under /sys/class/net/ that we're reading - devIfaceAttrs = []string{"operstate", "speed", "device/sriov_numvfs", "device/sriov_totalvfs"} + devIfaceAttrs = []string{"operstate", "speed", "device/sriov_numvfs", "device/sriov_totalvfs", "mtu"} // virtualIfaceAttrs is the list of files under /sys/class/net/ that we're reading - virtualIfaceAttrs = []string{"operstate", "speed"} + virtualIfaceAttrs = []string{"operstate", "speed", "mtu"} ) // Name returns an identifier string for this feature source.