Fixed label in automatic graph in node

This commit is contained in:
Daniel Maya 2017-08-03 13:13:34 +02:00 committed by daniel
parent afc481098d
commit 7d578093d9
1 changed files with 0 additions and 17 deletions

View File

@ -5846,22 +5846,6 @@ function reporting_custom_graph($report, $content, $type = 'dinamic',
'id_agent_module'=>$graph_item['id_agent_module']);
}
if($type_report == 'automatic_graph'){
$label = (isset($content['style']['label'])) ? $content['style']['label'] : '';
if (!empty($label)) {
if ($config['metaconsole']) {
$id_meta = metaconsole_get_id_server($content["server_name"]);
$server = metaconsole_get_connection_by_id ($id_meta);
metaconsole_connect($server);
}
$label = reporting_label_macro($content, $label);
if ($config['metaconsole']) {
metaconsole_restore_db();
}
}
}
$labels[$graph_item['id_agent_module']] = $label;
}
}
@ -5922,7 +5906,6 @@ function reporting_custom_graph($report, $content, $type = 'dinamic',
metaconsole_restore_db();
}
return reporting_check_structure_content($return);
}