hardware.WinStorageSpaces.logicalDiskCollect.awk Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metricshub-community-connectors
Show all versions of metricshub-community-connectors
MetricsHub Community Connector Repository
The newest version!
BEGIN {
FS = ";"
alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
}
{
if ($2 > 64 && $2 < 91) {
deviceId = substr(alphabet, int($2) - 64, 1) ":"
} else {
deviceId = $1
}
print "MSHW;" deviceId ";" $3 ";" $4 ";" $5
}