Ticket 10470 Agent improvements
This commit is contained in:
parent
8a5a25cd65
commit
a1bf42c9f9
|
@ -813,7 +813,7 @@ if ($id_agente) {
|
||||||
$pure = (int) get_parameter('pure');
|
$pure = (int) get_parameter('pure');
|
||||||
if ($pure === 0) {
|
if ($pure === 0) {
|
||||||
ui_print_standard_header(
|
ui_print_standard_header(
|
||||||
agents_get_alias($id_agente),
|
__('Agent setup view'),
|
||||||
'images/agent.png',
|
'images/agent.png',
|
||||||
false,
|
false,
|
||||||
$helper,
|
$helper,
|
||||||
|
|
|
@ -80,7 +80,7 @@ $alive_animation = agents_get_starmap($id_agente, 200, 50);
|
||||||
* START: TABLE AGENT BUILD.
|
* START: TABLE AGENT BUILD.
|
||||||
*/
|
*/
|
||||||
$agentCaptionAddedMessage = [];
|
$agentCaptionAddedMessage = [];
|
||||||
$agentCaption = '<span class="subsection_header_title">'.__('Agent status').'</span>';
|
$agentCaption = '<span class="subsection_header_title">'.ucfirst(agents_get_alias($agent['id_agente'])).'</span>';
|
||||||
$in_planned_downtime = (bool) db_get_sql(
|
$in_planned_downtime = (bool) db_get_sql(
|
||||||
'SELECT executed FROM tplanned_downtime
|
'SELECT executed FROM tplanned_downtime
|
||||||
INNER JOIN tplanned_downtime_agents
|
INNER JOIN tplanned_downtime_agents
|
||||||
|
@ -209,7 +209,10 @@ $table_agent_graph .= '</div>';*/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$table_status->data['agent_os'][0] = __('OS');
|
$table_status->data['agent_os'][0] = __('OS');
|
||||||
$table_status->data['agent_os'][1] = (empty($agent['os_version']) === true) ? get_os_name((int) $agent['id_os']) : $agent['os_version'];
|
$agentOS = [];
|
||||||
|
$agentOS[] = html_print_div([ 'content' => (empty($agent['os_version']) === true) ? get_os_name((int) $agent['id_os']) : $agent['os_version']], true);
|
||||||
|
$agentOS[] = html_print_div([ 'style' => 'width: 32px', 'content' => ui_print_os_icon($agent['id_os'], false, true)], true);
|
||||||
|
$table_status->data['agent_os'][1] = html_print_div(['class' => 'agent_details_agent_data', 'content' => implode('', $agentOS)], true);
|
||||||
|
|
||||||
// $table_agent_os .= (empty($agent['os_version']) === true) ? get_os_name((int) $agent['id_os']) : $agent['os_version'].'</p>';
|
// $table_agent_os .= (empty($agent['os_version']) === true) ? get_os_name((int) $agent['id_os']) : $agent['os_version'].'</p>';
|
||||||
$addresses = agents_get_addresses($id_agente);
|
$addresses = agents_get_addresses($id_agente);
|
||||||
|
|
|
@ -1904,7 +1904,7 @@ switch ($tab) {
|
||||||
|
|
||||||
if ((bool) $config['pure'] === false) {
|
if ((bool) $config['pure'] === false) {
|
||||||
ui_print_standard_header(
|
ui_print_standard_header(
|
||||||
agents_get_alias($id_agente),
|
__('Agent main view'),
|
||||||
$icon,
|
$icon,
|
||||||
false,
|
false,
|
||||||
($help_header ?? ''),
|
($help_header ?? ''),
|
||||||
|
|
Loading…
Reference in New Issue