|
From: <tho...@us...> - 2014-05-05 11:59:19
|
Revision: 8194
http://sourceforge.net/p/bigdata/code/8194
Author: thompsonbry
Date: 2014-05-05 11:59:15 +0000 (Mon, 05 May 2014)
Log Message:
-----------
Published new version of bigdata-ganglia (1.0.2) with new APIs for GangliaService that are used by the GangliaLBSPolicy. The artifact has been pushed to the systap maven repository.
See #624 (HA LBS)
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/bigdata-ganglia/build.properties
branches/BIGDATA_RELEASE_1_3_0/build.properties
branches/BIGDATA_RELEASE_1_3_0/pom.xml
Added Paths:
-----------
branches/BIGDATA_RELEASE_1_3_0/bigdata/lib/bigdata-ganglia-1.0.2.jar
branches/BIGDATA_RELEASE_1_3_0/bigdata-ganglia/src/releases/bigdata-ganglia-1.0.2.txt
Removed Paths:
-------------
branches/BIGDATA_RELEASE_1_3_0/bigdata/lib/bigdata-ganglia-1.0.1.jar
Deleted: branches/BIGDATA_RELEASE_1_3_0/bigdata/lib/bigdata-ganglia-1.0.1.jar
===================================================================
(Binary files differ)
Added: branches/BIGDATA_RELEASE_1_3_0/bigdata/lib/bigdata-ganglia-1.0.2.jar
===================================================================
(Binary files differ)
Index: branches/BIGDATA_RELEASE_1_3_0/bigdata/lib/bigdata-ganglia-1.0.2.jar
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/bigdata/lib/bigdata-ganglia-1.0.2.jar 2014-05-05 01:10:28 UTC (rev 8193)
+++ branches/BIGDATA_RELEASE_1_3_0/bigdata/lib/bigdata-ganglia-1.0.2.jar 2014-05-05 11:59:15 UTC (rev 8194)
Property changes on: branches/BIGDATA_RELEASE_1_3_0/bigdata/lib/bigdata-ganglia-1.0.2.jar
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata-ganglia/build.properties
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/bigdata-ganglia/build.properties 2014-05-05 01:10:28 UTC (rev 8193)
+++ branches/BIGDATA_RELEASE_1_3_0/bigdata-ganglia/build.properties 2014-05-05 11:59:15 UTC (rev 8194)
@@ -38,7 +38,7 @@
release.dir=ant-release
# The build version.
-build.ver=1.0.1
+build.ver=1.0.2
# Set true to do a snapshot build. This changes the value of ${version} to
# include the date.
Added: branches/BIGDATA_RELEASE_1_3_0/bigdata-ganglia/src/releases/bigdata-ganglia-1.0.2.txt
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/bigdata-ganglia/src/releases/bigdata-ganglia-1.0.2.txt (rev 0)
+++ branches/BIGDATA_RELEASE_1_3_0/bigdata-ganglia/src/releases/bigdata-ganglia-1.0.2.txt 2014-05-05 11:59:15 UTC (rev 8194)
@@ -0,0 +1,55 @@
+This library provides a pure Java embedded peer for Ganglia. The GangliaService
+both listens and reports metrics. This means that it is capable of provide load
+balanced reported from soft state and can even be used as a substitute for gmond
+on operating systems (such as Windows) to which gmond has not been ported.
+
+The main entry point is GangliaService. It is trivial to setup with defaults and
+you can easily register your own metrics collection classes to report out on your
+application.
+
+GangliaServer service = new GangliaService("MyService");
+// Register to collect metrics.
+service.addMetricCollector(new MyMetricsCollector());
+// Join the ganglia network; Start collecting and reporting metrics.
+service.run();
+
+The following will return the default load balanced report, which contains
+exactly the same information that you would get from gstat -a. You can also use
+an alternative method signature to get a report based on your own list of metrics
+and/or have the report sorted by the metric (or even a synthetic metric) of your
+choice.
+
+IHostReport[] hostReport = service.getHostReport();
+
+Have fun!
+
+Change log:
+
+1.0.2:
+
+- Minor API additions for GangliaService.
+
+1.0.1:
+
+- Added utility class for parsing a string into an array of host addresses.
+- GangliaListener was ignoring interrupts.
+
+--------------------------
+
+ Copyright (C) SYSTAP, LLC 2006-2012. All rights reserved.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+----
+This product includes software developed by The Apache Software Foundation (http://www.apache.org/).
+License: http://www.apache.org/licenses/LICENSE-2.0
Modified: branches/BIGDATA_RELEASE_1_3_0/build.properties
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.properties 2014-05-05 01:10:28 UTC (rev 8193)
+++ branches/BIGDATA_RELEASE_1_3_0/build.properties 2014-05-05 11:59:15 UTC (rev 8194)
@@ -69,7 +69,7 @@
fastutil.version=5.1.5
dsiutils.version=1.0.6-020610
lgplutils.version=1.0.7-270114
-ganglia-version=1.0.1
+ganglia-version=1.0.2
gas-version=0.1.0
jackson-version=2.2.3
Modified: branches/BIGDATA_RELEASE_1_3_0/pom.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/pom.xml 2014-05-05 01:10:28 UTC (rev 8193)
+++ branches/BIGDATA_RELEASE_1_3_0/pom.xml 2014-05-05 11:59:15 UTC (rev 8194)
@@ -97,7 +97,7 @@
<fastutil.version>5.1.5</fastutil.version>
<dsiutils.version>1.0.6-020610</dsiutils.version>
<lgplutils.version>1.0.7-270114</lgplutils.version>
- <bigdata.ganglia.version>1.0.1</bigdata.ganglia.version>
+ <bigdata.ganglia.version>1.0.2</bigdata.ganglia.version>
<jackson.version>2.2.3</jackson.version>
</properties>
<!-- TODO Can we declare the versions of the dependencies here as
@@ -364,11 +364,11 @@
mvn deploy:deploy-file \
-DgroupId=com.bigdata \
-DartifactId=bigdata-ganglia \
- -Dversion=1.0.1 \
+ -Dversion=1.0.2 \
-Dpackaging=jar \
-DrepositoryId=bigdata.releases \
-Durl=scpexe://www.systap.com/srv/www/htdocs/systap.com/maven/releases/ \
- -Dfile=bigdata/lib/bigdata-ganglia-1.0.1.jar
+ -Dfile=bigdata/lib/bigdata-ganglia-1.0.2.jar
-->
<groupId>com.bigdata</groupId>
<artifactId>bigdata-ganglia</artifactId>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|