* add a class for checking pod connectivity * extend pod model to handle new functionality * add an admin frontend to list pods and re-trigger checks manually * add a daily worker to run through all the pods * add unit tests for most of the new code
21 lines
1 KiB
Text
21 lines
1 KiB
Text
- content_for :head do
|
|
= stylesheet_link_tag :admin
|
|
|
|
%h2= t(".pages")
|
|
|
|
%ul#admin_nav.nav.nav-pills.nav-stacked
|
|
%li{role: "presentation", class: current_page?(admin_dashboard_path) && "active"}
|
|
= link_to t(".dashboard"), admin_dashboard_path
|
|
%li{role: "presentation", class: current_page?(user_search_path) && "active"}
|
|
= link_to t(".user_search"), user_search_path
|
|
%li{role: "presentation", class: current_page?(weekly_user_stats_path) && "active"}
|
|
= link_to t(".weekly_user_stats"), weekly_user_stats_path
|
|
%li{role: "presentation", class: current_page?(pod_stats_path) && "active"}
|
|
= link_to t(".pod_stats"), pod_stats_path
|
|
%li{role: "presentation", class: current_page?(report_index_path) && "active"}
|
|
= link_to t(".report"), report_index_path
|
|
%li{role: "presentation", class: current_page?(admin_pods_path) && "active"}
|
|
= link_to t(".pod_network"), admin_pods_path
|
|
%li{role: "presentation", class: current_page?(sidekiq_path) && "active"}
|
|
= link_to t(".sidekiq_monitor"), sidekiq_path
|
|
|