fixed visual console custam graph in meta

This commit is contained in:
daniel 2018-10-18 13:24:15 +02:00
parent d23e47dd9d
commit e299209a92
8 changed files with 74 additions and 35 deletions

View File

@ -4,6 +4,7 @@ ALTER TABLE `tservice` ADD COLUMN `is_favourite` tinyint(1) NOT NULL default 0;
UPDATE tservice SET `is_favourite` = 1 WHERE `name` REGEXP '^[_|.|\[|\(]';
ALTER TABLE tlayout_data ADD COLUMN `show_last_value` tinyint(1) UNSIGNED NULL default '0';
ALTER TABLE tlayout_template_data ADD COLUMN `show_last_value` tinyint(1) UNSIGNED NULL default '0';
ALTER TABLE tlayout MODIFY `name` varchar(600) NOT NULL;
ALTER TABLE tmetaconsole_setup ADD COLUMN `meta_dbuser` text;

View File

@ -1778,6 +1778,7 @@ CREATE TABLE IF NOT EXISTS `tlayout_template_data` (
FOREIGN KEY (`id_layout_template`) REFERENCES tlayout_template(`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE tlayout_template_data ADD COLUMN `show_last_value` tinyint(1) UNSIGNED NULL default '0';
-- ---------------------------------------------------------------------
-- Table `tlog_graph_models`
-- ---------------------------------------------------------------------

View File

@ -849,8 +849,7 @@ function readFields() {
values['enable_link'] = $("input[name=enable_link]").is(':checked') ? 1 : 0;
values['id_group'] = $("select[name=group]").val();
values['id_custom_graph'] = parseInt(
$("#custom_graph option:selected").val());
values['id_custom_graph'] = $("#custom_graph option:selected").val();
values['width_box'] = parseInt(
$("input[name='width_box']").val());
values['height_box'] = parseInt(
@ -1715,8 +1714,13 @@ function loadFieldsFromDB(item) {
.prop('checked', true);
$("input[name='radio_choice']").trigger('change');
$("#custom_graph option[value=" + data.id_custom_graph + "]").prop("selected", true);
if (is_metaconsole()){
$("#custom_graph option[value='" + data.id_custom_graph + '|' + data.id_metaconsole + "']").prop("selected", true);
}
else{
$("#custom_graph option[value=" + data.id_custom_graph + "]").prop("selected", true);
}
}
}
@ -2316,12 +2320,18 @@ function setModuleGraph(id_data) {
dataType: 'json',
success: function (data)
{
var url_hack_metaconsole = '';
if (is_metaconsole()) {
url_hack_metaconsole = '../../';
}
if (data['no_data'] == true) {
$('#' + id_data).html(data['url']);
}
else {
if($("#module_row").css('display')!='none'){
$("#" + id_data + " img").attr('src', 'images/console/signes/module_graph.png');
$("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module_graph.png');
if($('#text-width_module_graph').val() == 0 || $('#text-height_module_graph').val() == 0){
$("#" + id_data + " img").css('width', '300px');
$("#" + id_data + " img").css('height', '180px');
@ -2331,7 +2341,7 @@ function setModuleGraph(id_data) {
$("#" + id_data + " img").css('height', $('#text-height_module_graph').val()+'px');
}
}else{
$("#" + id_data + " img").attr('src', 'images/console/signes/custom_graph.png');
$("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/custom_graph.png');
if($('#text-width_module_graph').val() == 0 || $('#text-height_module_graph').val() == 0){
$("#" + id_data + " img").css('width', '300px');
$("#" + id_data + " img").css('height', '180px');

View File

@ -427,13 +427,27 @@ foreach ($layoutDatas as $layoutData) {
}
}
}
$modules = io_safe_output($modules);
if ($layoutData['id_agent'] == 0 and $layoutData['id_custom_graph'] != 0) {
$table->data[$i + 2][1] = html_print_select_from_sql(
"SELECT id_graph, name FROM tgraph", 'custom_graph_' . $idLayoutData,
$layoutData['id_custom_graph'], '', __('None'), 0, true);
if(is_metaconsole()){
$graphs = array();
$graphs = metaconsole_get_custom_graphs(true);
$table->data[$i + 2][1] = html_print_select(
$graphs, 'custom_graph_' . $idLayoutData,
$layoutData['id_custom_graph'] . "|" . $layoutData['id_metaconsole'],
'', __('None'), 0, true
);
}
else{
$table->data[$i + 2][1] = html_print_select_from_sql(
"SELECT id_graph, name FROM tgraph",
'custom_graph_' . $idLayoutData,
$layoutData['id_custom_graph'],
'', __('None'), 0, true
);
}
} else {
$table->data[$i + 2][1] = html_print_select($modules,
'module_' . $idLayoutData,
@ -446,12 +460,10 @@ foreach ($layoutDatas as $layoutData) {
}
break;
}
//Empty
$table->data[$i + 2][2] = '';
//Period
switch ($layoutData['type']) {
case MODULE_GRAPH:

View File

@ -1206,13 +1206,29 @@ switch ($action) {
break;
case 'module_graph':
$values['type'] = MODULE_GRAPH;
if(is_metaconsole()){
$explode_id = explode("|", $values['id_custom_graph']);
$values['id_custom_graph'] = $explode_id[0];
$values['id_metaconsole'] = $explode_id[1];
}
if ($values['id_custom_graph'] > 0 ) {
$values['height'] = $height_module_graph;
$values['width'] = $width_module_graph;
if(is_metaconsole()){
$server_data = metaconsole_get_connection_by_id($values['id_metaconsole']);
// Establishes connection
if (metaconsole_load_external_db($server_data) !== NOERR) continue;
}
$graph_conf = db_get_row('tgraph', 'id_graph', $values['id_custom_graph']);
if(is_metaconsole()){
metaconsole_restore_db();
}
$graph_stacked = $graph_conf['stacked'];
if ( $graph_stacked == CUSTOM_GRAPH_BULLET_CHART) {
$values['height'] = 50;

View File

@ -298,7 +298,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) {
'#000000', 'text-grid_color', '', 7, 7, false,
'', 'class="grid_color"', true) .
'</td>';
$form_items['radio_choice_graph'] = array();
$form_items['radio_choice_graph']['items'] = array(
'module_graph',
@ -312,27 +312,25 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) {
. __('Custom graph') . "&nbsp;&nbsp;" .
html_print_radio_button('radio_choice', 'custom_graph', '', 'module_graph', true) .
'</td>';
$form_items['custom_graph_row'] = array();
$form_items['custom_graph_row']['items'] = array(
'module_graph',
'datos');
$form_items['custom_graph_row']['html'] =
'<td align="left" style="">' . __('Custom graph') . '</td>
<td align="left" style="">' .
html_print_select_from_sql(
"SELECT id_graph, name FROM tgraph", 'custom_graph',
'', '', __('None'), 0, true) .
'</td>';
$form_items['custom_graph_row']['html'] = '<td align="left" style="">' . __('Custom graph') . '</td><td align="left" style="">';
if(is_metaconsole()){
$graphs = array();
$graphs = metaconsole_get_custom_graphs(true);
$form_items['custom_graph_row']['html'] .= html_print_select($graphs, 'custom_graph', '', '', __('None'), 0, true);
}
else{
$form_items['custom_graph_row']['html'] .= html_print_select_from_sql("SELECT id_graph, name FROM tgraph", 'custom_graph','', '', __('None'), 0, true);
}
$form_items['custom_graph_row']['html'] .= '</td>';
$form_items['agent_row'] = array();
$form_items['agent_row']['items'] = array('static_graph',
'percentile_bar', 'percentile_item', 'module_graph',
'simple_value', 'datos', 'auto_sla_graph');
$form_items['agent_row']['html'] = '<td align="left">' .
__('Agent') . '</td>';
__('Agent') . '</td>';
$params = array();
$params['return'] = true;
$params['show_helptip'] = true;

View File

@ -185,7 +185,7 @@ function d3_bullet_chart($chart_data, $width, $height, $color, $legend,
.bullet g text { font-size:'.$font_size.'pt;}
</style>
<script src="'. $config['homeurl'] . 'include/graphs/bullet.js"></script>
<script src="'. $homeurl . 'include/graphs/bullet.js"></script>
<script language="javascript" type="text/javascript">
var margin = {top: 5, right: 40, bottom: 20, left: 120};

View File

@ -3342,6 +3342,7 @@ CREATE TABLE IF NOT EXISTS `tlayout_template_data` (
`clock_animation` varchar(60) NOT NULL default "analogic_1",
`time_format` varchar(60) NOT NULL default "time",
`timezone` varchar(60) NOT NULL default "Europe/Madrid",
`show_last_value` tinyint(1) UNSIGNED NULL default '0',
PRIMARY KEY(`id`),
FOREIGN KEY (`id_layout_template`) REFERENCES tlayout_template(`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET=utf8;