Skip to content

Commit ff11b72

Browse files
authored
Merge pull request #8 from Appdynamics/v7.0
V7.0
2 parents 59fd971 + fa6f014 commit ff11b72

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+2642
-1094
lines changed

.project

Lines changed: 0 additions & 23 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
### Version 7.0.0
2+
* Porting to appd-exts-commons 2.1.0
3+
* Support for Topic Metrics
4+
* config file extension changed from yaml to yml
5+
* config.yml changes with respect to metrics.
6+
* ActiveChannelsCount metric added
7+
* monitor.xml changes
8+
9+
### Version 2.0
10+
* Extension revamp, multi threaded metric collection, configurable metrics.
11+
12+
### Version 1.0.0
13+
* Initial open source release

CHANGES.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

LICENSE renamed to LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright [2017] AppDynamics, Inc.
1+
Copyright 2018 AppDynamics LLC and its affiliates
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

NOTICE.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Notice and Disclaimer
2+
3+
All Extensions published by AppDynamics are governed by the Apache License v2 and are excluded from the definition of covered software under any agreement between AppDynamics and the User governing AppDynamics Pro Edition, Test & Dev Edition, or any other Editions.
4+

README.md

Lines changed: 356 additions & 214 deletions
Large diffs are not rendered by default.

pom.xml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,26 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright 2018. AppDynamics LLC and its affiliates.
4+
~ All Rights Reserved.
5+
~ This is unpublished proprietary source code of AppDynamics LLC and its affiliates.
6+
~ The copyright notice above does not evidence any actual or intended publication of such source code.
7+
-->
8+
29
<project xmlns="http://maven.apache.org/POM/4.0.0"
310
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
411
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
512
<modelVersion>4.0.0</modelVersion>
6-
<groupId>com.appdynamics.wmqmonitor</groupId>
13+
<groupId>com.appdynamics.extensions</groupId>
714
<artifactId>websphere-mq-monitoring-extension</artifactId>
8-
<version>6.5.0</version>
15+
<version>7.0.0</version>
916
<packaging>jar</packaging>
1017
<name>websphere-mq-monitoring-extension</name>
1118
<url>http://maven.apache.org</url>
1219
<properties>
1320
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1421
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>
1522
<lib.dir>${basedir}/lib</lib.dir>
16-
<ibm.mq.lib.version>7.5.0.2</ibm.mq.lib.version>
23+
<ibm.mq.lib.version>7.5.0.8</ibm.mq.lib.version>
1724
<target.dir>${project.build.directory}/WMQMonitor</target.dir>
1825
</properties>
1926
<dependencies>
@@ -58,7 +65,7 @@
5865
<version>${ibm.mq.lib.version}</version>
5966
<systemPath>${lib.dir}/com.ibm.mq.commonservices.jar</systemPath>
6067
</dependency>
61-
<!-- <dependency>
68+
<!--<dependency>
6269
<groupId>com.ibm</groupId>
6370
<artifactId>connector</artifactId>
6471
<version>${ibm.mq.lib.version}</version>
@@ -75,23 +82,7 @@
7582
<dependency>
7683
<groupId>com.appdynamics</groupId>
7784
<artifactId>appd-exts-commons</artifactId>
78-
<version>1.6.2</version>
79-
</dependency>
80-
<dependency>
81-
<groupId>com.google.guava</groupId>
82-
<artifactId>guava</artifactId>
83-
<version>11.0.2</version>
84-
<exclusions>
85-
<exclusion>
86-
<groupId>com.google.code.findbugs</groupId>
87-
<artifactId>jsr305</artifactId>
88-
</exclusion>
89-
</exclusions>
90-
</dependency>
91-
<dependency>
92-
<groupId>org.yaml</groupId>
93-
<artifactId>snakeyaml</artifactId>
94-
<version>1.13</version>
85+
<version>2.1.0</version>
9586
</dependency>
9687
<dependency>
9788
<groupId>junit</groupId>
@@ -100,16 +91,23 @@
10091
<scope>test</scope>
10192
</dependency>
10293
<dependency>
103-
<groupId>log4j</groupId>
104-
<artifactId>log4j</artifactId>
105-
<version>1.2.17</version>
106-
<scope>provided</scope>
94+
<groupId>org.powermock</groupId>
95+
<artifactId>powermock-api-mockito</artifactId>
96+
<version>1.7.0</version>
97+
<scope>test</scope>
98+
</dependency>
99+
<dependency>
100+
<groupId>org.powermock</groupId>
101+
<artifactId>powermock-module-junit4</artifactId>
102+
<version>1.7.0</version>
103+
<scope>test</scope>
107104
</dependency>
105+
<!--Required by FileAlterationMonitor in FileWatchListenerModule, else tests will fail -->
108106
<dependency>
109107
<groupId>commons-io</groupId>
110108
<artifactId>commons-io</artifactId>
111109
<version>2.4</version>
112-
<scope>provided</scope>
110+
<scope>test</scope>
113111
</dependency>
114112
</dependencies>
115113
<build>
@@ -173,7 +171,9 @@
173171
<target>
174172
<mkdir dir="${target.dir}"/>
175173
<copy todir="${target.dir}">
176-
<fileset dir="src/main/resources/conf" includes="monitor.xml,config.yaml"/>
174+
<fileset dir="src/main/resources/conf" includes="monitor.xml,config.yml"/>
175+
<fileset dir="${project.basedir}" includes="LICENSE.txt"/>
176+
<fileset dir="${project.basedir}" includes="NOTICE.txt"/>
177177
</copy>
178178
<copy todir="${target.dir}">
179179
<fileset dir="${project.build.directory}" includes="${project.build.finalName}.${project.packaging}"/>

smart-dashboards-1.png

-183 KB
Binary file not shown.

smart-dashboards-2.png

-162 KB
Binary file not shown.

0 commit comments

Comments
 (0)