simpleclient_hotspot
Used in: 6833 components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
Overview
Description
Collectors of data from Java Hotspot.
Snippets
<dependency> <groupId>io.prometheus</groupId> <artifactId>simpleclient_hotspot</artifactId> <version>0.16.0</version> </dependency>
Maven POM File
<?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> <parent> <groupId>io.prometheus</groupId> <artifactId>parent</artifactId> <version>0.16.0</version> </parent> <artifactId>simpleclient_hotspot</artifactId> <packaging>bundle</packaging> <name>Prometheus Java Simpleclient Hotspot</name> <description> Collectors of data from Java Hotspot. </description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>brian-brazil</id> <name>Brian Brazil</name> <email>brian.brazil@boxever.com</email> </developer> </developers> <dependencies> <dependency> <groupId>io.prometheus</groupId> <artifactId>simpleclient</artifactId> <version>0.16.0</version> </dependency> <!-- Test Dependencies Follow --> <dependency> <groupId>io.prometheus</groupId> <artifactId>simpleclient_servlet</artifactId> <version>0.16.0</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.6.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <version>9.4.46.v20220331</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> <testSource>1.8</testSource> <testTarget>1.8</testTarget> </configuration> </plugin> </plugins> </build> <profiles> <profile> <!-- Intellij does not support different Java versions for source and testSource --> <!-- As a workaround, use Java 8 in Intellij. --> <!-- This will be fixed with https://youtrack.jetbrains.com/issue/IDEA-85478 --> <id>intellij</id> <activation> <activeByDefault>false</activeByDefault> <property> <!-- This property is only set when you open the project in Intellij. --> <!-- When you compile in the command line, the property will not be set --> <!-- and this profile will not be used. --> <name>idea.maven.embedder.version</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>