Daniel Swarbrick
Daniel Swarbrick
> Unfortunately it requires root, see the man page for [`/dev/cpu//msr`](https://man7.org/linux/man-pages/man4/msr.4.html): > > > This file is protected so that it can be read and written only by the user...
Are the contents of /sys/block/md*/md closer to that of the traditional md module? There was an github issue floating around a few years ago about migrating the mdraid parser from...
I guess it stands to reason that if they're not using the standard Linux mdraid module, the associated sysfs entries won't be there either. It looks like you're not the...
You can simply join the metrics in your promql query to get the `label` label included in the results, e.g.: ``` node_hwmon_temp_celsius * on (instance, chip, sensor) group_left (label) node_hwmon_sensor_label...
The relationship between `node_hwmon_temp_celsius` and `node_hwmon_sensor_label` is not always 1:1. Most systems have more `node_hwmon_temp_celsius` metrics (usually with `chip="thermal_thermal_zoneNN"`) than `node_hwmon_sensor_label` metrics. In other words, not all hwmon temperature sensors...
Apparently not always the case: ``` $ ll /sys/class/hwmon/hwmon4/ total 0 drwxr-xr-x 3 root root 0 Apr 23 05:45 ./ drwxr-xr-x 4 root root 0 Apr 23 05:45 ../ lrwxrwxrwx...
No, not currently. A good starting point would be exposing `/sys/block/*/size`, which is measured in 512-byte sectors (regardless of block device actual sector size).
You're actually pretty fortunate if your interface OIDs don't change, since service provider environments are pretty dynamic and will have virtual interfaces come and go over time, hence the need...
I see `pduInputPhaseStatusTable` defined in your attached apc_cpdu_v1_3.mib.txt, so the most likely reason you are getting that error is that you have not configured netsnmp how to find that MIB...
I am able to reproduce the generator error with an extremely bare-bones generator.yml: ```yaml modules: apc_10000: walk: - pduInputPhaseStatusTable ``` The error occurs when both **apc_cpdu_v1_3.mib.txt** _and_ **powernet446.mib.txt** are present...