aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorRyan Williams <ryan.blake.williams@gmail.com>2015-01-31 23:41:05 -0800
committerReynold Xin <rxin@databricks.com>2015-01-31 23:41:05 -0800
commit80bd715a3e2c39449ed5e4d4e7058d75281ef3cb (patch)
treec0140ef751014912156812a119bb24fe99438dd7 /pom.xml
parentc84d5a10e8dbdeeeb54bc0d3f3dfb62ff0ca4fc1 (diff)
downloadspark-80bd715a3e2c39449ed5e4d4e7058d75281ef3cb.tar.gz
spark-80bd715a3e2c39449ed5e4d4e7058d75281ef3cb.tar.bz2
spark-80bd715a3e2c39449ed5e4d4e7058d75281ef3cb.zip
[SPARK-5422] Add support for sending Graphite metrics via UDP
Depends on [SPARK-5413](https://issues.apache.org/jira/browse/SPARK-5413) / #4209, included here, will rebase once the latter's merged. Author: Ryan Williams <ryan.blake.williams@gmail.com> Closes #4218 from ryan-williams/udp and squashes the following commits: ebae393 [Ryan Williams] Add support for sending Graphite metrics via UDP cb58262 [Ryan Williams] bump metrics dependency to v3.1.0
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/pom.xml b/pom.xml
index 4adfdf3eb8..b855f2371b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -136,7 +136,7 @@
<jblas.version>1.2.3</jblas.version>
<jetty.version>8.1.14.v20131031</jetty.version>
<chill.version>0.5.0</chill.version>
- <codahale.metrics.version>3.0.0</codahale.metrics.version>
+ <codahale.metrics.version>3.1.0</codahale.metrics.version>
<avro.version>1.7.6</avro.version>
<avro.mapred.classifier></avro.mapred.classifier>
<jets3t.version>0.7.1</jets3t.version>
@@ -521,27 +521,27 @@
<version>${derby.version}</version>
</dependency>
<dependency>
- <groupId>com.codahale.metrics</groupId>
+ <groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${codahale.metrics.version}</version>
</dependency>
<dependency>
- <groupId>com.codahale.metrics</groupId>
+ <groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-jvm</artifactId>
<version>${codahale.metrics.version}</version>
</dependency>
<dependency>
- <groupId>com.codahale.metrics</groupId>
+ <groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-json</artifactId>
<version>${codahale.metrics.version}</version>
</dependency>
<dependency>
- <groupId>com.codahale.metrics</groupId>
+ <groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-ganglia</artifactId>
<version>${codahale.metrics.version}</version>
</dependency>
<dependency>
- <groupId>com.codahale.metrics</groupId>
+ <groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-graphite</artifactId>
<version>${codahale.metrics.version}</version>
</dependency>