-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShow-SystemResourceMonitor.ps1
More file actions
2730 lines (2329 loc) · 97.6 KB
/
Copy pathShow-SystemResourceMonitor.ps1
File metadata and controls
2730 lines (2329 loc) · 97.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
function Show-SystemResourceMonitor
{
<#
.SYNOPSIS
Displays a visual monitor for CPU, memory, disk, and network activity.
.DESCRIPTION
Collects core system resource metrics and renders them in a compact, visual
dashboard using text bars and history sparklines. Includes network activity
throughput using cross-platform .NET interface counters. Works on Windows,
macOS, and Linux with platform-specific collection logic and safe fallbacks.
By default, the function refreshes continuously until interrupted with
Q or Ctrl+C. Use -NoContinuous to render a single dashboard snapshot.
Continuous mode includes refresh timestamps for better visibility.
Use -AsObject for structured output suitable for scripts and automation.
Dashboard status includes an overall health grade (A-F), status icon, findings
summary, and collection elapsed time.
Top process details are included by default. Use -NoTopProcesses to
hide the busiest running processes section.
Use -TopProcessName to filter process rows by wildcard name patterns.
Use -MonitorProcessName to scope resource charts to matching processes.
.PARAMETER NoContinuous
Disables continuous refresh and renders a single snapshot.
.PARAMETER IntervalSeconds
Number of seconds to wait between updates in continuous mode.
.PARAMETER BarWidth
Width of the visual usage bars.
.PARAMETER HistoryLength
Number of historical points to keep for sparkline trend rendering.
.PARAMETER NoColor
Disables ANSI color output.
.PARAMETER Ascii
Forces ASCII-only rendering for maximum terminal compatibility.
.PARAMETER AsObject
Returns structured metric objects instead of rendered dashboard text.
.PARAMETER NoTopProcesses
Hides top running process details from dashboard and object output.
.PARAMETER TopProcessCount
Number of top processes to include when top processes are enabled.
.PARAMETER TopProcessName
One or more wildcard patterns used to filter top process names.
Example: 'pwsh*' or @('chrome*', 'Code*').
.PARAMETER MonitorProcessName
One or more wildcard patterns used to scope monitor visualizations.
When specified, CPU and memory metrics are calculated from matching
processes only. Disk and network are shown as n/a in this scoped mode.
Plain names without wildcard characters are treated as contains matches.
.PARAMETER MaxIterations
Maximum number of iterations for continuous mode. 0 means unlimited.
Primarily useful for testing and automation.
.EXAMPLE
PS > Show-SystemResourceMonitor
System Resource Monitor 27.0% OK [A] ✓
───────────────────────────────────────────────────────────────────────────────────────────
CPU [███▊░░░░░░░░░░░░░░░░░░░░░░░░░░░░] 12.0% OK ↗ ▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂ 1.4/12.0 logical cores busy
Memory [█████████▌░░░░░░░░░░░░░░░░░░░░░░] 30.0% OK → ▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃ 7.1/24.0 GiB
Disk [████████████▏░░░░░░░░░░░░░░░░░░░] 38.0% OK → ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ 173.7/460.4 GiB on / (root fs)
Network [█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░] 3.0% IDLE ↘ ▂▂▄▁▁▁▁▁▁▁▁▁▁▂▃▁▂▁▁▂▁█▁▁ In 886 B/s | Out 0 B/s | Total 886 B/s
───────────────────────────────────────────────────────────────────────────────────────────
Status [Platform] macOS │ [Updated] 2026-04-30 12:55:08 │ [Collect] 319.1ms
History [Window] 24 samples │ [Order] oldest → newest
│ [Trend] ↗ up | → steady | ↘ down
Findings [Issues] none
───────────────────────────────────────────────────────────────────────────────────────────
Top Processes (limit: 5)
mediaanalysisd PID 874 CPU 2,139.0s MEM 65.5 MiB
duetexpertd PID 657 CPU 1,008.0s MEM 62.2 MiB
Little Snitch A... PID 844 CPU 752.0s MEM 54.0 MiB
loginwindow PID 401 CPU 713.0s MEM 41.5 MiB
fileproviderd PID 635 CPU 679.0s MEM 18.8 MiB
───────────────────────────────────────────────────────────────────────────────────────────
Press Q or Ctrl+C to stop monitor.
.EXAMPLE
PS > Show-SystemResourceMonitor -NoContinuous
Displays a single visual snapshot of system resource usage.
.EXAMPLE
PS > Show-SystemResourceMonitor -IntervalSeconds 2
Continuously monitors system resources, refreshing every 2 seconds.
.EXAMPLE
PS > Show-SystemResourceMonitor -AsObject -NoContinuous | Format-List
Returns structured metric data for scripting.
.EXAMPLE
PS > Show-SystemResourceMonitor -Ascii
Runs the monitor continuously using ASCII-safe visualization glyphs.
.EXAMPLE
PS > Show-SystemResourceMonitor -TopProcessCount 5
Displays the dashboard with a top processes section.
.EXAMPLE
PS > Show-SystemResourceMonitor -TopProcessName 'pwsh*'
Displays only top processes whose names match the wildcard filter.
.EXAMPLE
PS > Show-SystemResourceMonitor -NoTopProcesses
Runs the monitor without rendering top process details.
.EXAMPLE
PS > Show-SystemResourceMonitor -MonitorProcessName 'pwsh*'
Displays a scoped view where matching processes drive resource charts.
.OUTPUTS
System.String
System.Management.Automation.PSCustomObject
.NOTES
Author: Jon LaBelle
License: MIT
Source: https://github.com/jonlabelle/pwsh-profile/blob/main/Functions/SystemAdministration/Show-SystemResourceMonitor.ps1
.LINK
https://github.com/jonlabelle/pwsh-profile/blob/main/Functions/SystemAdministration/Show-SystemResourceMonitor.ps1
#>
[CmdletBinding()]
[OutputType([System.String], [PSCustomObject])]
param(
[Parameter()]
[Switch]$NoContinuous,
[Parameter()]
[ValidateRange(1, 3600)]
[Int32]$IntervalSeconds = 2,
[Parameter()]
[ValidateRange(10, 120)]
[Int32]$BarWidth = 32,
[Parameter()]
[ValidateRange(5, 120)]
[Int32]$HistoryLength = 24,
[Parameter()]
[Switch]$NoColor,
[Parameter()]
[Switch]$Ascii,
[Parameter()]
[Switch]$AsObject,
[Parameter()]
[Switch]$NoTopProcesses,
[Parameter()]
[ValidateRange(1, 20)]
[Int32]$TopProcessCount = 5,
[Parameter()]
[String[]]$TopProcessName,
[Parameter()]
[String[]]$MonitorProcessName,
[Parameter(DontShow = $true)]
[ValidateRange(0, [Int32]::MaxValue)]
[Int32]$MaxIterations = 0,
[Parameter(DontShow = $true)]
[ValidateRange(0, [Int32]::MaxValue)]
[Int32]$MaxDashboardLines = 0
)
begin
{
# Platform detection compatible with both Windows PowerShell 5.1 and PowerShell Core.
$isWindowsPlatform = if ($PSVersionTable.PSVersion.Major -lt 6) { $true } else { $IsWindows }
$isMacOSPlatform = if ($PSVersionTable.PSVersion.Major -lt 6) { $false } else { $IsMacOS }
$isLinuxPlatform = if ($PSVersionTable.PSVersion.Major -lt 6) { $false } else { $IsLinux }
$platformName = if ($isWindowsPlatform) { 'Windows' }
elseif ($isMacOSPlatform) { 'macOS' }
elseif ($isLinuxPlatform) { 'Linux' }
else { 'Unknown' }
$cpuFallbackState = @{
Timestamp = $null
TotalCpuSeconds = $null
}
$networkActivityState = @{
Timestamp = $null
TotalBytesReceived = $null
TotalBytesSent = $null
}
$processScopeCpuState = @{
Timestamp = $null
TotalCpuSeconds = $null
}
$cpuHistory = New-Object 'System.Collections.Generic.List[double]'
$memoryHistory = New-Object 'System.Collections.Generic.List[double]'
$diskHistory = New-Object 'System.Collections.Generic.List[double]'
$networkThroughputHistory = New-Object 'System.Collections.Generic.List[double]'
$topProcessNameFilters = @(
@($TopProcessName) |
Where-Object { -not [String]::IsNullOrWhiteSpace($_) } |
ForEach-Object { $_.Trim() }
)
$monitorProcessNameFilters = @(
@($MonitorProcessName) |
Where-Object { -not [String]::IsNullOrWhiteSpace($_) } |
ForEach-Object { $_.Trim() }
)
$monitorProcessNameMatchFilters = @(
$monitorProcessNameFilters |
ForEach-Object {
if ($_ -match '[\*\?\[]')
{
$_
}
else
{
'*' + $_ + '*'
}
}
)
$effectiveTopProcessNameFilters = @($topProcessNameFilters)
$effectiveTopProcessNameMatchFilters = @($topProcessNameFilters)
if ($effectiveTopProcessNameFilters.Count -eq 0 -and $monitorProcessNameFilters.Count -gt 0)
{
$effectiveTopProcessNameFilters = @($monitorProcessNameFilters)
$effectiveTopProcessNameMatchFilters = @($monitorProcessNameMatchFilters)
}
$isContinuousMode = -not $NoContinuous
$includeTopProcesses = -not $NoTopProcesses
# Detect whether the host supports non-blocking key reads. Used to poll for 'q' during interval sleeps.
$rawUiAvailable = $false
try
{
# [Console]::KeyAvailable throws InvalidOperationException when stdin is redirected,
# which is the correct signal to fall back to plain sleep.
$null = [Console]::KeyAvailable
$rawUiAvailable = $true
}
catch
{
$rawUiAvailable = $false
}
$outputIsRedirected = $true
try
{
$outputIsRedirected = [Console]::IsOutputRedirected
}
catch
{
$outputIsRedirected = $true
}
$canClearHost = $false
try
{
$canClearHost = [Environment]::UserInteractive -and -not $outputIsRedirected
}
catch
{
$canClearHost = $false
}
$hostSupportsVirtualTerminal = $false
$hasUsableAnsiTerm = $false
$supportsAnsiControl = $false
if ($PSVersionTable.PSVersion.Major -ge 6 -and -not $outputIsRedirected)
{
try
{
$termName = [Environment]::GetEnvironmentVariable('TERM')
$hasTerm = -not [String]::IsNullOrWhiteSpace($termName)
$hasUsableAnsiTerm = $hasTerm -and $termName -ne 'dumb'
$hasValidBuffer = $false
if ($Host.UI -and $Host.UI.RawUI)
{
$hasValidBuffer = [Int32]$Host.UI.RawUI.BufferSize.Width -gt 0
}
$hostSupportsVirtualTerminal = [Boolean]($Host.UI -and $Host.UI.SupportsVirtualTerminal)
$supportsAnsiControl = [Boolean]($hostSupportsVirtualTerminal -or ((-not $isWindowsPlatform) -and ($hasUsableAnsiTerm -or $hasValidBuffer)))
}
catch
{
$supportsAnsiControl = $false
}
}
$supportsAnsi = $false
if (-not $NoColor)
{
try
{
if ($PSVersionTable.PSVersion.Major -ge 7 -and ($hostSupportsVirtualTerminal -or ((-not $isWindowsPlatform) -and $hasUsableAnsiTerm)))
{
$supportsAnsi = $true
}
}
catch
{
$supportsAnsi = $false
}
}
$supportsUnicode = -not $Ascii
if ($supportsUnicode)
{
try
{
$outputEncoding = [Console]::OutputEncoding
if ($null -eq $outputEncoding)
{
$supportsUnicode = $false
}
elseif ($outputEncoding.WebName -notmatch 'utf-8|utf-16|unicode')
{
$supportsUnicode = $false
}
}
catch
{
$supportsUnicode = $false
}
}
$ansiReset = if ($supportsAnsi) { "$([char]27)[0m" } else { '' }
$statusIcons = @{
Healthy = if ($supportsUnicode) { [String][char]0x2713 } else { '+' }
Warning = if ($supportsUnicode) { [String][char]0x26A0 } else { '!' }
Critical = if ($supportsUnicode) { [String][char]0x2717 } else { 'x' }
}
function Add-HistoryValue
{
param(
[AllowEmptyCollection()]
[System.Collections.Generic.List[double]]$History,
[Parameter()]
[Nullable[Double]]$Value,
[Parameter(Mandatory)]
[Int32]$MaxLength
)
if ($null -eq $Value)
{
[void]$History.Add([Double]::NaN)
}
else
{
[void]$History.Add([Double]$Value)
}
while ($History.Count -gt $MaxLength)
{
$History.RemoveAt(0)
}
}
function ConvertTo-Sparkline
{
param(
[Parameter(Mandatory)]
[Double[]]$Values
)
if ($supportsUnicode)
{
$levels = @(
[String][char]0x2581,
[String][char]0x2582,
[String][char]0x2583,
[String][char]0x2584,
[String][char]0x2585,
[String][char]0x2586,
[String][char]0x2587,
[String][char]0x2588
)
$missing = [String][char]0x2591
}
else
{
$levels = @('_', '.', ':', '-', '=', '+', '*', '#', '%', '@')
$missing = '?'
}
$chars = foreach ($value in $Values)
{
if ([Double]::IsNaN($value))
{
$missing
continue
}
$normalized = [Math]::Max(0, [Math]::Min(100, $value))
$index = [Math]::Round(($normalized / 100) * ($levels.Count - 1))
$levels[[Int32]$index]
}
-join $chars
}
function ConvertTo-UsageBar
{
param(
[Parameter()]
[Nullable[Double]]$Percent,
[Parameter(Mandatory)]
[Int32]$Width,
[Parameter()]
[Switch]$UseZeroFillWhenUnknown
)
if ($null -eq $Percent)
{
if (-not $UseZeroFillWhenUnknown)
{
return '[' + ('?' * $Width) + ']'
}
}
$percentForBar = if ($null -eq $Percent) { 0.0 } else { [Double]$Percent }
$clamped = [Math]::Max(0, [Math]::Min(100, $percentForBar))
if (-not $supportsUnicode)
{
$filled = [Math]::Round(($clamped / 100) * $Width)
$filled = [Math]::Max(0, [Math]::Min($Width, [Int32]$filled))
$empty = $Width - $filled
$filledText = if ($filled -gt 0) { '#' * $filled } else { '' }
$emptyText = if ($empty -gt 0) { '-' * $empty } else { '' }
return '[' + $filledText + $emptyText + ']'
}
$fullGlyph = [String][char]0x2588
$emptyGlyph = [String][char]0x2591
$partials = @(
'',
[String][char]0x258F,
[String][char]0x258E,
[String][char]0x258D,
[String][char]0x258C,
[String][char]0x258B,
[String][char]0x258A,
[String][char]0x2589
)
$scaled = ($clamped / 100) * $Width
$fullCount = [Int32][Math]::Floor($scaled)
$fraction = $scaled - $fullCount
$partialIndex = [Int32][Math]::Round($fraction * ($partials.Count - 1))
if ($partialIndex -ge ($partials.Count - 1))
{
$fullCount = [Math]::Min($Width, $fullCount + 1)
$partialIndex = 0
}
$segments = New-Object 'System.Collections.Generic.List[string]'
if ($fullCount -gt 0)
{
[void]$segments.Add($fullGlyph * $fullCount)
}
$consumed = $fullCount
if ($partialIndex -gt 0 -and $consumed -lt $Width)
{
[void]$segments.Add($partials[$partialIndex])
$consumed++
}
$emptyCount = $Width - $consumed
if ($emptyCount -gt 0)
{
[void]$segments.Add($emptyGlyph * $emptyCount)
}
return '[' + (-join $segments.ToArray()) + ']'
}
function Get-UsageStatus
{
param(
[Parameter()]
[Nullable[Double]]$Percent
)
if ($null -eq $Percent)
{
return 'N/A'
}
$value = [Double]$Percent
if ($value -lt 60) { return 'OK' }
if ($value -lt 85) { return 'WARN' }
return 'CRIT'
}
function Get-OverallLoadPercent
{
param(
[Parameter()]
[Nullable[Double]]$CpuPercent,
[Parameter()]
[Nullable[Double]]$MemoryPercent,
[Parameter()]
[Nullable[Double]]$DiskPercent
)
$percentValues = @(
$CpuPercent,
$MemoryPercent,
$DiskPercent
) | Where-Object { $null -ne $_ }
if ($percentValues.Count -eq 0)
{
return $null
}
return [Math]::Round(($percentValues | Measure-Object -Average).Average, 1)
}
function Get-ResourceHealthGrade
{
param(
[Parameter()]
[Nullable[Double]]$CpuPercent,
[Parameter()]
[Nullable[Double]]$MemoryPercent,
[Parameter()]
[Nullable[Double]]$DiskPercent,
[Parameter()]
[Nullable[Double]]$OverallLoadPercent,
[Parameter()]
[Switch]$SkipDisk
)
$healthMetrics = @(
@{ Name = 'CPU'; Percent = $CpuPercent; Expected = $true },
@{ Name = 'Memory'; Percent = $MemoryPercent; Expected = $true },
@{ Name = 'Disk'; Percent = $DiskPercent; Expected = -not $SkipDisk }
) | Where-Object { [Boolean]$_.Expected }
$knownValues = @($healthMetrics | Where-Object { $null -ne $_.Percent })
if ($knownValues.Count -eq 0)
{
return 'F'
}
$score = 100
foreach ($metric in $healthMetrics)
{
if ($null -eq $metric.Percent)
{
$score -= 8
continue
}
$value = [Double]$metric.Percent
if ($value -ge 95) { $score -= 35; continue }
if ($value -ge 85) { $score -= 20; continue }
if ($value -ge 70) { $score -= 8; continue }
if ($value -ge 60) { $score -= 3 }
}
$overall = if ($null -eq $OverallLoadPercent)
{
Get-OverallLoadPercent -CpuPercent $CpuPercent -MemoryPercent $MemoryPercent -DiskPercent $DiskPercent
}
else
{
[Double]$OverallLoadPercent
}
if ($null -ne $overall)
{
if ($overall -ge 95) { $score -= 20 }
elseif ($overall -ge 85) { $score -= 10 }
elseif ($overall -ge 70) { $score -= 4 }
}
switch ($score)
{
{ $_ -ge 90 } { return 'A' }
{ $_ -ge 75 } { return 'B' }
{ $_ -ge 60 } { return 'C' }
{ $_ -ge 40 } { return 'D' }
default { return 'F' }
}
}
function Get-HealthStatusIcon
{
param(
[Parameter(Mandatory)]
[String]$Grade
)
switch ($Grade)
{
{ $_ -in 'A', 'B' } { return $statusIcons.Healthy }
{ $_ -in 'C', 'D' } { return $statusIcons.Warning }
default { return $statusIcons.Critical }
}
}
function Format-HealthGrade
{
param(
[Parameter(Mandatory)]
[String]$Grade
)
if (-not $supportsAnsi)
{
return $Grade
}
$esc = [char]27
$gradeColor = switch ($Grade)
{
'A' { "$esc[32m" }
'B' { "$esc[36m" }
'C' { "$esc[33m" }
'D' { "$esc[33m" }
default { "$esc[31m" }
}
return $gradeColor + $Grade + $ansiReset
}
function Get-ResourceFindings
{
param(
[Parameter()]
[Nullable[Double]]$CpuPercent,
[Parameter()]
[Nullable[Double]]$MemoryPercent,
[Parameter()]
[Nullable[Double]]$DiskPercent,
[Parameter()]
[Switch]$SkipDisk
)
$findings = New-Object 'System.Collections.Generic.List[string]'
$addFinding = {
param(
[Parameter(Mandatory)]
[String]$Name,
[Parameter()]
[Nullable[Double]]$Percent
)
if ($null -eq $Percent)
{
[void]$findings.Add("$Name unavailable")
return
}
$value = [Double]$Percent
if ($value -ge 95)
{
[void]$findings.Add(('{0} critical ({1:N1}%)' -f $Name, $value))
}
elseif ($value -ge 85)
{
[void]$findings.Add(('{0} high ({1:N1}%)' -f $Name, $value))
}
elseif ($value -ge 70)
{
[void]$findings.Add(('{0} elevated ({1:N1}%)' -f $Name, $value))
}
}
& $addFinding -Name 'CPU' -Percent $CpuPercent
& $addFinding -Name 'Memory' -Percent $MemoryPercent
if (-not $SkipDisk)
{
& $addFinding -Name 'Disk' -Percent $DiskPercent
}
return @($findings.ToArray())
}
function Get-TrendIndicator
{
param(
[Parameter(Mandatory)]
[Double[]]$Values
)
$validValues = @($Values | Where-Object { -not [Double]::IsNaN($_) })
if ($validValues.Count -lt 2)
{
if ($supportsUnicode)
{
return [String][char]0x2022
}
return '~'
}
$delta = $validValues[-1] - $validValues[-2]
if ([Math]::Abs($delta) -lt 0.25)
{
if ($supportsUnicode)
{
return [String][char]0x2192
}
return '='
}
if ($delta -gt 0)
{
if ($supportsUnicode)
{
return [String][char]0x2197
}
return '^'
}
if ($supportsUnicode)
{
return [String][char]0x2198
}
return 'v'
}
function Get-ResolvedBarWidth
{
param(
[Parameter(Mandatory)]
[Int32]$RequestedWidth,
[Parameter(Mandatory)]
[Int32]$RenderedHistoryLength
)
$resolvedWidth = $RequestedWidth
try
{
if ($Host.UI -and $Host.UI.RawUI)
{
$windowWidth = [Int32]$Host.UI.RawUI.WindowSize.Width
if ($windowWidth -gt 0)
{
$reservedWidth = 52 + $RenderedHistoryLength
$availableWidth = $windowWidth - $reservedWidth
if ($availableWidth -ge 10)
{
$resolvedWidth = [Math]::Min($resolvedWidth, $availableWidth)
}
elseif ($windowWidth -lt 100)
{
$resolvedWidth = [Math]::Min($resolvedWidth, 16)
}
}
}
}
catch
{
Write-Verbose "Unable to read host window width. Using requested bar width: $($_.Exception.Message)"
}
return [Math]::Max(10, $resolvedWidth)
}
function Get-ResolvedDashboardWidth
{
try
{
if ($Host.UI -and $Host.UI.RawUI)
{
$windowWidth = [Int32]$Host.UI.RawUI.WindowSize.Width
if ($windowWidth -gt 0)
{
return $windowWidth
}
}
}
catch
{
Write-Verbose "Unable to read host window width. Dashboard width will not be constrained: $($_.Exception.Message)"
}
return $null
}
function Get-ResolvedDashboardHeight
{
if ($MaxDashboardLines -gt 0)
{
return [Int32]$MaxDashboardLines
}
try
{
if ($Host.UI -and $Host.UI.RawUI)
{
$windowHeight = [Int32]$Host.UI.RawUI.WindowSize.Height
if ($windowHeight -gt 0)
{
return $windowHeight
}
}
}
catch
{
Write-Verbose "Unable to read host window height. Dashboard height will not be constrained: $($_.Exception.Message)"
}
return $null
}
function Format-Percent
{
param(
[Parameter()]
[Nullable[Double]]$Percent
)
if ($null -eq $Percent)
{
return ' n/a '
}
$clamped = [Math]::Max(0, [Math]::Min(100, [Double]$Percent))
return ('{0,6:N1}%' -f $clamped)
}
function Format-GiB
{
param(
[Parameter()]
[Nullable[Double]]$Value
)
if ($null -eq $Value)
{
return 'n/a'
}
return ('{0:N1}' -f [Double]$Value)
}
function Format-MiB
{
param(
[Parameter()]
[Nullable[Double]]$Value
)
if ($null -eq $Value)
{
return 'n/a'
}
return ('{0:N1}' -f [Double]$Value)
}
function Format-BytesPerSecond
{
param(
[Parameter()]
[Nullable[Double]]$Value
)
if ($null -eq $Value)
{
return 'n/a'
}
$bytesPerSecond = [Math]::Max(0.0, [Double]$Value)
if ($bytesPerSecond -ge 1GB)
{
return ('{0:N2} GiB/s' -f ($bytesPerSecond / 1GB))
}
if ($bytesPerSecond -ge 1MB)
{
return ('{0:N2} MiB/s' -f ($bytesPerSecond / 1MB))
}
if ($bytesPerSecond -ge 1KB)
{
return ('{0:N1} KiB/s' -f ($bytesPerSecond / 1KB))
}
return ('{0:N0} B/s' -f $bytesPerSecond)
}
function Format-CpuCoreReadout
{
param(
[Parameter()]
[Nullable[Double]]$Percent
)
$logicalCoreCount = [Math]::Max(1, [Environment]::ProcessorCount)
$totalCoreText = ('{0:N1}' -f [Double]$logicalCoreCount)
if ($null -eq $Percent)
{
return ('n/a/{0} logical cores busy' -f $totalCoreText)
}
$clampedPercent = [Math]::Max(0, [Math]::Min(100, [Double]$Percent))
$busyCoreCount = [Math]::Round(($clampedPercent / 100) * $logicalCoreCount, 1)
$busyCoreText = ('{0:N1}' -f $busyCoreCount)
return ('{0}/{1} logical cores busy' -f $busyCoreText, $totalCoreText)
}
function ConvertTo-RelativePercentHistory
{
param(
[Parameter(Mandatory)]
[Double[]]$Values
)
if ($Values.Count -eq 0)
{
return @()
}
$validValues = @($Values | Where-Object { -not [Double]::IsNaN($_) -and $_ -ge 0 })
if ($validValues.Count -eq 0)
{
return @($Values | ForEach-Object { [Double]::NaN })
}
$peakValue = [Double](($validValues | Measure-Object -Maximum).Maximum)
if ($peakValue -le 0)
{
return @(
$Values | ForEach-Object {
if ([Double]::IsNaN($_))
{
[Double]::NaN
}
else
{
0.0
}
}
)
}
return @(