Skip to content

Commit

Permalink
application types: add valkey and dragonfly
Browse files Browse the repository at this point in the history
  • Loading branch information
def committed Nov 12, 2024
1 parent ec07a0b commit 5941c6a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions containers/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")):
Expand Down

0 comments on commit 5941c6a

Please sign in to comment.