]> source.dussan.org Git - sonarqube.git/commitdiff
Remove useless Elasticsearch Marvel settings
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Mon, 15 Dec 2014 12:57:39 +0000 (13:57 +0100)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Mon, 15 Dec 2014 12:57:39 +0000 (13:57 +0100)
server/sonar-search/src/main/java/org/sonar/search/SearchSettings.java

index 2e03649ea92d09d5a56ca65c4abdf3bc980caa58..efca92943a5e2a4e6f5043e6f3c25915b4075b51 100644 (file)
@@ -179,10 +179,6 @@ class SearchSettings {
     Set<String> marvels = new TreeSet<String>();
     marvels.addAll(Arrays.asList(StringUtils.split(props.value(PROP_MARVEL_HOSTS, ""), ",")));
 
-    // Enable marvel's index creation
-    builder.put("action.auto_create_index", ".marvel-*");
-    // Only marvel on sq's indices
-    builder.put("marvel.agent.indices", "issues,logs,rules");
     // If we're collecting indexing data send them to the Marvel host(s)
     if (!marvels.isEmpty()) {
       String hosts = StringUtils.join(marvels, ",");