diff options
| author | wangwei <[email protected]> | 2024-01-09 14:47:21 +0800 |
|---|---|---|
| committer | wangwei <[email protected]> | 2024-01-09 14:47:21 +0800 |
| commit | 026329f9b13d2762639cb64427b305410c3a200c (patch) | |
| tree | c6e7c99ed622a10b48964f5cb3848e81d239c2f8 /pom.xml | |
| parent | e570c103d0c905f108da6433ab44491310956ae6 (diff) | |
1.增加Prometheus自定义metrics 2.fqdb匹配模式更新为子串匹配
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 35 |
1 files changed, 35 insertions, 0 deletions
@@ -49,6 +49,41 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + </dependency> + <!--Springboot集成prometheus依赖--> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-actuator</artifactId> + </dependency> + <dependency> + <groupId>io.micrometer</groupId> + <artifactId>micrometer-core</artifactId> + </dependency> + <dependency> + <groupId>io.micrometer</groupId> + <artifactId>micrometer-registry-prometheus</artifactId> + </dependency> + <!-- https://mvnrepository.com/artifact/io.prometheus/simpleclient --> + <!-- https://mvnrepository.com/artifact/io.prometheus/simpleclient_common --> + <dependency> + <groupId>io.prometheus</groupId> + <artifactId>simpleclient_common</artifactId> + <version>0.16.0</version> + </dependency> + <dependency> + <groupId>io.prometheus</groupId> + <artifactId>simpleclient_hotspot</artifactId> + <version>0.16.0</version> + </dependency> + <dependency> + <groupId>io.prometheus</groupId> + <artifactId>simpleclient_servlet</artifactId> + <version>0.16.0</version> + </dependency> + <!-- https://mvnrepository.com/artifact/org.mariadb.jdbc/mariadb-java-client --> <dependency> <groupId>mysql</groupId> |
