Rename app/package name to make gangliametric as a standalone app

Change-Id: Ie35c9848296646147081428b428d3507afbd2fb7
This commit is contained in:
Jian Li 2016-03-28 15:19:16 -07:00
parent 3678c2a440
commit c0fe42d16a
7 changed files with 10 additions and 10 deletions

View File

@ -18,7 +18,7 @@
<feature name="${project.artifactId}" version="${project.version}" <feature name="${project.artifactId}" version="${project.version}"
description="${project.description}"> description="${project.description}">
<feature>onos-api</feature> <feature>onos-api</feature>
<bundle>mvn:${project.groupId}/onos-app-metrics-reporter/${project.version}</bundle> <bundle>mvn:${project.groupId}/onos-app-ganglia/${project.version}</bundle>
<bundle>mvn:io.dropwizard.metrics/metrics-core/3.1.2</bundle> <bundle>mvn:io.dropwizard.metrics/metrics-core/3.1.2</bundle>
<bundle>mvn:io.dropwizard.metrics/metrics-ganglia/3.1.2</bundle> <bundle>mvn:io.dropwizard.metrics/metrics-ganglia/3.1.2</bundle>
<bundle>mvn:info.ganglia.gmetric4j/gmetric4j/1.0.10</bundle> <bundle>mvn:info.ganglia.gmetric4j/gmetric4j/1.0.10</bundle>

View File

@ -26,14 +26,14 @@
<relativePath>../pom.xml</relativePath> <relativePath>../pom.xml</relativePath>
</parent> </parent>
<artifactId>onos-app-metrics-reporter</artifactId> <artifactId>onos-app-ganglia</artifactId>
<packaging>bundle</packaging> <packaging>bundle</packaging>
<description>Performance metric service reporter</description> <description>Performance metric service reporter</description>
<properties> <properties>
<onos.app.name>org.onosproject.metrics.reporter</onos.app.name> <onos.app.name>org.onosproject.gangliametrics</onos.app.name>
<onos.app.title>Metric Service Reporter</onos.app.title> <onos.app.title>Ganglia Report and Query App</onos.app.title>
<onos.app.category>Monitoring</onos.app.category> <onos.app.category>Monitoring</onos.app.category>
<onos.app.url>http://onosproject.org</onos.app.url> <onos.app.url>http://onosproject.org</onos.app.url>
<metrics.version>3.1.2</metrics.version> <metrics.version>3.1.2</metrics.version>

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.onosproject.metrics.reporter; package org.onosproject.gangliametrics;
import com.codahale.metrics.MetricRegistry; import com.codahale.metrics.MetricRegistry;
import com.codahale.metrics.ganglia.GangliaReporter; import com.codahale.metrics.ganglia.GangliaReporter;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.onosproject.metrics.reporter; package org.onosproject.gangliametrics;
/** /**
* A metric report that reports all metrics value to third party monitor. * A metric report that reports all metrics value to third party monitor.

View File

@ -18,4 +18,4 @@
* Contains various reporters that backup all of the collected metrics * Contains various reporters that backup all of the collected metrics
* to monitoring server. * to monitoring server.
*/ */
package org.onosproject.metrics.reporter; package org.onosproject.gangliametrics;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.onosproject.metrics.reporter; package org.onosproject.gangliametrics;
import com.codahale.metrics.MetricRegistry; import com.codahale.metrics.MetricRegistry;
import com.google.common.collect.ImmutableSet; import com.google.common.collect.ImmutableSet;

View File

@ -38,7 +38,6 @@
<module>sdnip</module> <module>sdnip</module>
<module>optical</module> <module>optical</module>
<module>metrics</module> <module>metrics</module>
<module>metricsreporter</module>
<module>routing</module> <module>routing</module>
<module>routing-api</module> <module>routing-api</module>
<module>reactive-routing</module> <module>reactive-routing</module>
@ -70,7 +69,8 @@
<module>openstacknetworking</module> <module>openstacknetworking</module>
<module>openstackinterface</module> <module>openstackinterface</module>
<module>influxdbmetrics</module> <module>influxdbmetrics</module>
</modules> <module>gangliametrics</module>
</modules>
<properties> <properties>
<web.context>default</web.context> <web.context>default</web.context>