-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add Autoconfiguration.imports * remove spring.factories * replace @configuration with @autoConfiguration * update dependencies and documentation * migrate testclass from javax to jakarta
- Loading branch information
1 parent
a692110
commit e9a272d
Showing
8 changed files
with
19 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
<groupId>de.dm.infrastructure</groupId> | ||
<artifactId>micrometer-metrics-wrapper</artifactId> | ||
<version>1.4.1-SNAPSHOT</version> | ||
<version>2.0.0-SNAPSHOT</version> | ||
|
||
<name>micrometer-metrics-wrapper</name> | ||
<description>Micrometer wrapper to allow generic class level metric values</description> | ||
|
@@ -32,18 +32,12 @@ | |
<name>Dominik Johs</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<organization>dmTECH GmbH</organization> | ||
<organizationUrl>https://www.dmtech.de</organizationUrl> | ||
<name>Samuel Abt</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
|
||
<parent> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-parent</artifactId> | ||
<version>2.7.6</version> | ||
<version>3.0.2</version> | ||
<relativePath/> | ||
</parent> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...esources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
de.dm.infrastructure.metrics.MicrometerMetricsAutoConfiguration |
9 changes: 5 additions & 4 deletions
9
src/test/java/de/dm/infrastructure/metrics/testfixtures/TrivialDomain.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
management: | ||
statsd: | ||
metrics: | ||
export: | ||
enabled: true | ||
flavor: telegraf |