renamed to marvel

This commit is contained in:
Boaz Leskes 2013-10-28 17:07:08 +01:00
parent 925040eac9
commit 7b8a79a117
6 changed files with 12 additions and 12 deletions

View file

@ -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>

View file

@ -17,7 +17,7 @@
* under the License.
*/
package org.elasticsearch.enterprise.monitor;
package org.elasticsearch.marvel.monitor;
import org.elasticsearch.common.collect.ImmutableList;
import org.elasticsearch.common.component.LifecycleComponent;
@ -36,7 +36,7 @@ public class Plugin extends AbstractPlugin {
@Override
public String name() {
return "Elasticsearch enterprise - monitor";
return "Elasticsearch marvel - monitor";
}
@Override

View file

@ -1,4 +1,4 @@
package org.elasticsearch.enterprise.monitor;
package org.elasticsearch.marvel.monitor;
/*
* Licensed to ElasticSearch under one
* or more contributor license agreements. See the NOTICE file
@ -33,8 +33,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;

View file

@ -1,4 +1,4 @@
package org.elasticsearch.enterprise.monitor.exporter;
package org.elasticsearch.marvel.monitor.exporter;
/*
* Licensed to ElasticSearch under one
* or more contributor license agreements. See the NOTICE file
@ -256,7 +256,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

View file

@ -1,4 +1,4 @@
package org.elasticsearch.enterprise.monitor.exporter;
package org.elasticsearch.marvel.monitor.exporter;
/*
* Licensed to ElasticSearch under one
* or more contributor license agreements. See the NOTICE file

View file

@ -1 +1 @@
plugin=org.elasticsearch.enterprise.monitor.Plugin
plugin=org.elasticsearch.marvel.monitor.Plugin