|
32 | 32 | <description>ZooKeeper Prometheus.io Metrics Provider implementation</description> |
33 | 33 |
|
34 | 34 | <properties> |
35 | | - <prometheus.version>0.9.0</prometheus.version> |
| 35 | + <prometheus.version>1.3.10</prometheus.version> |
| 36 | + <jetty.version>9.4.57.v20241219</jetty.version> |
36 | 37 | </properties> |
37 | 38 | <dependencies> |
38 | 39 | <dependency> |
|
46 | 47 | </dependency> |
47 | 48 | <dependency> |
48 | 49 | <groupId>io.prometheus</groupId> |
49 | | - <artifactId>simpleclient</artifactId> |
| 50 | + <artifactId>prometheus-metrics-core</artifactId> |
50 | 51 | <version>${prometheus.version}</version> |
51 | 52 | </dependency> |
52 | 53 | <dependency> |
53 | 54 | <groupId>io.prometheus</groupId> |
54 | | - <artifactId>simpleclient_hotspot</artifactId> |
| 55 | + <artifactId>prometheus-metrics-instrumentation-jvm</artifactId> |
55 | 56 | <version>${prometheus.version}</version> |
56 | 57 | </dependency> |
57 | 58 | <dependency> |
58 | 59 | <groupId>io.prometheus</groupId> |
59 | | - <artifactId>simpleclient_servlet</artifactId> |
| 60 | + <artifactId>prometheus-metrics-exporter-servlet-javax</artifactId> |
60 | 61 | <version>${prometheus.version}</version> |
61 | 62 | </dependency> |
62 | 63 | <dependency> |
63 | | - <groupId>org.eclipse.jetty</groupId> |
64 | | - <artifactId>jetty-server</artifactId> |
65 | | - <scope>provided</scope> |
| 64 | + <groupId>io.prometheus</groupId> |
| 65 | + <artifactId>prometheus-metrics-exporter-httpserver</artifactId> |
| 66 | + <version>${prometheus.version}</version> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>io.prometheus</groupId> |
| 70 | + <artifactId>prometheus-metrics-exposition-formats</artifactId> |
| 71 | + <version>${prometheus.version}</version> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>io.prometheus</groupId> |
| 75 | + <artifactId>prometheus-metrics-config</artifactId> |
| 76 | + <version>${prometheus.version}</version> |
| 77 | + </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>org.eclipse.jetty</groupId> |
| 80 | + <artifactId>jetty-server</artifactId> |
| 81 | + <version>${jetty.version}</version> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>org.eclipse.jetty</groupId> |
| 85 | + <artifactId>jetty-servlet</artifactId> |
| 86 | + <version>${jetty.version}</version> |
| 87 | + </dependency> |
| 88 | + <!-- You likely don't need this, but if you do, here's the correct syntax --> |
| 89 | + <dependency> |
| 90 | + <groupId>org.eclipse.jetty</groupId> |
| 91 | + <artifactId>jetty-util</artifactId> |
| 92 | + <version>${jetty.version}</version> |
| 93 | + <!-- You could add a scope here if needed, e.g., <scope>provided</scope> --> |
66 | 94 | </dependency> |
67 | 95 | <dependency> |
68 | | - <groupId>org.eclipse.jetty</groupId> |
69 | | - <artifactId>jetty-servlet</artifactId> |
70 | | - <scope>provided</scope> |
| 96 | + <groupId>javax.servlet</groupId> |
| 97 | + <artifactId>javax.servlet-api</artifactId> |
| 98 | + <version>3.1.0</version> |
| 99 | + <scope>provided</scope> |
71 | 100 | </dependency> |
72 | 101 | <dependency> |
73 | 102 | <groupId>ch.qos.logback</groupId> |
|
0 commit comments