diff options
author | Edyta Krukowska <edyta.krukowska@nokia.com> | 2021-03-22 13:01:38 +0100 |
---|---|---|
committer | Edyta Krukowska <edyta.krukowska@nokia.com> | 2021-03-23 08:03:36 +0100 |
commit | 248f7071137dbb16e9362a06a86f744d19486052 (patch) | |
tree | 7ffac2873cb6152974b072f43e65ff6f3b8ed661 | |
parent | 22687ff3bf09afec08e15cdc0e3f3387b11e7fa1 (diff) |
Enable prometheus metrics by default
Issue-ID: DCAEGEN2-2683
Signed-off-by: Edyta Krukowska <edyta.krukowska@nokia.com>
Change-Id: Ie8259fb5ac42fe012e19950fed3973a4f6b716cf
-rw-r--r-- | Changelog.md | 8 | ||||
-rw-r--r-- | pom.xml | 42 | ||||
-rw-r--r-- | version.properties | 2 |
3 files changed, 23 insertions, 29 deletions
diff --git a/Changelog.md b/Changelog.md index 563a860d..c95ba903 100644 --- a/Changelog.md +++ b/Changelog.md @@ -46,7 +46,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - [DCAEGEN2-2593](https://jira.onap.org/browse/DCAEGEN2-2593) - Vulnerability removal for ves collector Fix sonar reporting problem ## [1.8.0] - 24/02/2021 - - [DCAEGEN2-2477](https://jira.onap.org/browse/DCAEGEN2-2477) - Update VESCollector CommonEventSchema to ONAP/Honolulu version - Use updated CommonEventSchema to validate IP in VES Collector + - [DCAEGEN2-2477](https://jira.onap.org/browse/DCAEGEN2-2477) - Update VESCollector CommonEventSchema to ONAP/Honolulu version ## [1.9.0] - 18/03/2021 - - [DCAEGEN2-2682](https://jira.onap.org/browse/DCAEGEN2-2682) - Update libraries + - [DCAEGEN2-2682](https://jira.onap.org/browse/DCAEGEN2-2682) - Update libraries +## [1.9.1] - 22/03/2021 + - [DCAEGEN2-2683](https://jira.onap.org/browse/DCAEGEN2-2683) - Enable Spring Prometheus metrics end-point in VES + Remove mvn profile for enable/disable Prometheus metrics @@ -24,7 +24,7 @@ </parent>
<groupId>org.onap.dcaegen2.collectors.ves</groupId>
<artifactId>VESCollector</artifactId>
- <version>1.9.0-SNAPSHOT</version>
+ <version>1.9.1-SNAPSHOT</version>
<name>dcaegen2-collectors-ves</name>
<description>VESCollector</description>
<properties>
@@ -220,30 +220,6 @@ </build>
<profiles>
<profile>
- <id>buildForPerfTests</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <dependencies>
- <!-- Libraries related with performance tests-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-actuator</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>io.micrometer</groupId>
- <artifactId>micrometer-registry-prometheus</artifactId>
- <version>${micrometer.version}</version>
- </dependency>
- <dependency>
- <groupId>io.micrometer</groupId>
- <artifactId>micrometer-core</artifactId>
- <version>${micrometer.version}</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
<id>with-system-proxy</id>
<build>
<plugins>
@@ -302,6 +278,22 @@ </dependencies>
</dependencyManagement>
<dependencies>
+ <!-- Libraries related with performance tests-->
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-actuator</artifactId>
+ <version>${spring.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.micrometer</groupId>
+ <artifactId>micrometer-registry-prometheus</artifactId>
+ <version>${micrometer.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.micrometer</groupId>
+ <artifactId>micrometer-core</artifactId>
+ <version>${micrometer.version}</version>
+ </dependency>
<!-- JSON RELATED -->
<dependency>
<groupId>com.googlecode.json-simple</groupId>
diff --git a/version.properties b/version.properties index a1653f6b..e31b2def 100644 --- a/version.properties +++ b/version.properties @@ -1,6 +1,6 @@ major=1 minor=9 -patch=0 +patch=1 base_version=${major}.${minor}.${patch} release_version=${base_version} snapshot_version=${base_version}-SNAPSHOT |