import parfait-0.5.4-2.module+el8+2463+615f6896
This commit is contained in:
commit
4177748c1b
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
SOURCES/parfait-0.5.4.tar.gz
|
1
.parfait.metadata
Normal file
1
.parfait.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
38f16d8c9e78637ac9489238bd96a00192ebbf57 SOURCES/parfait-0.5.4.tar.gz
|
238
SOURCES/no-jcip-annotations.patch
Normal file
238
SOURCES/no-jcip-annotations.patch
Normal file
@ -0,0 +1,238 @@
|
|||||||
|
diff -Naurp parfait-0.5.3.orig/dxm/pom.xml parfait-0.5.3/dxm/pom.xml
|
||||||
|
--- parfait-0.5.3.orig/dxm/pom.xml 2017-10-06 11:45:35.000000000 +1100
|
||||||
|
+++ parfait-0.5.3/dxm/pom.xml 2017-10-06 11:56:57.565404760 +1100
|
||||||
|
@@ -38,10 +38,6 @@
|
||||||
|
<artifactId>guava</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
- <groupId>net.jcip</groupId>
|
||||||
|
- <artifactId>jcip-annotations</artifactId>
|
||||||
|
- </dependency>
|
||||||
|
- <dependency>
|
||||||
|
<groupId>javax.measure</groupId>
|
||||||
|
<artifactId>unit-api</artifactId>
|
||||||
|
</dependency>
|
||||||
|
diff -Naurp parfait-0.5.3.orig/dxm/src/main/java/io/pcp/parfait/dxm/PcpMmvWriter.java parfait-0.5.3/dxm/src/main/java/io/pcp/parfait/dxm/PcpMmvWriter.java
|
||||||
|
--- parfait-0.5.3.orig/dxm/src/main/java/io/pcp/parfait/dxm/PcpMmvWriter.java 2017-10-06 11:45:35.000000000 +1100
|
||||||
|
+++ parfait-0.5.3/dxm/src/main/java/io/pcp/parfait/dxm/PcpMmvWriter.java 2017-10-06 11:56:57.567404741 +1100
|
||||||
|
@@ -54,7 +54,7 @@ import io.pcp.parfait.dxm.types.DefaultT
|
||||||
|
import io.pcp.parfait.dxm.types.MmvMetricType;
|
||||||
|
import io.pcp.parfait.dxm.types.TypeHandler;
|
||||||
|
import com.google.common.base.Preconditions;
|
||||||
|
-import net.jcip.annotations.GuardedBy;
|
||||||
|
+//import net.jcip.annotations.GuardedBy;
|
||||||
|
import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
|
import org.apache.commons.lang.builder.ToStringStyle;
|
||||||
|
|
||||||
|
@@ -162,7 +162,7 @@ public class PcpMmvWriter implements Pcp
|
||||||
|
private volatile boolean usePerMetricLock = true;
|
||||||
|
private final Map<PcpValueInfo,ByteBuffer> perMetricByteBuffers = newConcurrentMap();
|
||||||
|
private final Object globalLock = new Object();
|
||||||
|
- @GuardedBy("itself")
|
||||||
|
+ //@GuardedBy("itself")
|
||||||
|
private volatile ByteBuffer dataFileBuffer = null;
|
||||||
|
|
||||||
|
|
||||||
|
diff -Naurp parfait-0.5.3.orig/parfait-core/pom.xml parfait-0.5.3/parfait-core/pom.xml
|
||||||
|
--- parfait-0.5.3.orig/parfait-core/pom.xml 2017-10-06 11:45:35.000000000 +1100
|
||||||
|
+++ parfait-0.5.3/parfait-core/pom.xml 2017-10-06 11:56:57.567404741 +1100
|
||||||
|
@@ -34,10 +34,6 @@
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
- <groupId>net.jcip</groupId>
|
||||||
|
- <artifactId>jcip-annotations</artifactId>
|
||||||
|
- </dependency>
|
||||||
|
- <dependency>
|
||||||
|
<groupId>com.google.guava</groupId>
|
||||||
|
<artifactId>guava</artifactId>
|
||||||
|
</dependency>
|
||||||
|
diff -Naurp parfait-0.5.3.orig/parfait-core/src/main/java/io/pcp/parfait/TimeWindowCounterBuilder.java parfait-0.5.3/parfait-core/src/main/java/io/pcp/parfait/TimeWindowCounterBuilder.java
|
||||||
|
--- parfait-0.5.3.orig/parfait-core/src/main/java/io/pcp/parfait/TimeWindowCounterBuilder.java 2017-10-06 11:45:35.000000000 +1100
|
||||||
|
+++ parfait-0.5.3/parfait-core/src/main/java/io/pcp/parfait/TimeWindowCounterBuilder.java 2017-10-06 11:56:57.568404732 +1100
|
||||||
|
@@ -20,7 +20,7 @@ import java.util.List;
|
||||||
|
|
||||||
|
import javax.measure.Unit;
|
||||||
|
|
||||||
|
-import net.jcip.annotations.ThreadSafe;
|
||||||
|
+//import net.jcip.annotations.ThreadSafe;
|
||||||
|
|
||||||
|
import com.google.common.base.Supplier;
|
||||||
|
import com.google.common.collect.ImmutableList;
|
||||||
|
@@ -34,7 +34,7 @@ import com.google.common.collect.Lists;
|
||||||
|
* create the TimeWindowCounters from scratch, or 'copy' an existing
|
||||||
|
* MonitoredCounter.
|
||||||
|
*/
|
||||||
|
-@ThreadSafe
|
||||||
|
+//@ThreadSafe
|
||||||
|
public class TimeWindowCounterBuilder {
|
||||||
|
private final List<TimeWindow> timeWindows;
|
||||||
|
private final Supplier<Long> timeSource;
|
||||||
|
diff -Naurp parfait-0.5.3.orig/parfait-core/src/main/java/io/pcp/parfait/TimeWindowCounter.java parfait-0.5.3/parfait-core/src/main/java/io/pcp/parfait/TimeWindowCounter.java
|
||||||
|
--- parfait-0.5.3.orig/parfait-core/src/main/java/io/pcp/parfait/TimeWindowCounter.java 2017-10-06 11:45:35.000000000 +1100
|
||||||
|
+++ parfait-0.5.3/parfait-core/src/main/java/io/pcp/parfait/TimeWindowCounter.java 2017-10-06 11:56:57.568404732 +1100
|
||||||
|
@@ -18,8 +18,8 @@ package io.pcp.parfait;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
|
-import net.jcip.annotations.GuardedBy;
|
||||||
|
-import net.jcip.annotations.ThreadSafe;
|
||||||
|
+//import net.jcip.annotations.GuardedBy;
|
||||||
|
+//import net.jcip.annotations.ThreadSafe;
|
||||||
|
|
||||||
|
import com.google.common.annotations.VisibleForTesting;
|
||||||
|
import com.google.common.base.Supplier;
|
||||||
|
@@ -43,15 +43,15 @@ import com.google.common.base.Supplier;
|
||||||
|
* prove too contentious and require change later.
|
||||||
|
* </p>
|
||||||
|
*/
|
||||||
|
-@ThreadSafe
|
||||||
|
+//@ThreadSafe
|
||||||
|
public class TimeWindowCounter implements Counter {
|
||||||
|
- @GuardedBy("lock")
|
||||||
|
+ //@GuardedBy("lock")
|
||||||
|
private long overallValue;
|
||||||
|
- @GuardedBy("lock")
|
||||||
|
+ //@GuardedBy("lock")
|
||||||
|
private final long[] interimValues;
|
||||||
|
- @GuardedBy("lock")
|
||||||
|
+ //@GuardedBy("lock")
|
||||||
|
private int headIndex = 0;
|
||||||
|
- @GuardedBy("lock")
|
||||||
|
+ //@GuardedBy("lock")
|
||||||
|
private long headTime;
|
||||||
|
|
||||||
|
private final Object lock = new Object();
|
||||||
|
@@ -87,7 +87,7 @@ public class TimeWindowCounter implement
|
||||||
|
* until headTime is within one 'tick' of the current time; we have then
|
||||||
|
* found the correct bucket.
|
||||||
|
*/
|
||||||
|
- @GuardedBy("lock")
|
||||||
|
+ //@GuardedBy("lock")
|
||||||
|
private void cleanState() {
|
||||||
|
long eventTime = timeSource.get();
|
||||||
|
long bucketsToSkip = (eventTime - headTime) / window.getResolution();
|
||||||
|
diff -Naurp parfait-0.5.3.orig/parfait-core/src/main/java/io/pcp/parfait/TimeWindow.java parfait-0.5.3/parfait-core/src/main/java/io/pcp/parfait/TimeWindow.java
|
||||||
|
--- parfait-0.5.3.orig/parfait-core/src/main/java/io/pcp/parfait/TimeWindow.java 2017-10-06 11:45:35.000000000 +1100
|
||||||
|
+++ parfait-0.5.3/parfait-core/src/main/java/io/pcp/parfait/TimeWindow.java 2017-10-06 11:56:57.569404723 +1100
|
||||||
|
@@ -16,7 +16,7 @@
|
||||||
|
|
||||||
|
package io.pcp.parfait;
|
||||||
|
|
||||||
|
-import net.jcip.annotations.ThreadSafe;
|
||||||
|
+//import net.jcip.annotations.ThreadSafe;
|
||||||
|
|
||||||
|
import com.google.common.base.Preconditions;
|
||||||
|
|
||||||
|
@@ -27,7 +27,7 @@ import com.google.common.base.Preconditi
|
||||||
|
* (the amount of time represented by each window), and a resolution (the
|
||||||
|
* duration at which events will be clustered together).
|
||||||
|
*/
|
||||||
|
-@ThreadSafe
|
||||||
|
+//@ThreadSafe
|
||||||
|
public final class TimeWindow {
|
||||||
|
private final int resolution;
|
||||||
|
private final long period;
|
||||||
|
@@ -82,4 +82,4 @@ public final class TimeWindow {
|
||||||
|
// We know that bucket count fits in an int, per our constructor checks
|
||||||
|
return (int) (period / resolution);
|
||||||
|
}
|
||||||
|
-}
|
||||||
|
\ No newline at end of file
|
||||||
|
+}
|
||||||
|
diff -Naurp parfait-0.5.3.orig/parfait-core/src/main/java/io/pcp/parfait/timing/EventTimer.java parfait-0.5.3/parfait-core/src/main/java/io/pcp/parfait/timing/EventTimer.java
|
||||||
|
--- parfait-0.5.3.orig/parfait-core/src/main/java/io/pcp/parfait/timing/EventTimer.java 2017-10-06 11:45:35.000000000 +1100
|
||||||
|
+++ parfait-0.5.3/parfait-core/src/main/java/io/pcp/parfait/timing/EventTimer.java 2017-10-06 11:56:57.570404714 +1100
|
||||||
|
@@ -32,13 +32,13 @@ import org.slf4j.LoggerFactory;
|
||||||
|
import io.pcp.parfait.MonitorableRegistry;
|
||||||
|
import io.pcp.parfait.MonitoredCounter;
|
||||||
|
import com.google.common.collect.ImmutableList;
|
||||||
|
-import net.jcip.annotations.ThreadSafe;
|
||||||
|
+//import net.jcip.annotations.ThreadSafe;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A class to provide a {@link EventMetricCollector} to each {@link Timeable} on demand, guaranteed
|
||||||
|
* to be thread-safe as long is it's only ever used by the requesting thread.
|
||||||
|
*/
|
||||||
|
-@ThreadSafe
|
||||||
|
+//@ThreadSafe
|
||||||
|
public class EventTimer {
|
||||||
|
|
||||||
|
/**
|
||||||
|
diff -Naurp parfait-0.5.3.orig/parfait-core/src/main/java/io/pcp/parfait/timing/LoggerSink.java parfait-0.5.3/parfait-core/src/main/java/io/pcp/parfait/timing/LoggerSink.java
|
||||||
|
--- parfait-0.5.3.orig/parfait-core/src/main/java/io/pcp/parfait/timing/LoggerSink.java 2017-10-06 11:45:35.000000000 +1100
|
||||||
|
+++ parfait-0.5.3/parfait-core/src/main/java/io/pcp/parfait/timing/LoggerSink.java 2017-10-06 11:56:57.570404714 +1100
|
||||||
|
@@ -21,14 +21,14 @@ import java.util.Map;
|
||||||
|
|
||||||
|
import javax.measure.Unit;
|
||||||
|
|
||||||
|
-import net.jcip.annotations.ThreadSafe;
|
||||||
|
+//import net.jcip.annotations.ThreadSafe;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
import com.google.common.collect.Maps;
|
||||||
|
|
||||||
|
-@ThreadSafe
|
||||||
|
+//@ThreadSafe
|
||||||
|
public class LoggerSink implements StepMeasurementSink {
|
||||||
|
private final Logger logger;
|
||||||
|
private final Map<Unit<?>, Unit<?>> normalizations = Maps.newConcurrentMap();
|
||||||
|
diff -Naurp parfait-0.5.3.orig/parfait-core/src/main/java/io/pcp/parfait/timing/ThreadContext.java parfait-0.5.3/parfait-core/src/main/java/io/pcp/parfait/timing/ThreadContext.java
|
||||||
|
--- parfait-0.5.3.orig/parfait-core/src/main/java/io/pcp/parfait/timing/ThreadContext.java 2017-10-06 11:45:35.000000000 +1100
|
||||||
|
+++ parfait-0.5.3/parfait-core/src/main/java/io/pcp/parfait/timing/ThreadContext.java 2017-10-06 11:56:57.571404704 +1100
|
||||||
|
@@ -26,7 +26,7 @@ import java.util.concurrent.ConcurrentHa
|
||||||
|
import com.google.common.cache.CacheBuilder;
|
||||||
|
import com.google.common.cache.CacheLoader;
|
||||||
|
import com.google.common.cache.LoadingCache;
|
||||||
|
-import net.jcip.annotations.ThreadSafe;
|
||||||
|
+//import net.jcip.annotations.ThreadSafe;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>
|
||||||
|
@@ -45,7 +45,7 @@ import net.jcip.annotations.ThreadSafe;
|
||||||
|
*
|
||||||
|
* @author Cowan
|
||||||
|
*/
|
||||||
|
-@ThreadSafe
|
||||||
|
+//@ThreadSafe
|
||||||
|
public class ThreadContext {
|
||||||
|
private static final CacheLoader<Thread, Map<String, Object>> NEW_CONTEXT_CREATOR = new CacheLoader<Thread, Map<String, Object>>() {
|
||||||
|
@Override
|
||||||
|
diff -Naurp parfait-0.5.3.orig/parfait-pcp/src/main/java/io/pcp/parfait/pcp/PcpMonitorBridge.java parfait-0.5.3/parfait-pcp/src/main/java/io/pcp/parfait/pcp/PcpMonitorBridge.java
|
||||||
|
--- parfait-0.5.3.orig/parfait-pcp/src/main/java/io/pcp/parfait/pcp/PcpMonitorBridge.java 2017-10-06 11:45:35.000000000 +1100
|
||||||
|
+++ parfait-0.5.3/parfait-pcp/src/main/java/io/pcp/parfait/pcp/PcpMonitorBridge.java 2017-10-06 11:59:49.367827348 +1100
|
||||||
|
@@ -25,7 +25,7 @@ import io.pcp.parfait.dxm.PcpWriter;
|
||||||
|
import io.pcp.parfait.dxm.semantics.Semantics;
|
||||||
|
import com.google.common.base.Preconditions;
|
||||||
|
import com.google.common.collect.ImmutableMap;
|
||||||
|
-import net.jcip.annotations.NotThreadSafe;
|
||||||
|
+//import net.jcip.annotations.NotThreadSafe;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
@@ -45,7 +45,7 @@ import java.util.concurrent.ArrayBlockin
|
||||||
|
*
|
||||||
|
* @see io.pcp.parfait.QuiescentRegistryListener
|
||||||
|
*/
|
||||||
|
-@NotThreadSafe
|
||||||
|
+//@NotThreadSafe
|
||||||
|
public class PcpMonitorBridge implements MonitoringView {
|
||||||
|
|
||||||
|
private static final Logger LOG = LoggerFactory.getLogger(PcpMonitorBridge.class);
|
||||||
|
diff -Naurp parfait-0.5.3.orig/pom.xml parfait-0.5.3/pom.xml
|
||||||
|
--- parfait-0.5.3.orig/pom.xml 2017-10-06 11:45:35.000000000 +1100
|
||||||
|
+++ parfait-0.5.3/pom.xml 2017-10-06 11:56:57.571404704 +1100
|
||||||
|
@@ -340,11 +340,6 @@
|
||||||
|
<version>2.2.9</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
- <groupId>net.jcip</groupId>
|
||||||
|
- <artifactId>jcip-annotations</artifactId>
|
||||||
|
- <version>1.0</version>
|
||||||
|
- </dependency>
|
||||||
|
- <dependency>
|
||||||
|
<groupId>commons-io</groupId>
|
||||||
|
<artifactId>commons-io</artifactId>
|
||||||
|
<version>1.4</version>
|
322
SOURCES/no-more-objects.patch
Normal file
322
SOURCES/no-more-objects.patch
Normal file
@ -0,0 +1,322 @@
|
|||||||
|
diff -Naurp parfait-0.5.3.orig/parfait-core/src/main/java/io/pcp/parfait/PollingMonitoredValue.java parfait-0.5.3/parfait-core/src/main/java/io/pcp/parfait/PollingMonitoredValue.java
|
||||||
|
--- parfait-0.5.3.orig/parfait-core/src/main/java/io/pcp/parfait/PollingMonitoredValue.java 2017-10-03 11:38:15.000000000 +1100
|
||||||
|
+++ parfait-0.5.3/parfait-core/src/main/java/io/pcp/parfait/PollingMonitoredValue.java 2017-10-06 13:35:06.169481799 +1100
|
||||||
|
@@ -29,7 +29,7 @@ import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
import com.google.common.annotations.VisibleForTesting;
|
||||||
|
-import com.google.common.base.MoreObjects;
|
||||||
|
+//import com.google.common.base.MoreObjects;
|
||||||
|
import com.google.common.base.Preconditions;
|
||||||
|
import com.google.common.base.Supplier;
|
||||||
|
|
||||||
|
@@ -104,10 +104,10 @@ public class PollingMonitoredValue<T> ex
|
||||||
|
scheduler.schedule(new PollerTask(), updateInterval);
|
||||||
|
}
|
||||||
|
|
||||||
|
- @Override
|
||||||
|
- public String toString() {
|
||||||
|
- return MoreObjects.toStringHelper(this).add("name", getName()).add("description", getDescription()).add("poller", poller).toString();
|
||||||
|
- }
|
||||||
|
+// @Override
|
||||||
|
+// public String toString() {
|
||||||
|
+// return MoreObjects.toStringHelper(this).add("name", getName()).add("description", getDescription()).add("poller", poller).toString();
|
||||||
|
+// }
|
||||||
|
|
||||||
|
|
||||||
|
private class PollerTask extends TimerTask {
|
||||||
|
diff -Naurp parfait-0.5.3.orig/parfait-jmx/src/main/java/io/pcp/parfait/jmx/JmxView.java parfait-0.5.3/parfait-jmx/src/main/java/io/pcp/parfait/jmx/JmxView.java
|
||||||
|
--- parfait-0.5.3.orig/parfait-jmx/src/main/java/io/pcp/parfait/jmx/JmxView.java 2017-10-03 11:44:14.000000000 +1100
|
||||||
|
+++ parfait-0.5.3/parfait-jmx/src/main/java/io/pcp/parfait/jmx/JmxView.java 1970-01-01 10:00:00.000000000 +1000
|
||||||
|
@@ -1,150 +0,0 @@
|
||||||
|
-/*
|
||||||
|
- * Copyright 2009-2017 Aconex
|
||||||
|
- *
|
||||||
|
- * 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.
|
||||||
|
- */
|
||||||
|
-
|
||||||
|
-package io.pcp.parfait.jmx;
|
||||||
|
-
|
||||||
|
-import io.pcp.parfait.Monitor;
|
||||||
|
-import io.pcp.parfait.Monitorable;
|
||||||
|
-import io.pcp.parfait.MonitoringView;
|
||||||
|
-import com.google.common.base.MoreObjects;
|
||||||
|
-import org.springframework.jmx.export.annotation.ManagedAttribute;
|
||||||
|
-import org.springframework.jmx.export.annotation.ManagedResource;
|
||||||
|
-
|
||||||
|
-import javax.management.openmbean.CompositeData;
|
||||||
|
-import javax.management.openmbean.CompositeDataSupport;
|
||||||
|
-import javax.management.openmbean.CompositeType;
|
||||||
|
-import javax.management.openmbean.OpenDataException;
|
||||||
|
-import javax.management.openmbean.OpenType;
|
||||||
|
-import javax.management.openmbean.SimpleType;
|
||||||
|
-import java.util.Collection;
|
||||||
|
-import java.util.HashMap;
|
||||||
|
-import java.util.Map;
|
||||||
|
-import java.util.concurrent.atomic.AtomicInteger;
|
||||||
|
-import java.util.concurrent.atomic.AtomicLong;
|
||||||
|
-
|
||||||
|
-@ManagedResource
|
||||||
|
-public class JmxView implements MonitoringView {
|
||||||
|
- private String[] jmxMonitoredNames;
|
||||||
|
- private Object[] jmxMonitoredValues;
|
||||||
|
- private Map<String, Integer> jmxArrayIndexMap;
|
||||||
|
- private CompositeType monitoredType;
|
||||||
|
-
|
||||||
|
- private final Monitor monitor = new JmxUpdatingMonitor();
|
||||||
|
- private volatile boolean started;
|
||||||
|
-
|
||||||
|
-
|
||||||
|
- @Override
|
||||||
|
- public void startMonitoring(Collection<Monitorable<?>> monitorables) {
|
||||||
|
- setupJmxValues(monitorables);
|
||||||
|
- for (Monitorable<?> monitorable : monitorables) {
|
||||||
|
- updateData(monitorable);
|
||||||
|
- monitorable.attachMonitor(monitor);
|
||||||
|
- }
|
||||||
|
- this.started = true;
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- @Override
|
||||||
|
- public void stopMonitoring(Collection<Monitorable<?>> monitorables) {
|
||||||
|
- for (Monitorable<?> monitorable : monitorables) {
|
||||||
|
- monitorable.removeMonitor(monitor);
|
||||||
|
- }
|
||||||
|
- this.started = false;
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- @Override
|
||||||
|
- public boolean isRunning() {
|
||||||
|
- return started;
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- private void setupJmxValues(Collection<Monitorable<?>> monitorables) {
|
||||||
|
- if (monitorables.isEmpty()) {
|
||||||
|
- return;
|
||||||
|
- }
|
||||||
|
- try {
|
||||||
|
- jmxMonitoredNames = new String[monitorables.size()];
|
||||||
|
- String[] descriptions = new String[monitorables.size()];
|
||||||
|
- jmxMonitoredValues = new Object[monitorables.size()];
|
||||||
|
- OpenType<?>[] types = new OpenType<?>[monitorables.size()];
|
||||||
|
- jmxArrayIndexMap = new HashMap<String, Integer>(monitorables.size());
|
||||||
|
- int index = 0;
|
||||||
|
-
|
||||||
|
- for (Monitorable<?> monitorable : monitorables) {
|
||||||
|
- jmxMonitoredNames[index] = monitorable.getName();
|
||||||
|
- descriptions[index] = MoreObjects.firstNonNull(monitorable.getDescription(),
|
||||||
|
- "(unknown)");
|
||||||
|
- types[index] = getJmxType(monitorable.getType());
|
||||||
|
- jmxArrayIndexMap.put(monitorable.getName(), index);
|
||||||
|
- index++;
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- monitoredType = new CompositeType("Exposed PCP metrics",
|
||||||
|
- "Details of all exposed PCP metrics", jmxMonitoredNames, descriptions, types);
|
||||||
|
- } catch (OpenDataException e) {
|
||||||
|
- throw new UnsupportedOperationException("Unable to configure JMX types", e);
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- private OpenType<?> getJmxType(Class<?> type) {
|
||||||
|
- if (type == Boolean.class) {
|
||||||
|
- return SimpleType.BOOLEAN;
|
||||||
|
- } else if (type == Integer.class || type == AtomicInteger.class) {
|
||||||
|
- return SimpleType.INTEGER;
|
||||||
|
- } else if (type == Long.class || type == AtomicLong.class) {
|
||||||
|
- return SimpleType.LONG;
|
||||||
|
- } else if (type == Double.class) {
|
||||||
|
- return SimpleType.DOUBLE;
|
||||||
|
- } else if (type == String.class) {
|
||||||
|
- return SimpleType.STRING;
|
||||||
|
- } else {
|
||||||
|
- throw new UnsupportedOperationException(
|
||||||
|
- "Don't know how to process Monitorable of type [" + type + "]");
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- @ManagedAttribute(description = "All exposed parfait metrics")
|
||||||
|
- public CompositeData getExposedMetrics() {
|
||||||
|
- try {
|
||||||
|
- return new CompositeDataSupport(monitoredType, jmxMonitoredNames, jmxMonitoredValues);
|
||||||
|
- } catch (OpenDataException e) {
|
||||||
|
- throw new RuntimeException(e);
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- private void updateData(Monitorable<?> monitorable) {
|
||||||
|
- Class<?> type = monitorable.getType();
|
||||||
|
- Object jmxValue;
|
||||||
|
-
|
||||||
|
- if (type == Boolean.class || type == Integer.class || type == Long.class
|
||||||
|
- || type == Double.class || type == String.class) {
|
||||||
|
- jmxValue = monitorable.get();
|
||||||
|
- } else if (type == AtomicInteger.class) {
|
||||||
|
- jmxValue = ((AtomicInteger) monitorable.get()).intValue();
|
||||||
|
- } else if (type == AtomicLong.class) {
|
||||||
|
- jmxValue = ((AtomicLong) monitorable.get()).longValue();
|
||||||
|
- } else {
|
||||||
|
- throw new UnsupportedOperationException(
|
||||||
|
- "Don't know how to process Monitorable of type [" + type + "]");
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- jmxMonitoredValues[jmxArrayIndexMap.get(monitorable.getName())] = jmxValue;
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- public class JmxUpdatingMonitor implements Monitor {
|
||||||
|
- public void valueChanged(Monitorable<?> monitorable) {
|
||||||
|
- updateData(monitorable);
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
-}
|
||||||
|
diff -Naurp parfait-0.5.3.orig/parfait-jmx/src/test/java/io/pcp/parfait/jmx/JmxViewTest.java parfait-0.5.3/parfait-jmx/src/test/java/io/pcp/parfait/jmx/JmxViewTest.java
|
||||||
|
--- parfait-0.5.3.orig/parfait-jmx/src/test/java/io/pcp/parfait/jmx/JmxViewTest.java 2017-10-03 11:44:14.000000000 +1100
|
||||||
|
+++ parfait-0.5.3/parfait-jmx/src/test/java/io/pcp/parfait/jmx/JmxViewTest.java 1970-01-01 10:00:00.000000000 +1000
|
||||||
|
@@ -1,137 +0,0 @@
|
||||||
|
-/*
|
||||||
|
- * Copyright 2009-2017 Aconex
|
||||||
|
- *
|
||||||
|
- * 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.
|
||||||
|
- */
|
||||||
|
-
|
||||||
|
-package io.pcp.parfait.jmx;
|
||||||
|
-
|
||||||
|
-import io.pcp.parfait.MonitorableRegistry;
|
||||||
|
-import io.pcp.parfait.MonitoredValue;
|
||||||
|
-import junit.framework.TestCase;
|
||||||
|
-
|
||||||
|
-import javax.management.openmbean.CompositeData;
|
||||||
|
-import java.io.IOException;
|
||||||
|
-
|
||||||
|
-public class JmxViewTest extends TestCase {
|
||||||
|
- private MonitoredValue<Boolean> booleanValue = null;
|
||||||
|
-
|
||||||
|
- private MonitoredValue<Integer> intValue = null;
|
||||||
|
-
|
||||||
|
- private MonitoredValue<Long> longValue = null;
|
||||||
|
- private MonitoredValue<Double> doubleValue = null;
|
||||||
|
- private MonitoredValue<String> stringValue = null;
|
||||||
|
-
|
||||||
|
- private MonitorableRegistry registry = new MonitorableRegistry();
|
||||||
|
-
|
||||||
|
- private JmxView jmx = null;
|
||||||
|
-
|
||||||
|
- public JmxViewTest() {
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- public void setUp() {
|
||||||
|
- booleanValue = new MonitoredValue<Boolean>("boolean.value", "boolean.value.desc", registry, true);
|
||||||
|
- intValue = new MonitoredValue<Integer>("int.value", "int.value.desc", registry, 1);
|
||||||
|
- longValue = new MonitoredValue<Long>("long.value", "long.value.desc", registry, 1l);
|
||||||
|
- doubleValue = new MonitoredValue<Double>("double.value", "double.value.desc", registry, 1d);
|
||||||
|
- stringValue = new MonitoredValue<String>("string.value", "string.value.desc", registry, "!");
|
||||||
|
-
|
||||||
|
- jmx = new JmxView();
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- public void tearDown() {
|
||||||
|
- jmx.stopMonitoring(registry.getMonitorables());
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- public void testSupportsAllTypes() throws IOException, InterruptedException {
|
||||||
|
- jmx.startMonitoring(registry.getMonitorables());
|
||||||
|
-
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- booleanValue.set(false);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- booleanValue.set(true);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- intValue.set(0);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- intValue.set(Integer.MAX_VALUE);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- intValue.set(Integer.MIN_VALUE);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- intValue.set(1234567890);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- longValue.set(0l);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- longValue.set(Long.MAX_VALUE);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- longValue.set(Long.MIN_VALUE);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- longValue.set(1234567891012345679l);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- doubleValue.set(0d);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- doubleValue.set(Double.MAX_VALUE);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- doubleValue.set(Double.MIN_VALUE);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- doubleValue.set(Double.NEGATIVE_INFINITY);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- doubleValue.set(Double.POSITIVE_INFINITY);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- doubleValue.set(Double.NaN);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- doubleValue.set(1234567891.012345679d);
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- stringValue.set("");
|
||||||
|
- checkDataValues();
|
||||||
|
-
|
||||||
|
- stringValue.set(createString(500));
|
||||||
|
- checkDataValues();
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- private String createString(int length) {
|
||||||
|
- StringBuilder sb = new StringBuilder();
|
||||||
|
- for (int i = 0; i < length; i++) {
|
||||||
|
- sb.append(Math.max(1, i & 255));
|
||||||
|
- }
|
||||||
|
- return sb.toString();
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- private void checkDataValues() {
|
||||||
|
-
|
||||||
|
- CompositeData data = jmx.getExposedMetrics();
|
||||||
|
-
|
||||||
|
- assertEquals(booleanValue.get(), data.get("boolean.value"));
|
||||||
|
- assertEquals(doubleValue.get(), data.get("double.value"));
|
||||||
|
- assertEquals((int) intValue.get(), data.get("int.value"));
|
||||||
|
- assertEquals((long) longValue.get(), data.get("long.value"));
|
||||||
|
- assertEquals(stringValue.get(), data.get("string.value"));
|
||||||
|
- }
|
||||||
|
-}
|
220
SPECS/parfait.spec
Normal file
220
SPECS/parfait.spec
Normal file
@ -0,0 +1,220 @@
|
|||||||
|
Name: parfait
|
||||||
|
Version: 0.5.4
|
||||||
|
Release: 2%{?dist}
|
||||||
|
Summary: Java libraries for Performance Co-Pilot (PCP)
|
||||||
|
License: ASL 2.0
|
||||||
|
URL: https://github.com/performancecopilot/parfait
|
||||||
|
Source0: https://github.com/performancecopilot/parfait/archive/%{version}/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
Patch1: no-jcip-annotations.patch
|
||||||
|
Patch2: no-more-objects.patch
|
||||||
|
|
||||||
|
%bcond_with metrics
|
||||||
|
|
||||||
|
BuildRequires: javapackages-tools
|
||||||
|
BuildRequires: junit
|
||||||
|
BuildRequires: testng
|
||||||
|
BuildRequires: maven-local
|
||||||
|
%if 0%{?rhel} == 0
|
||||||
|
BuildRequires: maven-license-plugin
|
||||||
|
BuildRequires: maven-failsafe-plugin
|
||||||
|
%endif
|
||||||
|
BuildRequires: maven-source-plugin
|
||||||
|
BuildRequires: maven-assembly-plugin
|
||||||
|
BuildRequires: maven-plugin-bundle
|
||||||
|
BuildRequires: maven-jar-plugin
|
||||||
|
BuildRequires: maven-shade-plugin
|
||||||
|
BuildRequires: maven-install-plugin
|
||||||
|
BuildRequires: maven-surefire-plugin
|
||||||
|
BuildRequires: maven-surefire-provider-testng
|
||||||
|
BuildRequires: maven-surefire-provider-junit
|
||||||
|
BuildRequires: maven-dependency-plugin
|
||||||
|
BuildRequires: maven-verifier-plugin
|
||||||
|
|
||||||
|
BuildRequires: maven-wagon-ftp
|
||||||
|
%if 0%{?rhel} == 0
|
||||||
|
BuildRequires: mvn(net.jcip:jcip-annotations)
|
||||||
|
BuildRequires: mvn(org.apache.maven.wagon:wagon-ftp)
|
||||||
|
BuildRequires: mvn(org.aspectj:aspectjweaver)
|
||||||
|
BuildRequires: mvn(org.hsqldb:hsqldb)
|
||||||
|
BuildRequires: mvn(org.mockito:mockito-core)
|
||||||
|
BuildRequires: mvn(org.springframework:spring-jdbc)
|
||||||
|
BuildRequires: mvn(org.springframework:spring-core)
|
||||||
|
BuildRequires: mvn(org.springframework:spring-beans)
|
||||||
|
BuildRequires: mvn(org.springframework:spring-context)
|
||||||
|
BuildRequires: mvn(org.springframework:spring-test)
|
||||||
|
%endif
|
||||||
|
%if %{with metrics}
|
||||||
|
BuildRequires: mvn(com.codahale.metrics:metrics-core)
|
||||||
|
%endif
|
||||||
|
BuildRequires: mvn(com.fasterxml.jackson.core:jackson-core)
|
||||||
|
BuildRequires: mvn(com.fasterxml.jackson.core:jackson-annotations)
|
||||||
|
BuildRequires: mvn(com.fasterxml.jackson.core:jackson-databind)
|
||||||
|
BuildRequires: mvn(systems.uom:systems-unicode-java8)
|
||||||
|
BuildRequires: mvn(javax.measure:unit-api)
|
||||||
|
BuildRequires: mvn(tec.uom:uom-se)
|
||||||
|
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description
|
||||||
|
Parfait is a Java performance monitoring library that exposes and
|
||||||
|
collects metrics through a variety of outputs. It provides APIs
|
||||||
|
for extracting performance metrics from the JVM and other sources.
|
||||||
|
It interfaces to Performance Co-Pilot (PCP) using the Memory Mapped
|
||||||
|
Value (MMV) machinery for extremely lightweight instrumentation.
|
||||||
|
|
||||||
|
%package javadoc
|
||||||
|
BuildArch: noarch
|
||||||
|
Summary: Javadoc for Parfait
|
||||||
|
|
||||||
|
%description javadoc
|
||||||
|
This package contains the API documentation for Parfait.
|
||||||
|
|
||||||
|
%package -n pcp-parfait-agent
|
||||||
|
BuildArch: noarch
|
||||||
|
Summary: Parfait Java Agent for Performance Co-Pilot (PCP)
|
||||||
|
|
||||||
|
%description -n pcp-parfait-agent
|
||||||
|
This package contains the Parfait Agent for instrumenting Java
|
||||||
|
applications. The agent can extract live performance metrics
|
||||||
|
from the JVM and other sources, in unmodified applications (via
|
||||||
|
the -java-agent java command line option). It interfaces to
|
||||||
|
Performance Co-Pilot (PCP) using the Memory Mapped Value (MMV)
|
||||||
|
machinery for extremely lightweight instrumentation.
|
||||||
|
|
||||||
|
%package examples
|
||||||
|
BuildArch: noarch
|
||||||
|
Summary: Parfait Java demonstration programs
|
||||||
|
|
||||||
|
%description examples
|
||||||
|
Sample standalone Java programs showing use of Parfait modules
|
||||||
|
for instrumenting applications.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
%if 0%{?rhel} != 0
|
||||||
|
%patch1 -p1
|
||||||
|
%patch2 -p1
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# Remove license plugin in main pom.xml
|
||||||
|
%pom_remove_plugin com.mycila:license-maven-plugin
|
||||||
|
%pom_remove_plugin com.mycila:license-maven-plugin parfait-agent
|
||||||
|
|
||||||
|
%pom_disable_module parfait-benchmark
|
||||||
|
%pom_disable_module parfait-cxf
|
||||||
|
%if %{without metrics}
|
||||||
|
%pom_disable_module parfait-dropwizard
|
||||||
|
%endif
|
||||||
|
%pom_disable_module parfait-jdbc
|
||||||
|
%if 0%{?rhel} != 0
|
||||||
|
%pom_disable_module parfait-jmx
|
||||||
|
%pom_disable_module parfait-spring
|
||||||
|
%endif
|
||||||
|
%pom_remove_plugin org.apache.maven.plugins:maven-failsafe-plugin
|
||||||
|
%pom_remove_plugin org.apache.maven.plugins:maven-jxr-plugin
|
||||||
|
%pom_remove_plugin org.apache.maven.plugins:maven-pmd-plugin
|
||||||
|
%pom_remove_plugin :maven-javadoc-plugin
|
||||||
|
%pom_remove_plugin :maven-site-plugin
|
||||||
|
%pom_remove_plugin :maven-source-plugin
|
||||||
|
|
||||||
|
%build
|
||||||
|
# skip tests for now, missing org.unitils:unitils-core:jar
|
||||||
|
%mvn_build -f
|
||||||
|
# re-instate not-shaded, not-with-all-dependencies agent jar
|
||||||
|
pushd parfait-agent/target
|
||||||
|
mv original-parfait-agent.jar parfait-agent.jar
|
||||||
|
popd
|
||||||
|
|
||||||
|
%install
|
||||||
|
%mvn_install
|
||||||
|
# install the parfait-agent extra bits (config, script, man page)
|
||||||
|
install -m 755 -d %{buildroot}%{_sysconfdir}/%{name}
|
||||||
|
install -m 644 parfait-agent/target/classes/jvm.json %{buildroot}%{_sysconfdir}/%{name}
|
||||||
|
install -m 755 -d %{buildroot}%{_bindir}
|
||||||
|
install -m 755 bin/%{name}.sh %{buildroot}%{_bindir}/%{name}
|
||||||
|
install -m 755 -d %{buildroot}%{_mandir}/man1
|
||||||
|
install -m 644 man/%{name}.1 %{buildroot}%{_mandir}/man1
|
||||||
|
# special install of shaded, with-all-dependencies agent jar
|
||||||
|
pushd parfait-agent/target
|
||||||
|
install -m 644 parfait-agent-jar-with-dependencies.jar \
|
||||||
|
%{buildroot}%{_javadir}/%{name}/%{name}.jar
|
||||||
|
popd
|
||||||
|
# special install of with-all-dependencies sample jar files
|
||||||
|
for example in acme sleep counter
|
||||||
|
do
|
||||||
|
pushd examples/${example}/target
|
||||||
|
install -m 644 example-${example}-jar-with-dependencies.jar \
|
||||||
|
%{buildroot}%{_javadir}/%{name}/${example}.jar
|
||||||
|
popd
|
||||||
|
done
|
||||||
|
|
||||||
|
%files -f .mfiles
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSE.md
|
||||||
|
|
||||||
|
%files javadoc -f .mfiles-javadoc
|
||||||
|
%license LICENSE.md
|
||||||
|
|
||||||
|
%files examples
|
||||||
|
%dir %{_javadir}/parfait
|
||||||
|
%{_javadir}/%{name}/acme.jar
|
||||||
|
%{_javadir}/%{name}/sleep.jar
|
||||||
|
%{_javadir}/%{name}/counter.jar
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSE.md
|
||||||
|
|
||||||
|
%files -n pcp-parfait-agent
|
||||||
|
%dir %{_javadir}/%{name}
|
||||||
|
%{_javadir}/%{name}/%{name}.jar
|
||||||
|
%doc %{_mandir}/man1/%{name}.1*
|
||||||
|
%{_bindir}/%{name}
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSE.md
|
||||||
|
%dir %{_sysconfdir}/%{name}
|
||||||
|
%config(noreplace)%{_sysconfdir}/%{name}/jvm.json
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Wed Nov 01 2017 Nathan Scott <nathans@redhat.com> - 0.5.4-2
|
||||||
|
- Install a default configuration file for base JVM metrics.
|
||||||
|
|
||||||
|
* Fri Oct 06 2017 Nathan Scott <nathans@redhat.com> - 0.5.4-1
|
||||||
|
- Update to latest upstream sources.
|
||||||
|
- Support (patched) RHEL7 builds.
|
||||||
|
|
||||||
|
* Tue Sep 05 2017 Lukas Berk <lberk@redhat.com> - 0.5.3-1
|
||||||
|
- Update to upstream release
|
||||||
|
|
||||||
|
* Tue Aug 15 2017 Lukas Berk <lberk@redhat.com> - 0.5.1-4
|
||||||
|
- Incorprate feedback from fedora-review tool
|
||||||
|
|
||||||
|
* Thu Mar 23 2017 Nathan Scott <nathans@redhat.com> - 0.5.1-3
|
||||||
|
- Incorprate feedback from gil cattaneo for package review.
|
||||||
|
|
||||||
|
* Mon Mar 06 2017 Nathan Scott <nathans@redhat.com> - 0.5.1-1
|
||||||
|
- Update to latest upstream sources.
|
||||||
|
|
||||||
|
* Tue Feb 28 2017 Nathan Scott <nathans@redhat.com> - 0.5.0-2
|
||||||
|
- Resolve lintian errors - source, license, documentation.
|
||||||
|
|
||||||
|
* Fri Feb 24 2017 Nathan Scott <nathans@redhat.com> - 0.5.0-1
|
||||||
|
- Update to upstream release, dropping java8 patch.
|
||||||
|
|
||||||
|
* Thu Feb 16 2017 Nathan Scott <nathans@redhat.com> - 0.4.0-5
|
||||||
|
- Use RPM macros to ease dropwizard metrics enablement.
|
||||||
|
- Correct the dependency on systems.uom:systems-unicode-java8
|
||||||
|
|
||||||
|
* Fri Nov 25 2016 Nathan Scott <nathans@redhat.com> - 0.4.0-4
|
||||||
|
- Switch to uom-se and conditional use of dropwizard metrics.
|
||||||
|
|
||||||
|
* Fri Oct 28 2016 Nathan Scott <nathans@redhat.com> - 0.4.0-3
|
||||||
|
- Add in parfait wrapper shell script and man page.
|
||||||
|
- Rename the agent package to pcp-parfait-agent.
|
||||||
|
- Add in demo applications jars and parfait-examples package.
|
||||||
|
|
||||||
|
* Thu Oct 20 2016 Nathan Scott <nathans@redhat.com> - 0.4.0-2
|
||||||
|
- Addition of the standalone parfait-agent package.
|
||||||
|
- Add in proxy mode from upstream parfait code too.
|
||||||
|
|
||||||
|
* Wed Oct 12 2016 Nathan Scott <nathans@redhat.com> - 0.4.0-1
|
||||||
|
- Initial version.
|
Loading…
Reference in New Issue
Block a user