Skip to content

Commit 4bb81a6

Browse files
authored
Merge pull request #225 from codeine-cd/codeine-224
codeine-224 add Prometheus end point to the peer - also upgraded to …
2 parents 40b91b7 + 66cc793 commit 4bb81a6

File tree

6 files changed

+522
-445
lines changed

6 files changed

+522
-445
lines changed

pom.xml

+26-8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
<artifactId>codeine</artifactId>
66
<version>1.0.0</version>
77
<name>codeine</name>
8+
<properties>
9+
<prometheus_client_version>0.3.0</prometheus_client_version>
10+
</properties>
811
<build>
912
<sourceDirectory>src/external/mysql_lib</sourceDirectory>
1013
<testSourceDirectory>test</testSourceDirectory>
@@ -140,7 +143,7 @@
140143
<dependency>
141144
<groupId>com.zaxxer</groupId>
142145
<artifactId>HikariCP</artifactId>
143-
<version>2.7.4</version>
146+
<version>2.7.8</version>
144147
</dependency>
145148
<dependency>
146149
<groupId>log4j</groupId>
@@ -180,22 +183,22 @@
180183
<dependency>
181184
<groupId>org.eclipse.jetty</groupId>
182185
<artifactId>jetty-server</artifactId>
183-
<version>8.2.0.v20160908</version>
186+
<version>9.4.8.v20171121</version>
184187
</dependency>
185188
<dependency>
186189
<groupId>org.eclipse.jetty</groupId>
187190
<artifactId>jetty-security</artifactId>
188-
<version>8.2.0.v20160908</version>
191+
<version>9.4.8.v20171121</version>
189192
</dependency>
190193
<dependency>
191194
<groupId>org.eclipse.jetty</groupId>
192195
<artifactId>jetty-servlet</artifactId>
193-
<version>8.2.0.v20160908</version>
196+
<version>9.4.8.v20171121</version>
194197
</dependency>
195198
<dependency>
196199
<groupId>org.eclipse.jetty</groupId>
197200
<artifactId>jetty-servlets</artifactId>
198-
<version>8.2.0.v20160908</version>
201+
<version>9.4.8.v20171121</version>
199202
</dependency>
200203
<dependency>
201204
<groupId>joda-time</groupId>
@@ -208,9 +211,24 @@
208211
<version>5.1.45</version>
209212
</dependency>
210213
<dependency>
211-
<groupId>org.mongodb</groupId>
212-
<artifactId>mongo-java-driver</artifactId>
213-
<version>2.12.3</version>
214+
<groupId>io.prometheus</groupId>
215+
<artifactId>simpleclient</artifactId>
216+
<version>${prometheus_client_version}</version>
217+
</dependency>
218+
<dependency>
219+
<groupId>io.prometheus</groupId>
220+
<artifactId>simpleclient_hotspot</artifactId>
221+
<version>${prometheus_client_version}</version>
222+
</dependency>
223+
<dependency>
224+
<groupId>io.prometheus</groupId>
225+
<artifactId>simpleclient_jetty</artifactId>
226+
<version>${prometheus_client_version}</version>
227+
</dependency>
228+
<dependency>
229+
<groupId>io.prometheus</groupId>
230+
<artifactId>simpleclient_servlet</artifactId>
231+
<version>${prometheus_client_version}</version>
214232
</dependency>
215233
<dependency>
216234
<groupId>javax.mail</groupId>

0 commit comments

Comments
 (0)