Download metrics-spark-reporter-1.2.jar file

Introduction

You can download metrics-spark-reporter-1.2.jar in this page.

License

The Apache License, Version 2.0

Type List

metrics-spark-reporter-1.2.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/fr.ippon.spark.metrics/metrics-spark-reporter/pom.properties
META-INF/maven/fr.ippon.spark.metrics/metrics-spark-reporter/pom.xml
fr.ippon.spark.metrics.SparkReporter.class
fr.ippon.spark.metrics.measures.CounterMeasure.class
fr.ippon.spark.metrics.measures.GaugeMeasure.class
fr.ippon.spark.metrics.measures.HistogramMeasure.class
fr.ippon.spark.metrics.measures.Measure.class
fr.ippon.spark.metrics.measures.MeterMeasure.class
fr.ippon.spark.metrics.measures.SnapshotMeasure.class
fr.ippon.spark.metrics.measures.TimerMeasure.class

Pom

metrics-spark-reporter-1.2.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<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">
    <modelVersion>4.0.0</modelVersion>

    <groupId>fr.ippon.spark.metrics</groupId>
    <artifactId>metrics-spark-reporter</artifactId>
    <version>1.2</version>
    <packaging>jar</packaging>

    <name>Apache Spark Integration for Metrics</name>
    <description>A reporter for Apache Spark which announces measurements
        to a Spark Streaming application.</description>
    <url>https://github.com/ippontech/metrics-spark-reporter</url>

    <licenses>
        <license>
            <name>The Apache License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
        </license>
    </licenses>

    <developers>
        <developer>
            <name>Antoine Hars</name>
            <email>ahars@ippon.fr</email>
            <organization>Ippon Technologies</organization>
            <organizationUrl>http://www.ippon.fr</organizationUrl>
        </developer>
    </developers>

    <scm>
        <connection>scm:git:https://github.com/ippontech/metrics-spark-reporter.git</connection>
        <developerConnection>scm:git:git@github.com:ippontech/metrics-spark-reporter.git</developerConnection>
        <url>https://github.com/ippontech/metrics-spark-reporter</url>
    </scm>

    <properties>
        <java.version>1.8</java.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <joda.time.version>2.6</joda.time.version>
        <dropwizard.metrics.version>3.1.0</dropwizard.metrics.version>
        <jackson.core.version>2.4.4</jackson.core.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
            <version>${joda.time.version}</version>
        </dependency>
        <dependency>
            <groupId>io.dropwizard.metrics</groupId>
            <artifactId>metrics-core</artifactId>
            <version>${dropwizard.metrics.version}</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>${jackson.core.version}</version>
        </dependency>
    </dependencies>

    <distributionManagement>
        <snapshotRepository>
            <id>ossrh</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        </snapshotRepository>
        <repository>
            <id>ossrh</id>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </distributionManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.2</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.4</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.10.1</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-gpg-plugin</artifactId>
                <version>1.5</version>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.sonatype.plugins</groupId>
                <artifactId>nexus-staging-maven-plugin</artifactId>
                <version>1.6.3</version>
                <extensions>true</extensions>
                <configuration>
                    <serverId>ossrh</serverId>
                    <nexusUrl>https://oss.sonatype.org/</nexusUrl>
                    <autoReleaseAfterClose>true</autoReleaseAfterClose>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

POM Entry

<dependency>
   <groupId>fr.ippon.spark.metrics</groupId>
   <artifactId>metrics-spark-reporter</artifactId>
   <version>1.2</version>
</dependency>

Download

If you think the following metrics-spark-reporter-1.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download metrics-spark-reporter-1.2.jar file




PreviousNext

Related