You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In containerized deployments we can't support log collection, because we
can't mount the log depot. In appliance deployments, we're trying to get
away from the application UI having anything to do with the system it's
running on to avoid the need to elevate permissions. As such, this
commit removes log collection from the UI.
Instead, on appliances, users can manually mount an NFS server (or
really any server type - even more than our UI supports), and then use
the /var/www/miq/vmdb/tools/collect_logs tool. If the user needs
scheduling, they can schedule a cron on the appliance to run the tool.
Replaces ManageIQ#8235
Co-Authored-By: Melody-Ann-Seda-Marotte <[email protected]>
add_flash(_("Log collection for %{product} %{object_type} %{name} has been initiated") % {:product=>Vmdb::Appliance.PRODUCT_NAME,:object_type=>klass.name,:name=>instance.display_name})
398
-
end
399
-
end
400
-
get_node_info(x_node)
401
-
replace_right_cell(:nodetype=>x_node)
402
-
end
403
-
404
275
# Reload the selected node and redraw the screen via ajax
405
276
defrefresh_server_summary
406
277
assert_privileges("refresh_server_summary")
@@ -677,7 +548,7 @@ def diagnostics_set_form_vars
677
548
@sb[:selected_typ]="miq_server"
678
549
end
679
550
else
680
-
@sb[:active_tab]="diagnostics_collect_logs"# setting it to show collect logs tab as first tab for the servers that are not started
551
+
@sb[:active_tab]="diagnostics_summary"# setting it to summary tab as first tab for the servers that are not started
0 commit comments