From f045e5ebd556a8a3ebd426b0db23fca1d1264e58 Mon Sep 17 00:00:00 2001 From: Edward Oliveira Date: Mon, 17 Jul 2023 19:29:43 -0700 Subject: [PATCH] Hot-fix: endpoint do prometheus endpoint URL --- sapl/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapl/urls.py b/sapl/urls.py index 5f5c2e30f..0481a246b 100644 --- a/sapl/urls.py +++ b/sapl/urls.py @@ -69,7 +69,7 @@ urlpatterns += [ path("robots.txt", TemplateView.as_view( template_name="robots.txt", content_type="text/plain")), - path('prometheus/', include('django_prometheus.urls')), + path(r'', include('django_prometheus.urls')), ]