dropwizard-metrics-cloudwatch
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.azagniotov</groupId> <artifactId>dropwizard-metrics-cloudwatch</artifactId> <version>2.0.8</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.github.azagniotov</groupId> <artifactId>dropwizard-metrics-cloudwatch</artifactId> <version>2.0.8</version> <name>codahale-aggregated-metrics-cloudwatch-reporter</name> <description>This is a CloudWatch Reporter for the stable version of Dropwizard Metrics (formerly CodaHale & Yammer Metrics). The reporter is an implementation of ScheduledReporter from Dropwizard Metrics v3.1. Each reportable value in CodeHale Metric is reported as a separate MetricDatum</description> <url>https://github.com/azagniotov/codahale-aggregated-metrics-cloudwatch-reporter</url> <inceptionYear>2016</inceptionYear> <licenses> <license> <name>MIT</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>azagniotov</id> <name>Alexander Zagniotov</name> <email>azagniotov@gmail.com</email> </developer> </developers> <scm> <connection>scm:git@github.com:azagniotov/codahale-aggregated-metrics-cloudwatch-reporter.git</connection> <developerConnection>scm:git@github.com:azagniotov/codahale-aggregated-metrics-cloudwatch-reporter.git</developerConnection> <url>scm:git@github.com:azagniotov/codahale-aggregated-metrics-cloudwatch-reporter.git</url> </scm> <dependencies> <dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> <version>4.1.8</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-jvm</artifactId> <version>4.1.8</version> <scope>compile</scope> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>cloudwatch</artifactId> <version>2.13.8</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.30</version> <scope>compile</scope> </dependency> </dependencies> </project>