mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-11 13:02:14 +00:00
Add probe triggered log
This commit is contained in:
parent
1e827f4b2a
commit
f337511ba5
@ -178,7 +178,10 @@ probeLoop:
|
|||||||
case <-w.stopCh:
|
case <-w.stopCh:
|
||||||
break probeLoop
|
break probeLoop
|
||||||
case <-probeTicker.C:
|
case <-probeTicker.C:
|
||||||
|
klog.V(3).InfoS("Triggerd Probe by periodSeconds", "probeType", w.probeType, "pod", klog.KObj(w.pod), "podUID", w.pod.UID, "containerName", w.container.Name)
|
||||||
|
// continue
|
||||||
case <-w.manualTriggerCh:
|
case <-w.manualTriggerCh:
|
||||||
|
klog.V(3).InfoS("Triggerd Probe by manual run", "probeType", w.probeType, "pod", klog.KObj(w.pod), "podUID", w.pod.UID, "containerName", w.container.Name)
|
||||||
// continue
|
// continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user