We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
k3s
1 parent 2958f12 commit 78cc794Copy full SHA for 78cc794
containers/app.go
@@ -46,6 +46,8 @@ func guessApplicationType(cmdline []byte) string {
46
return "kube-controller-manager"
47
case bytes.HasSuffix(cmd, []byte("kube-scheduler")):
48
return "kube-scheduler"
49
+ case bytes.HasSuffix(cmd, []byte("k3s")):
50
+ return "k3s"
51
case bytes.HasSuffix(cmd, []byte("etcd")):
52
return "etcd"
53
case bytes.HasSuffix(cmd, []byte("dockerd")):
0 commit comments