Dashboard

Read-only

Terminal Replay

Retained command flows from real debugging sessions โ€” execution memory, not logs

3
Retained flows
1
Similar matches
79%
Avg score
โšก

Similar issue detected

Resolved by ๐ŸŸข Sara Chen ยท 6 days ago

Strong
Why this matched
  • shared command family: kubectl
  • shared resource tokens: pod, staging, configmap
  • similar flow shape: inspect โ†’ edit โ†’ deploy โ†’ restart
  • same project area: infra/k8s/staging
Original resolution
  1. 1.kubectl get pods -n staging
  2. 2.kubectl logs api-pod-7f8b9c -n staging --tail=50
  3. 3.kubectl describe pod api-pod-7f8b9c -n staging
  4. 4.kubectl exec -it api-pod-7f8b9c -n staging -- env | grep DATABASE
  5. 5.vim infra/k8s/staging/api-configmap.yaml
  6. 6.kubectl apply -f infra/k8s/staging/api-configmap.yaml
  7. 7.kubectl rollout restart deployment/api -n staging
  8. 8.kubectl rollout status deployment/api -n staging
Shapeinspect โ†’ inspect โ†’ inspect โ†’ edit โ†’ deploy โ†’ restart
Flow 1keep

Pod crash-loop remediation

88
score
๐ŸŸข Sara Chen6w agotmuxinfra/k8s/staging
Steps
  1. 1.kubectl get pods -n staging
  2. 2.kubectl logs api-pod-7f8b9c -n staging --tail=50
  3. 3.kubectl describe pod api-pod-7f8b9c -n staging
  4. 4.kubectl exec -it api-pod-7f8b9c -n staging -- env | grep DATABASE
  5. 5.vim infra/k8s/staging/api-configmap.yaml
  6. 6.kubectl apply -f infra/k8s/staging/api-configmap.yaml
  7. 7.kubectl rollout restart deployment/api -n staging
  8. 8.kubectl rollout status deployment/api -n staging
Shapeinspect โ†’ inspect โ†’ inspect โ†’ edit โ†’ deploy โ†’ restart
Flow 2compact

Verification after restart

72
score
๐ŸŸข Sara Chen6w agotmuxinfra/k8s/staging
Steps
  1. 1.kubectl get pods -n staging -w
  2. 2.kubectl logs -f deployment/api -n staging --tail=20
Shapeinspect
Flow 3keep

Notifications pod crash-loop (guided by replay)

78
score
๐ŸŸก Marcus Webb5w agoshellinfra/k8s/staging
Steps
  1. 1.kubectl get pods -n staging
  2. 2.kubectl logs notifications-pod-3a2c1d -n staging --tail=30
  3. 3.kubectl exec -it notifications-pod-3a2c1d -n staging -- env | grep REDIS
  4. 4.vim infra/k8s/staging/notifications-configmap.yaml
  5. 5.kubectl apply -f infra/k8s/staging/notifications-configmap.yaml
  6. 6.kubectl rollout restart deployment/notifications -n staging
Shapeinspect โ†’ inspect โ†’ edit โ†’ deploy โ†’ restart