Update to run with Podman
This commit is contained in:
13
app/urls.py
13
app/urls.py
@@ -58,6 +58,9 @@ from core.views.manage.threshold.threshold import (
|
||||
ThresholdIRCOverview,
|
||||
)
|
||||
|
||||
# Stats
|
||||
from core.views.manage.monolith import stats
|
||||
|
||||
# Main tool pages
|
||||
from core.views.ui.drilldown import ( # DrilldownTableView,; Drilldown,
|
||||
DrilldownContextModal,
|
||||
@@ -311,4 +314,14 @@ urlpatterns = [
|
||||
notifications.RuleClear.as_view(),
|
||||
name="rule_clear",
|
||||
),
|
||||
path(
|
||||
"manage/monolith/stats/",
|
||||
stats.MonolithStats.as_view(),
|
||||
name="monolith_stats",
|
||||
),
|
||||
path(
|
||||
"manage/monolith/stats_db/<str:type>/",
|
||||
stats.MonolithDBStats.as_view(),
|
||||
name="monolith_stats_db",
|
||||
)
|
||||
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|
||||
|
||||
Reference in New Issue
Block a user