stats
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.facebook.airlift</groupId> <artifactId>stats</artifactId> <version>0.219</version> </dependency>
<?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> <artifactId>stats</artifactId> <packaging>jar</packaging> <name>stats</name> <parent> <groupId>com.facebook.airlift</groupId> <artifactId>airlift</artifactId> <version>0.219</version> </parent> <properties> <air.main.basedir>${project.parent.basedir}</air.main.basedir> </properties> <dependencies> <dependency> <groupId>org.hdrhistogram</groupId> <artifactId>HdrHistogram</artifactId> <version>2.1.9</version> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>log</artifactId> </dependency> <dependency> <groupId>com.facebook.airlift.drift</groupId> <artifactId>drift-api</artifactId> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>units</artifactId> </dependency> <dependency> <groupId>org.weakref</groupId> <artifactId>jmxutils</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>concurrent</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_annotations</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>slice</artifactId> </dependency> <dependency> <groupId>org.openjdk.jol</groupId> <artifactId>jol-core</artifactId> <version>0.2</version> </dependency> <!-- for testing --> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>log-manager</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <scope>test</scope> </dependency> </dependencies> </project>