Plugins - Softprober
Write a one-line PowerShell plugin that returns Get-Random -Min 0 -Max 100 . Configure it to update every second. Watch SoftProber draw a live random walk graph. Then replace that random number with your most critical business metric — and you’ll never look at static dashboards the same way again.
param($action, $configPath) function Init # Load config if needed return $true softprober plugins
function Cleanup return $true switch ($action) "init" Init "update" Update "cleanup" Cleanup Write a one-line PowerShell plugin that returns Get-Random