summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Reports/reports/urls.py
diff options
context:
space:
mode:
authorTim Laszlo <tim.laszlo@gmail.com>2012-06-05 14:41:43 -0500
committerTim Laszlo <tim.laszlo@gmail.com>2012-06-05 14:41:43 -0500
commit5de4020d2a2ed1028ce39d3a8bd3a8bd865fc8cd (patch)
treead6142d0100871bc86ae7fde50effc04a675b8f7 /src/lib/Bcfg2/Server/Reports/reports/urls.py
parente2b832878a70478add4859f6f17039be9474b749 (diff)
downloadbcfg2-5de4020d2a2ed1028ce39d3a8bd3a8bd865fc8cd.tar.gz
bcfg2-5de4020d2a2ed1028ce39d3a8bd3a8bd865fc8cd.tar.bz2
bcfg2-5de4020d2a2ed1028ce39d3a8bd3a8bd865fc8cd.zip
web_reports: added a view to show the most common configuration problems
Diffstat (limited to 'src/lib/Bcfg2/Server/Reports/reports/urls.py')
-rw-r--r--src/lib/Bcfg2/Server/Reports/reports/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/Bcfg2/Server/Reports/reports/urls.py b/src/lib/Bcfg2/Server/Reports/reports/urls.py
index 434ce07b7..c7255101f 100644
--- a/src/lib/Bcfg2/Server/Reports/reports/urls.py
+++ b/src/lib/Bcfg2/Server/Reports/reports/urls.py
@@ -25,6 +25,8 @@ urlpatterns += patterns('Bcfg2.Server.Reports.reports',
(r'^summary/?$', 'views.display_summary', None, 'reports_summary'),
(r'^timing/?$', 'views.display_timing', None, 'reports_timing'),
(r'^elements/(?P<type>\w+)/?$', 'views.config_item_list', None, 'reports_item_list'),
+ (r'^common/(?P<threshold>\d+)/?$', 'views.common_problems', None, 'reports_common_problems'),
+ (r'^common/?$', 'views.common_problems', None, 'reports_common_problems'),
))
urlpatterns += patterns('Bcfg2.Server.Reports.reports',