From 43c5883ba23db93271aabcaec4bfc9c160703904 Mon Sep 17 00:00:00 2001 From: Daniel Gerhardt <code@dgerhardt.net> Date: Tue, 24 Jan 2017 13:54:59 +0100 Subject: [PATCH] Only include annotations instead of full Stagemonitor dependency Stagemonitor and its dependencies are no longer included in builds. To enable Stagemonitor in production, the libraries must be provided by the host system. Additionally, the Java Servlet container needs to be setup to load these additional dependencies for the web app. For Tomcat 8 this is done by setting up a context config file in conf/Catalina/localhost/<context path>.xml with the following content: <Context> <Resources className="org.apache.catalina.webresources.StandardRoot"> <JarResources className="org.apache.catalina.webresources.DirResourceSet" base="<path to Stagemonitor JARs>" webAppMount="/WEB-INF/lib"> </JarResources> </Resources> </Context> See https://tomcat.apache.org/tomcat-8.0-doc/config/resources.html for more configuration options. --- pom.xml | 6 ++--- .../core/metrics/MonitorGauges.java | 25 +++++++++++++++++++ 2 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 src/main/java/org/stagemonitor/core/metrics/MonitorGauges.java diff --git a/pom.xml b/pom.xml index 06502a7c3..947efbb02 100644 --- a/pom.xml +++ b/pom.xml @@ -293,9 +293,9 @@ <version>1.5.12</version> </dependency> <dependency> - <groupId>org.stagemonitor</groupId> - <artifactId>stagemonitor-web</artifactId> - <version>0.31.0</version> + <groupId>com.codahale.metrics</groupId> + <artifactId>metrics-annotation</artifactId> + <version>3.0.2</version> </dependency> </dependencies> diff --git a/src/main/java/org/stagemonitor/core/metrics/MonitorGauges.java b/src/main/java/org/stagemonitor/core/metrics/MonitorGauges.java new file mode 100644 index 000000000..8e0a25a74 --- /dev/null +++ b/src/main/java/org/stagemonitor/core/metrics/MonitorGauges.java @@ -0,0 +1,25 @@ +package org.stagemonitor.core.metrics; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * When a type is marked with this annotation, the creation of gauges with + * @{@link com.codahale.metrics.annotation.Gauge} is activated for that type. + * + * <pre><code> + * \@MonitorGauges + * public class Queue { + * \@Gauge(name = "queueSize") + * public int getQueueSize() { + * return queue.size; + * } + * } + * </code></pre> + */ +@Target(ElementType.TYPE) +@Retention(RetentionPolicy.RUNTIME) +public @interface MonitorGauges { +} -- GitLab