33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>com.lingniu.ingest</groupId>
|
||
<artifactId>lingniu-vehicle-ingest</artifactId>
|
||
<version>0.1.0-SNAPSHOT</version>
|
||
<relativePath>../../../pom.xml</relativePath>
|
||
</parent>
|
||
<artifactId>observability</artifactId>
|
||
<name>observability</name>
|
||
<description>Micrometer + Prometheus + 业务指标封装(事件计数、Dispatcher 耗时、DLQ 计数等)。</description>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>com.lingniu.ingest</groupId>
|
||
<artifactId>ingest-api</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.lingniu.ingest</groupId>
|
||
<artifactId>ingest-core</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.micrometer</groupId>
|
||
<artifactId>micrometer-registry-prometheus</artifactId>
|
||
</dependency>
|
||
</dependencies>
|
||
</project>
|