mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-15 11:10:54 +01:00
109 lines
4.0 KiB
PowerShell
109 lines
4.0 KiB
PowerShell
<#
|
|
.SYNOPSIS
|
|
Writes a value with unit and range
|
|
.DESCRIPTION
|
|
This PowerShell script writes the given value with the unit and the value range to the console.
|
|
.PARAMETER value
|
|
Specifies the value
|
|
.EXAMPLE
|
|
PS> ./write-value.ps1 95.0 "°C" 0 10 90 100
|
|
[0--------95°C-100]
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
function GetCPUTemperature {
|
|
$temp = -300 # unsupported
|
|
if ($IsLinux) {
|
|
if (Test-Path "/sys/class/thermal/thermal_zone0/temp" -pathType leaf) {
|
|
[int]$IntTemp = Get-Content "/sys/class/thermal/thermal_zone0/temp"
|
|
$temp = [math]::round($IntTemp / 1000.0, 1)
|
|
}
|
|
} else {
|
|
$objects = Get-WmiObject -Query "SELECT * FROM Win32_PerfFormattedData_Counters_ThermalZoneInformation" -Namespace "root/CIMV2"
|
|
foreach ($object in $objects) {
|
|
$highPrec = $object.HighPrecisionTemperature
|
|
$temp = [math]::round($highPrec / 100.0, 1)
|
|
}
|
|
}
|
|
return $temp
|
|
}
|
|
|
|
function GetUptime {
|
|
if ($IsLinux) {
|
|
$uptime = (Get-Uptime)
|
|
} else {
|
|
$lastBootTime = (Get-CimInstance Win32_OperatingSystem).LastBootUpTime
|
|
$uptime = New-TimeSpan -Start $lastBootTime -End (Get-Date)
|
|
}
|
|
return $uptime.Days
|
|
}
|
|
|
|
function WriteValueInRange([float]$value, [string]$unit, [float]$redMin, [float]$yellowMin, [float]$yellowMax, [float]$redMax) {
|
|
$line = "------------------------------------------------"
|
|
$text = "[$redMin$($value)$unit $redMax]"
|
|
[float]$total = 20.0 - $text.Length
|
|
if ($value -gt $redMax) {
|
|
Write-Host "[$redMin$($line.Substring(0, $total))$redMax]" -noNewline
|
|
Write-Host "$($value)$unit " -noNewline -foregroundColor red
|
|
} elseif ($value -lt $redMin) {
|
|
Write-Host "$($value)$unit" -noNewline -foregroundColor red
|
|
Write-Host "[$redMin$($line.Substring(0, $total))$redMax] " -noNewline
|
|
} else {
|
|
[float]$leftSide = (($value - $redMin) * $total) / ($redMax - $redMin)
|
|
if ($leftSide -lt 1.0) { $leftSide = 1.0 }
|
|
if ($leftSide -gt ($total - 1.0)) { $leftSide = $total - 1.0 }
|
|
Write-Host "[$redMin$($line.Substring(0, $leftSide))" -noNewline
|
|
if (($value -lt $yellowMin) -or ($value -gt $yellowMax)) {
|
|
Write-Host "$($value)$unit" -noNewline -foregroundColor yellow
|
|
} else {
|
|
Write-Host "$($value)$unit" -noNewline -foregroundColor green
|
|
}
|
|
Write-Host "$($line.Substring(0, $total - $leftSide + 0.49))$redMax] " -noNewline
|
|
}
|
|
}
|
|
|
|
try {
|
|
do {
|
|
[int]$Time = Get-Date -format "HHmm"
|
|
[int]$TimeZone = Get-Date -format "zz"
|
|
$CPUtemp = GetCPUTemperature
|
|
$numCores = $env:NUMBER_OF_PROCESSORS
|
|
$numProcesses = (Get-Process).Count
|
|
$load = "{0}" -f $(Get-WmiObject Win32_Processor | Measure-Object -Property LoadPercentage -Average | Select-Object -ExpandProperty Average)
|
|
$DriveDetails = Get-PSDrive C
|
|
$DiskUse = [math]::round($DriveDetails.Used / 1GB)
|
|
$DiskSize = [math]::round(($DriveDetails.Used + $DriveDetails.Free) / 1GB)
|
|
$numDaysUp = GetUptime
|
|
|
|
Clear-Host
|
|
Write-Host "Host $env:COMPUTERNAME"
|
|
Write-Host "=================="
|
|
Write-Host "`n* TIME " -noNewline
|
|
WriteValueInRange $Time "" 0 0 2400 2400
|
|
Write-Host "`n* ZONE " -noNewline
|
|
WriteValueInRange $TimeZone "" -23 -23 23 23
|
|
if ($CPUtemp -ne -300) {
|
|
Write-Host "`n* CPU " -noNewline
|
|
WriteValueInRange $CPUtemp "°C" 0 10 80 100
|
|
}
|
|
Write-Host "`n* CPU " -noNewline
|
|
WriteValueInRange $numCores " cores" 0 0 100 100
|
|
Write-Host "`n* LOAD " -noNewline
|
|
WriteValueInRange $load "%" 0 0 90 100
|
|
Write-Host "`n* PROC " -noNewline
|
|
WriteValueInRange $numProcesses "" 0 10 900 1000
|
|
Write-Host "`n* DISK " -noNewline
|
|
WriteValueInRange $DiskUse "GB" 0 0 $DiskSize $DiskSize
|
|
Write-Host "`n* UP " -noNewline
|
|
WriteValueInRange $numDaysUp " days" 0 0 900 1000
|
|
|
|
|
|
Start-Sleep -milliseconds 5000
|
|
} while ($true)
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
} |