Skip to content

Commit

Permalink
Merge pull request #117 from thed0ct0r/feature/mariadb
Browse files Browse the repository at this point in the history
support mariadb (fully compatible with mysql)
  • Loading branch information
def authored Jul 31, 2024
2 parents 83c3c1c + cd14711 commit f030cd3
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 @@ -32,6 +32,8 @@ func guessApplicationType(cmdline []byte) string {
return "mongos"
case bytes.HasSuffix(cmd, []byte("mysqld")):
return "mysql"
case bytes.HasSuffix(cmd, []byte("mariadbd")):
return "mysql"
case bytes.Contains(cmdline, []byte("org.apache.zookeeper.server.quorum.QuorumPeerMain")):
return "zookeeper"
case bytes.HasSuffix(cmd, []byte("redis-server")):
Expand Down

0 comments on commit f030cd3

Please sign in to comment.