| 36 | ) |
| 37 | |
| 38 | type filesystemCollector struct { |
| 39 | ignoredMountPointsPattern *regexp.Regexp |
| 40 | ignoredFSTypesPattern *regexp.Regexp |
| 41 | sizeDesc, freeDesc, availDesc *prometheus.Desc |
| 42 | filesDesc, filesFreeDesc *prometheus.Desc |
| 43 | roDesc, deviceErrorDesc *prometheus.Desc |
| 44 | } |
| 45 | |
| 46 | type filesystemLabels struct { |
| 47 | device, mountPoint, fsType string |
nothing calls this directly
no outgoing calls
no test coverage detected