You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by se...@apache.org on 2021/02/03 20:19:53 UTC

[openmeetings] 01/02: HOS-241 Fix register servlet for measuring call length.

This is an automated email from the ASF dual-hosted git repository.

sebawagner pushed a commit to branch feature/OPENMEETINGS-2567-investigate-performance-monitoring
in repository https://gitbox.apache.org/repos/asf/openmeetings.git

commit 1f031ce2b88b11f87b6c0d783b3c42674d36f058
Author: Sebastian Wagner <se...@apache.org>
AuthorDate: Wed Feb 3 19:41:07 2021 +1300

    HOS-241 Fix register servlet for measuring call length.
---
 openmeetings-web/src/main/webapp/WEB-INF/web.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/openmeetings-web/src/main/webapp/WEB-INF/web.xml b/openmeetings-web/src/main/webapp/WEB-INF/web.xml
index 265231f..c479f1a 100644
--- a/openmeetings-web/src/main/webapp/WEB-INF/web.xml
+++ b/openmeetings-web/src/main/webapp/WEB-INF/web.xml
@@ -79,6 +79,11 @@
 	</filter>
 	
 	<filter-mapping>
+  		<filter-name>prometheusFilter</filter-name>
+  		<url-pattern>/*</url-pattern>
+	</filter-mapping>
+	
+	<filter-mapping>
 		<filter-name>OpenmeetingsApplication</filter-name>
 		<url-pattern>/*</url-pattern>
 	</filter-mapping>