Download metrics-2.0.13.jar file

Introduction

You can download metrics-2.0.13.jar in this page.

License

Apache License

Type List

metrics-2.0.13.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.networknt/metrics/pom.properties
META-INF/maven/com.networknt/metrics/pom.xml
com.networknt.metrics.JVMMetricsInfluxDbReporter.class
com.networknt.metrics.JVMMetricsUtil.class
com.networknt.metrics.MetricsConfig.class
com.networknt.metrics.MetricsHandler.class
config/metrics.yml
io.dropwizard.metrics.CachedGauge.class
io.dropwizard.metrics.Clock.class
io.dropwizard.metrics.ConsoleReporter.class
io.dropwizard.metrics.Counter.class
io.dropwizard.metrics.Counting.class
io.dropwizard.metrics.DefaultObjectNameFactory.class
io.dropwizard.metrics.DerivativeGauge.class
io.dropwizard.metrics.EWMA.class
io.dropwizard.metrics.ExponentiallyDecayingReservoir.class
io.dropwizard.metrics.Gauge.class
io.dropwizard.metrics.HdrHistogramReservoir.class
io.dropwizard.metrics.HdrHistogramResetOnSnapshotReservoir.class
io.dropwizard.metrics.Histogram.class
io.dropwizard.metrics.HistogramSnapshot.class
io.dropwizard.metrics.InstrumentedExecutorService.class
io.dropwizard.metrics.InstrumentedExecutors.class
io.dropwizard.metrics.InstrumentedScheduledExecutorService.class
io.dropwizard.metrics.InstrumentedThreadFactory.class
io.dropwizard.metrics.JmxAttributeGauge.class
io.dropwizard.metrics.JmxReporter.class
io.dropwizard.metrics.JvmAttributeGaugeSet.class
io.dropwizard.metrics.Meter.class
io.dropwizard.metrics.Metered.class
io.dropwizard.metrics.Metric.class
io.dropwizard.metrics.MetricFilter.class
io.dropwizard.metrics.MetricName.class
io.dropwizard.metrics.MetricRegistry.class
io.dropwizard.metrics.MetricRegistryListener.class
io.dropwizard.metrics.MetricSet.class
io.dropwizard.metrics.ObjectNameFactory.class
io.dropwizard.metrics.RatioGauge.class
io.dropwizard.metrics.Reporter.class
io.dropwizard.metrics.Reservoir.class
io.dropwizard.metrics.Sampling.class
io.dropwizard.metrics.ScheduledReporter.class
io.dropwizard.metrics.SharedMetricRegistries.class
io.dropwizard.metrics.Slf4jReporter.class
io.dropwizard.metrics.SlidingTimeWindowReservoir.class
io.dropwizard.metrics.SlidingWindowReservoir.class
io.dropwizard.metrics.Snapshot.class
io.dropwizard.metrics.Striped64.class
io.dropwizard.metrics.Timer.class
io.dropwizard.metrics.UniformReservoir.class
io.dropwizard.metrics.UniformSnapshot.class
io.dropwizard.metrics.WeightedSnapshot.class
io.dropwizard.metrics.influxdb.InfluxDbHttpSender.class
io.dropwizard.metrics.influxdb.InfluxDbReporter.class
io.dropwizard.metrics.influxdb.InfluxDbSender.class
io.dropwizard.metrics.influxdb.TimeUtils.class
io.dropwizard.metrics.influxdb.data.InfluxDbPoint.class
io.dropwizard.metrics.influxdb.data.InfluxDbWriteObject.class

Pom

metrics-2.0.13.pom file content.

<!--
  ~ Copyright (c) 2016 Network New Technologies Inc.
  ~
  ~ 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.
  -->

<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
         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>

    <parent>
        <groupId>com.networknt</groupId>
        <artifactId>light-4j</artifactId>
        <version>2.0.13</version>
        <relativePath>..</relativePath>
    </parent>

    <artifactId>metrics</artifactId>
    <packaging>jar</packaging>
    <description>A metrics handler to log statistic info on the server</description>

    <dependencies>
        <dependency>
            <groupId>com.networknt</groupId>
            <artifactId>config</artifactId>
        </dependency>
        <dependency>
            <groupId>com.networknt</groupId>
            <artifactId>handler</artifactId>
        </dependency>
        <dependency>
            <groupId>com.networknt</groupId>
            <artifactId>utility</artifactId>
        </dependency>
        <dependency>
            <groupId>com.networknt</groupId>
            <artifactId>server</artifactId>
        </dependency>
        <dependency>
            <groupId>com.networknt</groupId>
            <artifactId>audit</artifactId>
        </dependency>
        <dependency>
            <groupId>com.networknt</groupId>
            <artifactId>client</artifactId>
        </dependency>
        <dependency>
            <groupId>com.networknt</groupId>
            <artifactId>mask</artifactId>
        </dependency>
        <dependency>
            <groupId>io.undertow</groupId>
            <artifactId>undertow-core</artifactId>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
        </dependency>
        <dependency>
            <groupId>org.owasp.encoder</groupId>
            <artifactId>encoder</artifactId>
        </dependency>
        <dependency>
            <groupId>org.hdrhistogram</groupId>
            <artifactId>HdrHistogram</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>jsr305</artifactId>
        </dependency>
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.assertj</groupId>
            <artifactId>assertj-core</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>

POM Entry

<dependency>
   <groupId>com.networknt</groupId>
   <artifactId>metrics</artifactId>
   <version>2.0.13</version>
</dependency>

Download

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



Download metrics-2.0.13.jar file




PreviousNext

Related