From 5941c6a171fc6d4a8adb1428dc6dd243c5d7cf6c Mon Sep 17 00:00:00 2001 From: Nikolay Sivko Date: Tue, 12 Nov 2024 14:03:10 +0300 Subject: [PATCH] application types: add `valkey` and `dragonfly` --- containers/app.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/containers/app.go b/containers/app.go index 131ff70..bec344c 100644 --- a/containers/app.go +++ b/containers/app.go @@ -42,6 +42,10 @@ func guessApplicationType(cmdline []byte) string { return "redis-sentinel" case bytes.HasSuffix(cmd, []byte("keydb-server")): return "keydb" + case bytes.HasSuffix(cmd, []byte("valkey-server")): + return "valkey" + case bytes.HasSuffix(cmd, []byte("dragonfly")): + return "dragonfly" case bytes.HasSuffix(cmd, []byte("beam.smp")) && bytes.Contains(cmdline, []byte("rabbit")): return "rabbitmq" case bytes.HasSuffix(cmd, []byte("beam.smp")) && bytes.Contains(cmdline, []byte("couch")):