Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Script to log top pods, nodes and kubernetes events. #566

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions Kubernetes/windows/debug/collectTopPodEvents.ps1
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
}