File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ func guessApplicationType(cmdline []byte) string {
2424 return "envoy"
2525 case bytes .Contains (cmdline , []byte ("org.elasticsearch.bootstrap" )):
2626 return "elasticsearch"
27+ case bytes .Contains (cmdline , []byte ("org.opensearch.bootstrap" )):
28+ return "opensearch"
2729 case bytes .Contains (cmdline , []byte ("kafka.Kafka" )) || bytes .Contains (cmdline , []byte ("io.confluent.support.metrics.SupportedKafka" )):
2830 return "kafka"
2931 case bytes .HasSuffix (cmd , []byte ("mongod" )):
@@ -107,6 +109,13 @@ func guessApplicationType(cmdline []byte) string {
107109 return "nats"
108110 case bytes .HasSuffix (cmd , []byte ("java" )):
109111 return "java"
112+ case bytes .Contains (cmd , []byte ("victoria-metrics" )) ||
113+ bytes .Contains (cmd , []byte ("vmstorage" )) ||
114+ bytes .Contains (cmd , []byte ("vminsert" )) ||
115+ bytes .Contains (cmd , []byte ("vmselect" )):
116+ return "victoria-metrics"
117+ case bytes .Contains (cmd , []byte ("victoria-logs" )):
118+ return "victoria-logs"
110119 case phpCmd .Match (cmd ):
111120 return "php"
112121 case pythonCmd .Match (cmd ):
You can’t perform that action at this time.
0 commit comments