Skip to content

Commit 8d2c252

Browse files
committed
Stack Monitoring: Add Enterprise Search monitoring index templates
1 parent e7d8991 commit 8d2c252

File tree

5 files changed

+735
-3
lines changed

5 files changed

+735
-3
lines changed

x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/monitoring/MonitoredSystem.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public enum MonitoredSystem {
1616
KIBANA("kibana"),
1717
LOGSTASH("logstash"),
1818
BEATS("beats"),
19+
ENTERPRISE_SEARCH("enterprise_search"),
1920
UNKNOWN("unknown");
2021

2122
private final String system;
@@ -34,6 +35,7 @@ public static MonitoredSystem fromSystem(String system) {
3435
case "kibana" -> KIBANA;
3536
case "logstash" -> LOGSTASH;
3637
case "beats" -> BEATS;
38+
case "enterprise_search" -> ENTERPRISE_SEARCH;
3739
default ->
3840
// Return an "unknown" monitored system
3941
// that can easily be filtered out if

0 commit comments

Comments
 (0)