Skip to content

Commit 76409ed

Browse files
Add number of registered_users to prometheus endpoint.
1 parent c468659 commit 76409ed

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/test/java/edu/kit/datamanager/repo/test/integration/ActuatorPrometheusTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ public void testActuator() throws Exception {
112112
this.mockMvc.perform(get("/actuator/prometheus")).andDo(print()).andExpect(status().isOk())
113113
.andExpect(content().string(Matchers.containsString("# TYPE base_repo_test_requests_served_total")))
114114
.andExpect(content().string(Matchers.containsString("# TYPE base_repo_test_unique_users")))
115+
.andExpect(content().string(Matchers.containsString("# TYPE base_repo_test_registered_users")))
115116
.andReturn();
116117
}
117118
}

0 commit comments

Comments
 (0)