Often, you will need to transpose columns to rows in order to deliver data to the staging db or fact table. When this need arises, the UNION ALL operator in SQL is your friend.
The following statement will accomplish this for you: (Table examples can be found by clicking the "more" link below)
SELECT ResourceID, 'OSStatus' AS KPIName, OSStatus AS KPIValue
FROM dbo.ViewOrTable
UNION ALL
SELECT ResourceID, 'CPUStatus' AS KPIName, CpuStatus
FROM dbo.ViewOrTable AS ViewOrTable_1
UNION ALL
SELECT ResourceID, 'ProcessorStatus' AS KPIName, ProcessorStatus
FROM ...