Skip to content

Commit

Permalink
add detection for the keydb application type
Browse files Browse the repository at this point in the history
  • Loading branch information
def committed Mar 6, 2023
1 parent 330d702 commit e5df00a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions containers/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ func guessApplicationType(cmdline []byte) string {
return "redis"
case bytes.HasSuffix(cmd, []byte("redis-sentinel")):
return "redis-sentinel"
case bytes.HasSuffix(cmd, []byte("keydb-server")):
return "keydb"
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 e5df00a

Please sign in to comment.