forked from jagilber/powershellScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
perfmon-counter-action.ps1
158 lines (131 loc) · 4.61 KB
/
perfmon-counter-action.ps1
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
<#
.SYNOPSIS
powershell script to monitor a performance counter and take an action
.DESCRIPTION
- All variables are configued at top of script and not via command line
- make sure script execution is enabled if not already by: set-executionpolicy RemoteSigned
- run script from administrator prompt
- details
- will wait for a threshold
- will monitor for sustained threshold
- will launch a start executable
- will wait for certain amount of time
- will launch s stop executable
.NOTES
File Name : perfmon-counter-actions.ps1
Author : jagilber
Version : 150618
History :
#>
$threshold = 99
$sampleInterval = 1 #seconds
$sustainedIterations = 30
$runTime = 60 #seconds
$logFile = "perfmon-counter-action.log"
$logDetail = $false
$processWaitMs = 10000
$workingDir = "c:\temp"
$startCommand = "cmd.exe"
$startArguments = "/c xperf.mgr.bat start highcpu"
$stopCommand = "cmd.exe"
$stopArguments = "/c xperf.mgr.bat stop highcpu"
$sustainedCount = 0
#-------------------------------------------------------------------------------------------------
function main()
{
# run as administrator
runas-admin
while($true)
{
$counterObj = Get-counter -Counter "\Processor(_Total)\% Processor Time" -SampleInterval $sampleInterval
$cookedValue = 0
foreach($val in $counterObj.CounterSamples.GetEnumerator())
{
$cookedValue = $val.CookedValue
}
if($sustainedCount -ge $sustainedIterations)
{
log-info "starting app"
run-process -processName $startCommand -arguments $startArguments -workingDir $workingDir -wait $true
if($runTime -gt 0 -and $stopCommand -ne $null)
{
Start-Sleep $runTime
log-info "stopping app"
run-process -processName $stopCommand -arguments $stopArguments -workingDir $workingDir -wait $true
log-info "exiting"
return
}
else
{
log-info "exiting"
return
}
}
elseif($cookedValue -ge $threshold)
{
log-info "in state. sustainedCount: $($sustainedCount) value: $($cookedValue)"
$sustainedCount++
}
else
{
if($logDetail)
{
log-info "not in state. sustainedCount: $($sustainedCount) value: $($cookedValue)"
}
$sustainedCount = 0
}
}
}
# ----------------------------------------------------------------------------------------------------------------
function log-info($data)
{
$data = "$([DateTime]::Now):$($data)"
Write-Host $data
out-file -Append -InputObject $data -FilePath $logFile
}
# ----------------------------------------------------------------------------------------------------------------
function run-process([string] $processName, [string] $arguments, [string] $workingDir, [bool] $wait = $false)
{
log-info "Running process $processName $arguments"
$exitVal = 0
$process = New-Object System.Diagnostics.Process
$process.StartInfo.UseShellExecute = $false
$process.StartInfo.RedirectStandardOutput = $true
$process.StartInfo.RedirectStandardError = $true
$process.StartInfo.FileName = $processName
$process.StartInfo.Arguments = $arguments
$process.StartInfo.CreateNoWindow = $true
$process.StartInfo.WorkingDirectory = $workingDir
[void]$process.Start()
if($wait -and !$process.HasExited)
{
$process.WaitForExit($processWaitMs)
$exitVal = $process.ExitCode
$stdOut = $process.StandardOutput.ReadToEnd()
$stdErr = $process.StandardError.ReadToEnd()
log-info "Process output:$stdOut"
if(![String]::IsNullOrEmpty($stdErr) -and $stdErr -notlike "0")
{
log-info "Error:$stdErr `n $Error"
$Error.Clear()
}
}
elseif($wait)
{
log-info "Process ended before capturing output."
}
#return $exitVal
return $stdOut
}
# ----------------------------------------------------------------------------------------------------------------
function runas-admin()
{
if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole( `
[Security.Principal.WindowsBuiltInRole] "Administrator"))
{
log-info "please restart script as administrator. exiting..."
exit
}
}
#-------------------------------------------------------------------------------------------------
main