renamed to marvel
Original commit: elastic/x-pack-elasticsearch@c545942270
This commit is contained in:
parent
9604447d4d
commit
06b392d581
6
pom.xml
6
pom.xml
|
@ -2,13 +2,13 @@
|
|||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<name>elasticsearch-enterprise</name>
|
||||
<name>elasticsearch-marvel</name>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.elasticsearch</groupId>
|
||||
<artifactId>enterprise</artifactId>
|
||||
<artifactId>marvel</artifactId>
|
||||
<version>0.1.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
<description>Enterprise Elasticsearch</description>
|
||||
<description>Elasticsearch Marvel</description>
|
||||
<inceptionYear>2013</inceptionYear>
|
||||
<licenses>
|
||||
<license>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* or more contributor license agreements. Licensed under the Elastic License;
|
||||
* you may not use this file except in compliance with the Elastic License.
|
||||
*/
|
||||
package org.elasticsearch.enterprise.monitor;
|
||||
package org.elasticsearch.marvel.monitor;
|
||||
|
||||
import org.elasticsearch.common.collect.ImmutableList;
|
||||
import org.elasticsearch.common.component.LifecycleComponent;
|
||||
|
@ -22,7 +22,7 @@ public class Plugin extends AbstractPlugin {
|
|||
|
||||
@Override
|
||||
public String name() {
|
||||
return "Elasticsearch enterprise - monitor";
|
||||
return "Elasticsearch marvel - monitor";
|
||||
}
|
||||
|
||||
@Override
|
|
@ -3,7 +3,7 @@
|
|||
* or more contributor license agreements. Licensed under the Elastic License;
|
||||
* you may not use this file except in compliance with the Elastic License.
|
||||
*/
|
||||
package org.elasticsearch.enterprise.monitor;
|
||||
package org.elasticsearch.marvel.monitor;
|
||||
import org.elasticsearch.ElasticSearchException;
|
||||
import org.elasticsearch.action.admin.cluster.node.stats.NodeStats;
|
||||
import org.elasticsearch.action.admin.indices.stats.CommonStatsFlags;
|
||||
|
@ -18,8 +18,8 @@ import org.elasticsearch.common.settings.Settings;
|
|||
import org.elasticsearch.common.unit.TimeValue;
|
||||
import org.elasticsearch.common.util.concurrent.EsExecutors;
|
||||
import org.elasticsearch.discovery.Discovery;
|
||||
import org.elasticsearch.enterprise.monitor.exporter.ESExporter;
|
||||
import org.elasticsearch.enterprise.monitor.exporter.StatsExporter;
|
||||
import org.elasticsearch.marvel.monitor.exporter.ESExporter;
|
||||
import org.elasticsearch.marvel.monitor.exporter.StatsExporter;
|
||||
import org.elasticsearch.indices.IndicesService;
|
||||
import org.elasticsearch.indices.InternalIndicesService;
|
||||
import org.elasticsearch.node.service.NodeService;
|
|
@ -3,7 +3,7 @@
|
|||
* or more contributor license agreements. Licensed under the Elastic License;
|
||||
* you may not use this file except in compliance with the Elastic License.
|
||||
*/
|
||||
package org.elasticsearch.enterprise.monitor.exporter;
|
||||
package org.elasticsearch.marvel.monitor.exporter;
|
||||
import org.elasticsearch.ElasticSearchException;
|
||||
import org.elasticsearch.action.admin.cluster.node.stats.NodeStats;
|
||||
import org.elasticsearch.action.admin.indices.stats.CommonStats;
|
||||
|
@ -241,7 +241,7 @@ public class ESExporter extends AbstractLifecycleComponent<ESExporter> implement
|
|||
try {
|
||||
|
||||
|
||||
String templateName = "enterprise.monitor." + indexPrefix;
|
||||
String templateName = "marvel.monitor." + indexPrefix;
|
||||
|
||||
logger.debug("checking of target has template [{}]", templateName);
|
||||
// DO HEAD REQUEST, when elasticsearch supports it
|
|
@ -3,7 +3,7 @@
|
|||
* or more contributor license agreements. Licensed under the Elastic License;
|
||||
* you may not use this file except in compliance with the Elastic License.
|
||||
*/
|
||||
package org.elasticsearch.enterprise.monitor.exporter;
|
||||
package org.elasticsearch.marvel.monitor.exporter;
|
||||
import org.elasticsearch.action.admin.cluster.node.stats.NodeStats;
|
||||
import org.elasticsearch.action.admin.indices.stats.CommonStats;
|
||||
import org.elasticsearch.action.admin.indices.stats.IndexStats;
|
|
@ -1 +1 @@
|
|||
plugin=org.elasticsearch.enterprise.monitor.Plugin
|
||||
plugin=org.elasticsearch.marvel.monitor.Plugin
|
Loading…
Reference in New Issue