From a0f10d453da51bb160dc15c5f9d5cc91eefda881 Mon Sep 17 00:00:00 2001 From: Nikolay Sivko Date: Tue, 12 Aug 2025 14:06:18 +0300 Subject: [PATCH] add FoundationDB application type --- containers/app.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/containers/app.go b/containers/app.go index 9e252f1..1403271 100644 --- a/containers/app.go +++ b/containers/app.go @@ -122,6 +122,8 @@ func guessApplicationTypeByCmdline(cmdline []byte) string { return "java" case bytes.HasSuffix(cmd, []byte("ollama")): return "ollama" + case bytes.HasSuffix(cmd, []byte("fdbserver")): + return "foundationdb" case bytes.Contains(cmd, []byte("victoria-metrics")) || bytes.Contains(cmd, []byte("vmstorage")) || bytes.Contains(cmd, []byte("vminsert")) ||