-
Notifications
You must be signed in to change notification settings - Fork 541
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Script to log top pods, nodes and kubernetes events.
- Loading branch information
1 parent
86e8725
commit 6d4a779
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
$logFile = "topPodEvents.log" | ||
$iMax = 360 # 6 hours | ||
|
||
"" > $logFile | ||
|
||
function logInfo() { | ||
Write-Output "============ Logging top Pods" >> $logFile | ||
kubectl top pods -A >> $logFile | ||
" " >> $logFile | ||
Write-Output "============ Logging top Nodes" >> $logFile | ||
kubectl top nodes >> $logFile | ||
" " >> $logFile | ||
Write-Output "============ Logging events" >> $logFile | ||
kubectl get events -A >> $logFile | ||
" " >> $logFile | ||
$nodes = (((kubectl get nodes -o json | ConvertFrom-Json).Items).metadata).name | ||
$nodes = ((kubectl get nodes -o json | ConvertFrom-Json).Items) | ||
Write-Output "============ Logging node info" >> $logFile | ||
foreach($node in $nodes) { | ||
if((($node.status).nodeInfo).operatingSystem -eq "windows") { | ||
$nodeName = ($node.metadata).name | ||
kubectl describe node $nodeName >> $logFile | ||
" " >> $logFile | ||
} | ||
} | ||
" " >> $logFile | ||
} | ||
|
||
for ($i = 1; $i -le $iMax; $i++) { | ||
$now = Get-Date | ||
Write-Output "$now : ============ Iteration : $i " | ||
Write-Output "$now : ============ Iteration : $i " >> $logFile | ||
logInfo | ||
Start-Sleep -Seconds 60 | ||
} |