From 2ba5dd767da9a2644292bdb64abff26f0375f811 Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Fri, 26 Jan 2024 12:41:32 +0100 Subject: [PATCH 1/7] visual changes in demo view --- pandora_console/godmode/setup/demo.php | 310 ++++++++++-------- .../include/ajax/demo_data.ajax.php | 27 +- pandora_console/include/functions_ui.php | 6 +- pandora_console/include/styles/pandora.css | 97 ++++++ pandora_console/views/tacticalView/view.php | 49 +-- 5 files changed, 320 insertions(+), 169 deletions(-) diff --git a/pandora_console/godmode/setup/demo.php b/pandora_console/godmode/setup/demo.php index 62446d48a2..719e964fc2 100644 --- a/pandora_console/godmode/setup/demo.php +++ b/pandora_console/godmode/setup/demo.php @@ -34,6 +34,9 @@ if (users_is_admin() === false) { return; } +// Same styles as tactical view is required. +ui_require_css_file('general_tactical_view'); + html_print_input_hidden('demo_items_count', 0); $display_loading = (bool) get_parameter('display_loading', 0); @@ -107,29 +110,48 @@ $running_create = ($current_progress_val > 0 && $current_progress_val < 100); $running_delete = ($current_progress_val_delete > 0 && $current_progress_val_delete < 100); // Real time loading. -if ($display_loading === true || $running_create === true || $running_delete) { - $table_load = new stdClass(); - $table_load->id = 'table-demo'; - $table_load->class = 'filter-table-adv'; - $table_load->width = '100%'; - $table_load->data = []; - $table_load->size = []; - $table_load->size[0] = '50%'; - $table_load->size[1] = '50%'; +if ($display_loading === true || $running_create === true || $running_delete === true) { + $operation = 'cleanup'; + $progress_val = (int) $current_progress_val_delete; - $table_load->data['row0'][] = progress_bar( + if ($create_data === true || $running_create === true) { + $operation = 'create'; + $progress_val = (int) $current_progress_val; + } + + $load_mkp = ui_progress( 0, - 100, - 20, - '', - 0, - false, - ((int) 0 !== -1) ? false : '#f3b200', + '100%', + '2.5', + '#C0CCDC', + true, + $progress_val.' %', [ - 'class' => 'progress_bar', - 'id' => 'progress_bar', - ] - ).html_print_input_hidden('js_timer_'.$operation['id'], 0, true); + 'page' => 'include/ajax/demo_data.ajax', + 'interval' => 1, + 'simple' => 1, + 'data' => [ + 'action' => 'get_progress', + 'operation' => $operation, + 'demo_items_to_cleanup' => $demo_items_count, + ], + ], + 'line-height: 17pt;' + ); + + + $load_mkp .= html_print_input_hidden('js_timer', 0, true); + + $table_mkup = '
+
'.__('Progress').'
+
+
+
+
+
+ '.$load_mkp.' +
+
'; if ($create_data === true || $running_create === true) { // Map demo item ID to display name in page. @@ -162,43 +184,50 @@ if ($display_loading === true || $running_create === true || $running_delete) { $items_ids_text_map[DEMO_PLUGIN] = 'plugin'; $items_ids_text_map = ([DEMO_AGENT => 'agents'] + $items_ids_text_map); - $list_mkup = '
    '; foreach ($items_ids_text_map as $item_id => $item_text) { - $list_mkup .= '
  • '; - $list_mkup .= '
    '.html_print_image( + $table_mkup .= '
    +
    +
    +
    + + + + +
    +
    '.html_print_image( 'images/icono-unknown.png', true, [ 'title' => __('View'), - 'class' => 'icon w100p h100p', + 'class' => 'icon invisible w100p h100p', ] - ).'
    '; - $list_mkup .= 'Create demo '.$item_text.''; - $list_mkup .= '
      '; - $list_mkup .= '
    '; - $list_mkup .= '
  • '; + ).' +
+
+ Create demo '.$item_text.' +
    +
    +
    '; } - - $list_mkup .= ''; } - echo '
    '; - echo '
    '; - echo ''.__('Progress').''; - html_print_table($table_load); - echo $list_mkup; + $table_mkup .= ' + + + '; - echo '
    '; + echo ''; + + echo $table_mkup; + + $btn_span = __('Back'); + $icon = 'back'; if ($create_data === true || $running_create === true) { $btn_span = __('View summary'); $icon = 'next'; - } else { - $btn_span = __('Back'); - $icon = 'back'; } - $action_btns = html_print_action_buttons( html_print_submit_button( $btn_span, @@ -605,10 +634,78 @@ if ($display_loading === true || $running_create === true || $running_delete) { $table_summary->data[$i][1] = ($demo_dashboards_count > 0) ? $demo_dashboards_count : '-'; echo ''; - echo '
    '; - echo ''.__('Active demo data summary').''; - html_print_table($table_summary); - echo '
    '; + $table_mkup = '
    +
    '.__('Active demo data summary').'
    +
    +
    +
    +
    +
    '.__('Agents').'
    +
    '.(($demo_agents_count > 0) ? $demo_agents_count : '-').'
    +
    +
    +
    +
    +
    '.__('Services').'
    +
    '.(($demo_services_count > 0) ? $demo_services_count : '-').'
    +
    +
    +
    +
    +
    +
    +
    '.__('Network maps').'
    +
    '.(($demo_nm_count > 0) ? $demo_nm_count : '-').'
    +
    +
    +
    +
    +
    '.__('GIS maps').'
    +
    '.(($demo_gis_count > 0) ? $demo_gis_count : '-').'
    +
    +
    +
    +
    +
    +
    +
    '.__('Custom graphs').'
    +
    '.(($demo_cg_count > 0) ? $demo_cg_count : '-').'
    +
    +
    +
    +
    +
    '.__('Custom reports').'
    +
    '.(($demo_rep_count > 0) ? $demo_rep_count : '-').'
    +
    +
    +
    +
    +
    +
    +
    '.__('Visual consoles').'
    +
    '.(($demo_vc_count > 0) ? $demo_vc_count : '-').'
    +
    +
    +
    +
    +
    '.__('Dashboards').'
    +
    '.(($demo_dashboards_count > 0) ? $demo_dashboards_count : '-').'
    +
    +
    +
    +
    +
    '; + + + + + + // echo '
    '; + //echo ''.__('Active demo data summary').''; + // html_print_table($table_summary); + //echo '
    '; + + echo $table_mkup; html_print_input_hidden('delete_data', 1); html_print_input_hidden('display_loading', 1); @@ -643,18 +740,6 @@ if ($display_loading === true || $running_create === true || $running_delete) { var agent_count_span_str = ''; var agents_str = ''; - var display_progress_bar_cr = ; - - if (display_progress_bar_cr == 1) { - init_progress_bar('create'); - } - - var display_progress_bar_del = ; - - if (display_progress_bar_del == 1) { - init_progress_bar('cleanup'); - } - $("#table-adv").hide(); $('#checkbox-toggle_adv_opts').change(function() { @@ -693,12 +778,16 @@ if ($display_loading === true || $running_create === true || $running_delete) { var create_data = ''; var delete_data = ''; + var running_create = ''; + var running_delete = ''; + + if (create_data == true || running_create == true) { + init_progress_checker('create'); + } // Creation operation must be done via AJAX in order to be able to run the operations in background // and keep it running even if we quit the page. if (create_data == true) { - init_progress_bar('create'); - var params = {}; params["action"] = "create_demo_data"; params["page"] = "include/ajax/demo_data.ajax"; @@ -723,12 +812,13 @@ if ($display_loading === true || $running_create === true || $running_delete) { }); } + if (delete_data == true || running_delete == true) { + init_progress_checker('cleanup'); + } + // Delete operation must be done via AJAX in order to be able to run the operations in background // and keep it running even if we quit the page. if (delete_data == true) { - /// $("#table-demo-row2").show(); - init_progress_bar('cleanup'); - var params = {}; params["action"] = "cleanup_demo_data"; params["page"] = "include/ajax/demo_data.ajax"; @@ -746,38 +836,16 @@ if ($display_loading === true || $running_create === true || $running_delete) { var items_checked = []; - function demo_load_progress(id_queue, operation) { - if (id_queue == null) - return; - - var src_code = $('#' + id_queue).attr("src"); - /* Check stop begin */ - var progress_src = null; - var elements_src = src_code.split("&"); - - $.each(elements_src, function (key, value) { - /* Get progress of element */ - if (value.indexOf("progress=") != -1) { - var tokens_src = value.split("="); - progress_src = tokens_src[1]; - } - }); - - /* STOP timer condition (progress >= 100) */ - if (progress_src >= 100) { - clearInterval($("#hidden-js_timer_" + id_queue).val()); - return; - } - + function demo_load_progress(operation) { + console.log("dlp"); var params = {}; - params["action"] = "get_progress_bar"; + params["action"] = "get_load_status"; params["operation"] = operation; if (operation == 'cleanup') { var demo_items_count = ''; params["demo_items_to_cleanup"] = demo_items_count; } params["page"] = "include/ajax/demo_data.ajax"; - params["id_queue"] = id_queue; jQuery.ajax({ data: params, @@ -785,25 +853,18 @@ if ($display_loading === true || $running_create === true || $running_delete) { url: "ajax.php", dataType: "json", success: function(data) { - progress_tag_pos = src_code.indexOf("progress="); - rest_pos = src_code.indexOf("&", progress_tag_pos); + console.log("-----"); - pre_src = src_code.substr(0,progress_tag_pos); - post_src = src_code.substr(rest_pos); - - /* Create new src code for progress bar */ - new_src_code = pre_src + "progress=" + data.current_progress_val + post_src; - - if (data.current_progress_val != '') - $('#' + id_queue).attr("src", new_src_code); - - if (data.current_progress_val == 100) + if (data.current_progress_val == 100) { + clearInterval($("#hidden-js_timer").val()); $('#action-btns-loading-done').show(); + } if (operation == 'create') { var status_data = data?.demo_data_load_status; - - status_data.checked_items?.forEach(function(item_id) { + console.log("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); + console.log(status_data.checked_items); + status_data.checked_items?.forEach(function(item_id, idx) { if (items_checked.includes(item_id)) { return; } @@ -813,13 +874,20 @@ if ($display_loading === true || $running_create === true || $running_delete) { && typeof status_data.errors[item_id] !== 'undefined' && status_data.errors[item_id].length > 0 ) { - status_data.errors[item_id].forEach(function(error_msg) { - update_demo_status_icon(item_id, 'images/fail_circle_big.png'); + update_demo_status_icon(item_id, 'images/status_error@svg.svg'); + + status_data.errors[item_id].forEach(function(error_msg) { print_error(item_id, error_msg); }); } else { - update_demo_status_icon(item_id, 'images/success_circle_big.png'); + update_demo_status_icon(item_id, 'images/status_check@svg.svg'); } +console.log("CL"); + +console.log(item_id); +console.log(status_data.checked_items[idx + 1]); + $('div[data-item-id="' + item_id + '"] .loader-small').hide(); + $('div[data-item-id="' + status_data.checked_items[idx + 1] + '"] .loader-small').show(); items_checked.push(item_id); }); } @@ -828,32 +896,13 @@ if ($display_loading === true || $running_create === true || $running_delete) { } - function init_progress_bar(operation) { - /* Get progress bar */ - var elements = $(".progress_bar"); - $.each(elements, function (key, progress_bar) { - var elements_bar = $(progress_bar).attr("src").split("&"); - var current_progress = null; - $.each(elements_bar, function (key, value) { - /* Get progress */ - if (value.indexOf("progress=") != -1) { - var tokens = value.split("="); - current_progress = tokens[1]; - } - }); + function init_progress_checker(operation) { + clearInterval($("#hidden-js_timer").val()); - /* Get Queue id */ - var id_bar = $(progress_bar).attr("id"); - clearInterval($("#hidden-js_timer_" + id_bar).val()); - - /* Only autorefresh incomplete bars */ - if (current_progress < 100) { - /* 1 seconds between ajax request */ - var id_interval = setInterval("demo_load_progress('"+ id_bar +"','"+operation+"')", (1 * 1000)); - /* This will keep timer info */ - $("#hidden-js_timer_" + id_bar).val(id_interval); - } - }); + /* 1 seconds between ajax request */ + var id_interval = setInterval("demo_load_progress('"+operation+"')", (1 * 1000)); + /* This will keep timer info */ + $("#hidden-js_timer").val(id_interval); } function update_demo_status_icon(itemId, iconName) { @@ -861,6 +910,7 @@ if ($display_loading === true || $running_create === true || $running_delete) { var $icon = $listItem.find('.icon'); $icon.attr('src', iconName); + $icon.show(); } function print_error(item_id, error_msg) { @@ -869,6 +919,6 @@ if ($display_loading === true || $running_create === true || $running_delete) { }); // Append the new item to the corresponding error-list ul. - $('#load-info li[data-item-id="' + item_id + '"] .error-list').append(error_list_item); + $('#load-info div[data-item-id="' + item_id + '"] .error-list').append(error_list_item); } \ No newline at end of file diff --git a/pandora_console/include/ajax/demo_data.ajax.php b/pandora_console/include/ajax/demo_data.ajax.php index 5d9e1ee6b8..b3a006835f 100644 --- a/pandora_console/include/ajax/demo_data.ajax.php +++ b/pandora_console/include/ajax/demo_data.ajax.php @@ -118,6 +118,7 @@ if ($action === 'create_demo_data') { } $total_agents_to_create = (int) get_parameter('agents_num', 30); + //$total_agents_to_create = 10; $total_items_count = count($parsed_ini); if ($total_agents_to_create > 0) { @@ -3438,7 +3439,31 @@ if ($action === 'cleanup_demo_data') { return; } -if ($action === 'get_progress_bar') { +if ($action === 'get_progress') { + $operation = (string) get_parameter('operation'); + + if ($operation === 'create') { + $current_progress_val = db_get_value_filter('value', 'tconfig', ['token' => 'demo_data_load_progress']); + + if ($current_progress_val === false) { + $current_progress_val = 0; + } + + $ret = ceil($current_progress_val); + } else if ($operation === 'cleanup') { + $demo_items_to_cleanup = (int) get_parameter('demo_items_to_cleanup'); + $count_current_demo_items = db_get_value('count(*)', 'tdemo_data'); + $current_progress_val = ((($demo_items_to_cleanup - $count_current_demo_items) * 100) / $demo_items_to_cleanup); + config_update_value('demo_data_delete_progress', $current_progress_val); + $ret = ceil($current_progress_val); + } + + echo json_encode($ret); + + return; +} + +if ($action === 'get_load_status') { $operation = (string) get_parameter('operation'); if ($operation === 'create') { diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index d6078c56a7..799b2330ae 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -3636,7 +3636,11 @@ function ui_progress( data = data_array[1]; } try { - val = JSON.parse(data); + if (isNaN(data) === true) { + val = JSON.parse(data); + } else { + val = data; + } $("#'.$id.'").attr("data-label", val + " %"); $("#'.$id.'_progress").width(val+"%"); diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 8a30f050be..12e1b2c474 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -1060,6 +1060,10 @@ select:-internal-list-box { padding: 10px; } +.padding20 { + padding: 20px; +} + .margin-soft { margin: 0.3em 1em; } @@ -13472,3 +13476,96 @@ tr.shown td.details-control { mask: url(../../images/minimizar.svg) no-repeat right / contain; -webkit-mask: url(../../images/minimizar.svg) no-repeat right / contain; } + +.table-info-light { + border-collapse: separate; + border-spacing: 0; + min-width: 350px; +} + +.table-info-light tr td { + border-right: 1px solid #bbb; + border-bottom: 1px solid #bbb; + padding: 5px; +} + +.table-info-light tr td:first-child { + border-left: 1px solid #bbb; + /*border-top: 1px solid #bbb;*/ +} + +.table-info-light tr td:last-child { + /*border-top: 1px solid #bbb;*/ +} + +.table-info-light tr { + text-align: left; + /*border-top: solid 1px #bbb;*/ +} + +.table-info-light tr:first-child td:first-child { + border-top: solid 1px #bbb; + border-top-left-radius: 6px; +} + +.table-info-light tr:first-child td:last-child { + border-top: solid 1px #bbb; + border-top-right-radius: 6px; +} + +.table-info-light tr:last-child td:first-child { + border-bottom-left-radius: 6px; +} + +.table-info-light tr:last-child td:last-child { + border-bottom-right-radius: 6px; +} + +.loader-small { + position: relative; + width: 40px; + height: 40px; + border-radius: 100%; + background: linear-gradient(#c0ccdc, #ffffff); + animation: animate 1.2s linear infinite; + margin: auto; +} +.loader-small span { + position: absolute; + width: 100%; + height: 100%; + border-radius: 100%; + background: linear-gradient(#c0ccdc, #ffffff); +} +.loader-small span:nth-child(1) { + filter: blur(1px); +} +.loader-small span:nth-child(2) { + filter: blur(2px); +} +.loader-small span:nth-child(3) { + filter: blur(3px); +} +.loader-small span:nth-child(4) { + filter: blur(4px); +} +.loader-small:after { + content: ""; + position: absolute; + top: 10px; + left: 10px; + right: 10px; + bottom: 10px; + background: white; + border: solid white 10px; + border-radius: 50%; +} + +@keyframes animate { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} diff --git a/pandora_console/views/tacticalView/view.php b/pandora_console/views/tacticalView/view.php index ae3eb3cc86..78cfbe4416 100644 --- a/pandora_console/views/tacticalView/view.php +++ b/pandora_console/views/tacticalView/view.php @@ -5,57 +5,32 @@ -
    -
    -
    + +
    - title; ?> +
    -
    -
    +
    - - - getLogSizeStatus(); ?>
    -
    -
    -
    - - - - getServerStatus(); ?> -
    -
    -
    -
    - - - - getCPULoadGraph(); ?> -
    +
    +
    +
    + getLicenseUsageGraph(); ?>
    - -
    -
    - - - - getLicenseUsageGraph(); ?> -
    -
    -
    -
    + + +
    @@ -145,7 +120,7 @@
    -
    +
    From bff917bdafc701d5115503ac33787e7f006729ca Mon Sep 17 00:00:00 2001 From: Enrique Martin Date: Tue, 6 Feb 2024 15:30:39 +0100 Subject: [PATCH 2/7] Remove console.log() entries --- pandora_console/godmode/setup/demo.php | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/pandora_console/godmode/setup/demo.php b/pandora_console/godmode/setup/demo.php index 719e964fc2..83b41f1451 100644 --- a/pandora_console/godmode/setup/demo.php +++ b/pandora_console/godmode/setup/demo.php @@ -204,7 +204,7 @@ if ($display_loading === true || $running_create === true || $running_delete === ).'
    - Create demo '.$item_text.' + Create demo '.$item_text.'
      '; @@ -837,7 +837,6 @@ if ($display_loading === true || $running_create === true || $running_delete === var items_checked = []; function demo_load_progress(operation) { - console.log("dlp"); var params = {}; params["action"] = "get_load_status"; params["operation"] = operation; @@ -853,8 +852,6 @@ if ($display_loading === true || $running_create === true || $running_delete === url: "ajax.php", dataType: "json", success: function(data) { - console.log("-----"); - if (data.current_progress_val == 100) { clearInterval($("#hidden-js_timer").val()); $('#action-btns-loading-done').show(); @@ -862,8 +859,6 @@ if ($display_loading === true || $running_create === true || $running_delete === if (operation == 'create') { var status_data = data?.demo_data_load_status; - console.log("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); - console.log(status_data.checked_items); status_data.checked_items?.forEach(function(item_id, idx) { if (items_checked.includes(item_id)) { return; @@ -882,10 +877,6 @@ if ($display_loading === true || $running_create === true || $running_delete === } else { update_demo_status_icon(item_id, 'images/status_check@svg.svg'); } -console.log("CL"); - -console.log(item_id); -console.log(status_data.checked_items[idx + 1]); $('div[data-item-id="' + item_id + '"] .loader-small').hide(); $('div[data-item-id="' + status_data.checked_items[idx + 1] + '"] .loader-small').show(); items_checked.push(item_id); From df8c14864c5613894b189c43a6466952948bdece Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Fri, 9 Feb 2024 10:37:04 +0100 Subject: [PATCH 3/7] improvements --- .../demodata/dashboards/1-dashboard.prd | 128 +- .../extras/demodata/gis_maps/1-gismap.prd | 48 +- .../extras/demodata/graphs/1-cpu-graph.prd | 66 +- .../extras/demodata/graphs/2-disks-graph.prd | 66 +- .../demodata/graphs/3-network-usage-graph.prd | 84 +- .../demodata/network_maps/1-networkmap.prd | 645 ++++- .../network_maps/2-sunburst-networkmap.prd | 36 +- .../demodata/reports/1-linux-report.prd | 1194 +++++++- .../demodata/services/1-mysql-service.prd | 104 +- .../demodata/services/2-http-service.prd | 104 +- .../demodata/services/3-parent-service.prd | 72 +- .../1-cisco-visual-console.prd | 2201 +++++++++++--- .../2-linux-visual-console.prd | 1413 +++++++-- pandora_console/extras/mr/68.sql | 28 + pandora_console/godmode/setup/demo.php | 7 +- .../include/ajax/demo_data.ajax.php | 2532 ++--------------- pandora_console/include/functions.php | 29 + pandora_console/include/styles/pandora.css | 38 +- 18 files changed, 5508 insertions(+), 3287 deletions(-) diff --git a/pandora_console/extras/demodata/dashboards/1-dashboard.prd b/pandora_console/extras/demodata/dashboards/1-dashboard.prd index f4a66d3692..ab8679e2aa 100644 --- a/pandora_console/extras/demodata/dashboards/1-dashboard.prd +++ b/pandora_console/extras/demodata/dashboards/1-dashboard.prd @@ -1,65 +1,83 @@ -[dashboard_data] +[prd_data] +type="dashboard" name="Demo dashboard" -group="Demo dashboard" -[dashboard_items] +[tdashboard] -title[1]="Groups status" -type[1]="system_group_status" -x[1]="0" -y[1]="0" -width[1]="5" -height[1]="4" +id[3]="3" +name[3]="Demo dashboard" +id_user[3]="" +id_group[3]="{\"tgrupo\":{\"nombre\":\"Demo dashboard\"}}" +active[3]="0" +cells[3]="0" +cells_slideshow[3]="0" +date_range[3]="0" +date_from[3]="0" +date_to[3]="0" -title[2]="Network map" -type[2]="network_map" -x[2]="5" -y[2]="0" -width[2]="7" -height[2]="6" -map_name[2]="Demo sunburst network map" +[twidget_dashboard] -title[3]="Module histogram" -type[3]="graph_module_histogram" -x[3]="0" -y[3]="4" -width[3]="5" -height[3]="2" -agent_name[3]="demo-global-agent-1" -module[3]="Host Alive" -interval[3]="86400" +id[18]="18" +position[18]="{\"x\":\"0\",\"y\":\"0\",\"width\":\"5\",\"height\":\"4\"}" +options[18]="{\"title\":\"Groups status\",\"background\":\"#ffffff\",\"groupId\":[\"0\"],\"status\":[\"4,1,0,2\"],\"sunburst\":false}" +order[18]="0" +id_dashboard[18]="3" +id_widget[18]="{\"twidget\":{\"unique_name\":\"system_group_status\"}}" +prop_width[18]="5" +prop_height[18]="4" -title[4]="List of latest events" -type[4]="events_list" -x[4]="0" -y[4]="6" -width[4]="12" -height[4]="5" +id[19]="19" +position[19]="{\"x\":\"5\",\"y\":\"0\",\"width\":\"7\",\"height\":\"6\"}" +options[19]="{\"title\":\"Network map\",\"background\":\"#ffffff\",\"networkmapId\":\"3\",\"xOffset\":\"0\",\"yOffset\":\"0\",\"zoomLevel\":0.5}" +order[19]="1" +id_dashboard[19]="3" +id_widget[19]="{\"twidget\":{\"unique_name\":\"network_map\"}}" +prop_width[19]="7" +prop_height[19]="6" -title[5]="Top N events by agent" -type[5]="top_n_events_by_group" -x[5]="6" -y[5]="11" -width[5]="6" -height[5]="8" +id[20]="20" +position[20]="{\"x\":\"0\",\"y\":\"4\",\"width\":\"5\",\"height\":\"2\"}" +options[20]="{\"title\":\"Module histogram\",\"background\":\"#ffffff\",\"agentId\":\"3\",\"metaconsoleId\":0,\"moduleId\":\"124\",\"period\":\"86400\",\"sizeLabel\":30}" +order[20]="2" +id_dashboard[20]="3" +id_widget[20]="{\"twidget\":{\"unique_name\":\"graph_module_histogram\"}}" +prop_width[20]="5" +prop_height[20]="2" -title[6]="Top N of agent modules" -type[6]="top_n" -x[6]="0" -y[6]="11" -width[6]="6" -height[6]="4" -agent_name[6]="cisco-.*" -module[6]=".*ifOutOctets" -interval[6]="86400" +id[21]="21" +position[21]="{\"x\":\"0\",\"y\":\"6\",\"width\":\"12\",\"height\":\"5\"}" +options[21]="{\"title\":\"List of latest events\",\"background\":\"#ffffff\",\"eventType\":0,\"maxHours\":8,\"limit\":20,\"eventStatus\":-1,\"severity\":-1,\"groupId\":[\"\"],\"tagsId\":[\"\"],\"groupRecursion\":0,\"customFilter\":-1,\"columns_events_widget\":[\"mini_severity,evento,estado,agent_name,timestamp\",\"\"]}" +order[21]="3" +id_dashboard[21]="3" +id_widget[21]="{\"twidget\":{\"unique_name\":\"events_list\"}}" +prop_width[21]="12" +prop_height[21]="5" + +id[22]="22" +position[22]="{\"x\":\"6\",\"y\":\"11\",\"width\":\"6\",\"height\":\"8\"}" +options[22]="{\"title\":\"Top N events by agent\",\"background\":\"#ffffff\",\"amountShow\":10,\"maxHours\":8,\"groupId\":[\"0\"],\"legendPosition\":\"bottom\",\"show_total_data\":0}" +order[22]="4" +id_dashboard[22]="3" +id_widget[22]="{\"twidget\":{\"unique_name\":\"top_n_events_by_group\"}}" +prop_width[22]="6" +prop_height[22]="8" + +id[23]="23" +position[23]="{\"x\":\"0\",\"y\":\"11\",\"width\":\"6\",\"height\":\"4\"}" +options[23]="{\"title\":\"Top N of agent modules\",\"background\":\"#ffffff\",\"agent\":\"cisco-.*\",\"module\":\".*ifOutOctets\",\"period\":\"86400\",\"quantity\":\"10\",\"order\":\"2\",\"display\":\"0\",\"type_graph\":\"bar_vertical\",\"legend\":\"agent_module\"}" +order[23]="5" +id_dashboard[23]="3" +id_widget[23]="{\"twidget\":{\"unique_name\":\"top_n\"}}" +prop_width[23]="6" +prop_height[23]="4" + +id[24]="24" +position[24]="{\"x\":\"0\",\"y\":\"15\",\"width\":\"6\",\"height\":\"4\"}" +options[24]="{\"title\":\"Top N of agent modules\",\"background\":\"#ffffff\",\"agent\":\"cisco-.*\",\"module\":\".*ifInOctets\",\"period\":\"86400\",\"quantity\":\"10\",\"order\":\"2\",\"display\":\"0\",\"type_graph\":\"bar_vertical\",\"legend\":\"agent_module\"}" +order[24]="6" +id_dashboard[24]="3" +id_widget[24]="{\"twidget\":{\"unique_name\":\"top_n\"}}" +prop_width[24]="6" +prop_height[24]="4" -title[7]="Top N of agent modules" -type[7]="top_n" -x[7]="0" -y[7]="15" -width[7]="6" -height[7]="4" -agent_name[7]="cisco-.*" -module[7]=".*ifInOctets" -interval[7]="86400" \ No newline at end of file diff --git a/pandora_console/extras/demodata/gis_maps/1-gismap.prd b/pandora_console/extras/demodata/gis_maps/1-gismap.prd index 84016c5279..414a5fe57b 100644 --- a/pandora_console/extras/demodata/gis_maps/1-gismap.prd +++ b/pandora_console/extras/demodata/gis_maps/1-gismap.prd @@ -1,16 +1,40 @@ -[gis_data] +[prd_data] +type="gis_map" name="Demo GIS map" -group="Demo servers" -zoom_level="6" -initial_latitude="40" -initial_longitude="-3" -initial_altitude="0" -default_latitude="40" -default_longitude="-3" -default_altitude="0" -[gis_layers] +[tgis_map] + +id_tgis_map[2]="2" +map_name[2]="Demo GIS map" +initial_longitude[2]="-3" +initial_latitude[2]="40" +initial_altitude[2]="0" +zoom_level[2]="6" +map_background[2]="" +default_longitude[2]="-3" +default_latitude[2]="40" +default_altitude[2]="0" +group_id[2]="{\"tgrupo\":{\"nombre\":\"Demo servers\"}}" +default_map[2]="0" + +[tgis_map_layer] + +id_tmap_layer[2]="2" +layer_name[2]="Demo servers" +view_layer[2]="1" +layer_stack_order[2]="0" +tgis_map_id_tgis_map[2]="2" +tgrupo_id_grupo[2]="{\"tgrupo\":{\"nombre\":\"Demo servers\"}}" + +[tgis_map_layer_groups] + +[tgis_map_layer_has_tagente] + +[tgis_map_has_tgis_map_con] + +tgis_map_id_tgis_map[2-1]="2" +tgis_map_con_id_tmap_con[2-1]="{\"tgis_map_connection\":{\"conection_name\":\"OpenStreetMap (MapQuest Open)\"}}" +modification_time[2-1]="2024-02-07 18:23:27" +default_map_connection[2-1]="0" -name[1]="Demo servers" -group[1]="Demo servers" \ No newline at end of file diff --git a/pandora_console/extras/demodata/graphs/1-cpu-graph.prd b/pandora_console/extras/demodata/graphs/1-cpu-graph.prd index 61b7ab456c..41f1a7eda9 100644 --- a/pandora_console/extras/demodata/graphs/1-cpu-graph.prd +++ b/pandora_console/extras/demodata/graphs/1-cpu-graph.prd @@ -1,21 +1,59 @@ -[graph_data] +[prd_data] +type="custom_graph" name="Linux CPU Load" -group="Demo servers" -description="This is a demo custom graph for linux agents CPU Load" -type="s_area" -periodicity="86400" -[graph_items] +[tgraph] -agent_name[1]="linux-1" -module[1]="CPU Load" +id_graph[1]="1" +id_user[1]="" +name[1]="Linux CPU Load" +description[1]="This is a demo custom graph for linux agents CPU Load" +period[1]="86400" +width[1]="0" +height[1]="0" +private[1]="0" +events[1]="0" +stacked[1]="1" +id_group[1]="{\"tgrupo\":{\"nombre\":\"Demo servers\"}}" +id_graph_template[1]="0" +percentil[1]="0" +summatory_series[1]="0" +average_series[1]="0" +modules_series[1]="0" +fullscale[1]="0" -agent_name[2]="linux-2" -module[2]="CPU Load" +[tgraph_source] -agent_name[3]="linux-3" -module[3]="CPU Load" +id_gs[1]="1" +id_graph[1]="1" +id_server[1]="0" +id_agent_module[1]="{\"tagente_modulo\":{\"nombre\":\"CPU Load\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +weight[1]="1" +label[1]="" +field_order[1]="0" + +id_gs[2]="2" +id_graph[2]="1" +id_server[2]="0" +id_agent_module[2]="{\"tagente_modulo\":{\"nombre\":\"CPU Load\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-2\"}}}}" +weight[2]="1" +label[2]="" +field_order[2]="0" + +id_gs[3]="3" +id_graph[3]="1" +id_server[3]="0" +id_agent_module[3]="{\"tagente_modulo\":{\"nombre\":\"CPU Load\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-3\"}}}}" +weight[3]="1" +label[3]="" +field_order[3]="0" + +id_gs[4]="4" +id_graph[4]="1" +id_server[4]="0" +id_agent_module[4]="{\"tagente_modulo\":{\"nombre\":\"CPU Load\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-4\"}}}}" +weight[4]="1" +label[4]="" +field_order[4]="0" -agent_name[4]="linux-4" -module[4]="CPU Load" \ No newline at end of file diff --git a/pandora_console/extras/demodata/graphs/2-disks-graph.prd b/pandora_console/extras/demodata/graphs/2-disks-graph.prd index cf3032c5f0..7205ad98ab 100644 --- a/pandora_console/extras/demodata/graphs/2-disks-graph.prd +++ b/pandora_console/extras/demodata/graphs/2-disks-graph.prd @@ -1,21 +1,59 @@ -[graph_data] +[prd_data] +type="custom_graph" name="Linux Disk Usage" -group="Demo servers" -description="This is a demo custom graph for linux agents Disk Usage" -type="line" -periodicity="86400" -[graph_items] +[tgraph] -agent_name[1]="linux-1" -module[1]="Disk Usage" +id_graph[2]="2" +id_user[2]="" +name[2]="Linux Disk Usage" +description[2]="This is a demo custom graph for linux agents Disk Usage" +period[2]="86400" +width[2]="0" +height[2]="0" +private[2]="0" +events[2]="0" +stacked[2]="2" +id_group[2]="{\"tgrupo\":{\"nombre\":\"Demo servers\"}}" +id_graph_template[2]="0" +percentil[2]="0" +summatory_series[2]="0" +average_series[2]="0" +modules_series[2]="0" +fullscale[2]="0" -agent_name[2]="linux-2" -module[2]="Disk Usage" +[tgraph_source] -agent_name[3]="linux-3" -module[3]="Disk Usage" +id_gs[5]="5" +id_graph[5]="2" +id_server[5]="0" +id_agent_module[5]="{\"tagente_modulo\":{\"nombre\":\"Disk Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +weight[5]="1" +label[5]="" +field_order[5]="0" + +id_gs[6]="6" +id_graph[6]="2" +id_server[6]="0" +id_agent_module[6]="{\"tagente_modulo\":{\"nombre\":\"Disk Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-2\"}}}}" +weight[6]="1" +label[6]="" +field_order[6]="0" + +id_gs[7]="7" +id_graph[7]="2" +id_server[7]="0" +id_agent_module[7]="{\"tagente_modulo\":{\"nombre\":\"Disk Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-3\"}}}}" +weight[7]="1" +label[7]="" +field_order[7]="0" + +id_gs[8]="8" +id_graph[8]="2" +id_server[8]="0" +id_agent_module[8]="{\"tagente_modulo\":{\"nombre\":\"Disk Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-4\"}}}}" +weight[8]="1" +label[8]="" +field_order[8]="0" -agent_name[4]="linux-4" -module[4]="Disk Usage" \ No newline at end of file diff --git a/pandora_console/extras/demodata/graphs/3-network-usage-graph.prd b/pandora_console/extras/demodata/graphs/3-network-usage-graph.prd index 3108b4cb7f..ba7a517bf8 100644 --- a/pandora_console/extras/demodata/graphs/3-network-usage-graph.prd +++ b/pandora_console/extras/demodata/graphs/3-network-usage-graph.prd @@ -1,27 +1,75 @@ -[graph_data] +[prd_data] +type="custom_graph" name="Network Usage" -group="Demo servers" -description="This is a demo custom graph for linux and windows agents Network Usage" -type="s_area" -periodicity="86400" -[graph_items] +[tgraph] -agent_name[1]="linux-1" -module[1]="Network Usage" +id_graph[3]="3" +id_user[3]="" +name[3]="Network Usage" +description[3]="This is a demo custom graph for linux and windows agents Network Usage" +period[3]="86400" +width[3]="0" +height[3]="0" +private[3]="0" +events[3]="0" +stacked[3]="1" +id_group[3]="{\"tgrupo\":{\"nombre\":\"Demo servers\"}}" +id_graph_template[3]="0" +percentil[3]="0" +summatory_series[3]="0" +average_series[3]="0" +modules_series[3]="0" +fullscale[3]="0" -agent_name[2]="linux-2" -module[2]="Network Usage" +[tgraph_source] -agent_name[3]="linux-3" -module[3]="Network Usage" +id_gs[9]="9" +id_graph[9]="3" +id_server[9]="0" +id_agent_module[9]="{\"tagente_modulo\":{\"nombre\":\"Network Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +weight[9]="1" +label[9]="" +field_order[9]="0" -agent_name[4]="linux-4" -module[4]="Network Usage" +id_gs[10]="10" +id_graph[10]="3" +id_server[10]="0" +id_agent_module[10]="{\"tagente_modulo\":{\"nombre\":\"Network Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-2\"}}}}" +weight[10]="1" +label[10]="" +field_order[10]="0" -agent_name[5]="windows-1" -module[5]="Network Usage" +id_gs[11]="11" +id_graph[11]="3" +id_server[11]="0" +id_agent_module[11]="{\"tagente_modulo\":{\"nombre\":\"Network Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-3\"}}}}" +weight[11]="1" +label[11]="" +field_order[11]="0" + +id_gs[12]="12" +id_graph[12]="3" +id_server[12]="0" +id_agent_module[12]="{\"tagente_modulo\":{\"nombre\":\"Network Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-4\"}}}}" +weight[12]="1" +label[12]="" +field_order[12]="0" + +id_gs[13]="13" +id_graph[13]="3" +id_server[13]="0" +id_agent_module[13]="{\"tagente_modulo\":{\"nombre\":\"Network Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"windows-1\"}}}}" +weight[13]="1" +label[13]="" +field_order[13]="0" + +id_gs[14]="14" +id_graph[14]="3" +id_server[14]="0" +id_agent_module[14]="{\"tagente_modulo\":{\"nombre\":\"Network Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"windows-2\"}}}}" +weight[14]="1" +label[14]="" +field_order[14]="0" -agent_name[6]="windows-2" -module[6]="Network Usage" \ No newline at end of file diff --git a/pandora_console/extras/demodata/network_maps/1-networkmap.prd b/pandora_console/extras/demodata/network_maps/1-networkmap.prd index 6a85d3625a..bcadf421bd 100644 --- a/pandora_console/extras/demodata/network_maps/1-networkmap.prd +++ b/pandora_console/extras/demodata/network_maps/1-networkmap.prd @@ -1,143 +1,670 @@ -[map_data] +[prd_data] +type="network_map" name="Demo network map" -group="Demo network" -description="This is a demo network map" -node_radius="40" -generation_method="circular" -[map_items] +[tmap] -agent_name[1]="cisco-1" +id[2]="2" +id_group[2]="{\"tgrupo\":{\"nombre\":\"Demo network\"}}" +id_user[2]="" +type[2]="0" +subtype[2]="0" +name[2]="Demo network map" +description[2]="This is a demo network map" +height[2]="0" +width[2]="0" +center_x[2]="0" +center_y[2]="0" +background[2]="" +background_options[2]="0" +source_period[2]="0" +source[2]="0" +source_data[2]="{\"tgrupo\":{\"nombre\":\"Demo network\"}}" +generation_method[2]="0" +generated[2]="0" +filter[2]="{\"dont_show_subgroups\":0,\"node_radius\":\"40\",\"x_offs\":0,\"y_offs\":0,\"z_dash\":\"0.5\",\"node_sep\":\"0.25\",\"rank_sep\":\"0.25\",\"mindist\":1,\"kval\":\"0.3\"}" +id_group_map[2]="{\"tgrupo\":{\"nombre\":\"Demo network\"}}" +refresh_time[2]="300" + +[titem] + +id[1]="1" +id_map[1]="2" x[1]="854" y[1]="221" +z[1]="0" +deleted[1]="0" +type[1]="0" +refresh[1]="0" +source[1]="0" +source_data[1]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +options[1]="" +style[1]="{\"shape\":\"circle\",\"image\":\"images\/networkmap\/cisco@os.svg\",\"width\":null,\"height\":null,\"label\":\"cisco-1\"}" -agent_name[2]="freebsd-1" +id[2]="2" +id_map[2]="2" x[2]="1184" y[2]="-25" -parent[2]="1" +z[2]="0" +deleted[2]="0" +type[2]="0" +refresh[2]="0" +source[2]="0" +source_data[2]="{\"tagente\":{\"nombre\":\"freebsd-1\"}}" +options[2]="" +style[2]="{\"shape\":\"circle\",\"image\":\"images/networkmap/freebsd@os.svg\",\"width\":null,\"height\":null,\"label\":\"freebsd-1\"}" -agent_name[3]="macos-1" +id[3]="3" +id_map[3]="2" x[3]="1268" y[3]="235" -parent[3]="1" +z[3]="0" +deleted[3]="0" +type[3]="0" +refresh[3]="0" +source[3]="0" +source_data[3]="{\"tagente\":{\"nombre\":\"macos-1\"}}" +options[3]="" +style[3]="{\"shape\":\"circle\",\"image\":\"images/networkmap/apple@os.svg\",\"width\":null,\"height\":null,\"label\":\"macos-1\"}" -agent_name[4]="windows-1" +id[4]="4" +id_map[4]="2" x[4]="528" y[4]="-37" -parent[4]="1" +z[4]="0" +deleted[4]="0" +type[4]="0" +refresh[4]="0" +source[4]="0" +source_data[4]="{\"tagente\":{\"nombre\":\"windows-1\"}}" +options[4]="" +style[4]="{\"shape\":\"circle\",\"image\":\"images/networkmap/windows@os.svg\",\"width\":null,\"height\":null,\"label\":\"windows-1\"}" -agent_name[5]="windows-2" +id[5]="5" +id_map[5]="2" x[5]="514" y[5]="389" -parent[5]="1" +z[5]="0" +deleted[5]="0" +type[5]="0" +refresh[5]="0" +source[5]="0" +source_data[5]="{\"tagente\":{\"nombre\":\"windows-2\"}}" +options[5]="" +style[5]="{\"shape\":\"circle\",\"image\":\"images/networkmap/windows@os.svg\",\"width\":null,\"height\":null,\"label\":\"windows-2\"}" -agent_name[6]="linux-1" +id[6]="6" +id_map[6]="2" x[6]="342" y[6]="-273" -parent[6]="4" +z[6]="0" +deleted[6]="0" +type[6]="0" +refresh[6]="0" +source[6]="0" +source_data[6]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +options[6]="" +style[6]="{\"shape\":\"circle\",\"image\":\"images/networkmap/linux@os.svg\",\"width\":null,\"height\":null,\"label\":\"linux-1\"}" -agent_name[7]="linux-2" +id[7]="7" +id_map[7]="2" x[7]="240" y[7]="-7" -parent[7]="4" +z[7]="0" +deleted[7]="0" +type[7]="0" +refresh[7]="0" +source[7]="0" +source_data[7]="{\"tagente\":{\"nombre\":\"linux-2\"}}" +options[7]="" +style[7]="{\"shape\":\"circle\",\"image\":\"images/networkmap/linux@os.svg\",\"width\":null,\"height\":null,\"label\":\"linux-2\"}" -agent_name[8]="linux-3" +id[8]="8" +id_map[8]="2" x[8]="214" y[8]="275" -parent[8]="5" +z[8]="0" +deleted[8]="0" +type[8]="0" +refresh[8]="0" +source[8]="0" +source_data[8]="{\"tagente\":{\"nombre\":\"linux-3\"}}" +options[8]="" +style[8]="{\"shape\":\"circle\",\"image\":\"images/networkmap/linux@os.svg\",\"width\":null,\"height\":null,\"label\":\"linux-3\"}" -agent_name[9]="linux-4" +id[9]="9" +id_map[9]="2" x[9]="226" y[9]="595" -parent[9]="5" +z[9]="0" +deleted[9]="0" +type[9]="0" +refresh[9]="0" +source[9]="0" +source_data[9]="{\"tagente\":{\"nombre\":\"linux-4\"}}" +options[9]="" +style[9]="{\"shape\":\"circle\",\"image\":\"images/networkmap/linux@os.svg\",\"width\":null,\"height\":null,\"label\":\"linux-4\"}" -agent_name[10]="cisco-2" +id[10]="10" +id_map[10]="2" x[10]="1036" y[10]="711" -parent[10]="1" +z[10]="0" +deleted[10]="0" +type[10]="0" +refresh[10]="0" +source[10]="0" +source_data[10]="{\"tagente\":{\"nombre\":\"cisco-2\"}}" +options[10]="" +style[10]="{\"shape\":\"circle\",\"image\":\"images/networkmap/cisco@os.svg\",\"width\":null,\"height\":null,\"label\":\"cisco-2\"}" -agent_name[11]="freebsd-2" +id[11]="11" +id_map[11]="2" x[11]="892" y[11]="-47" -parent[11]="1" +z[11]="0" +deleted[11]="0" +type[11]="0" +refresh[11]="0" +source[11]="0" +source_data[11]="{\"tagente\":{\"nombre\":\"freebsd-2\"}}" +options[11]="" +style[11]="{\"shape\":\"circle\",\"image\":\"images/networkmap/freebsd@os.svg\",\"width\":null,\"height\":null,\"label\":\"freebsd-2\"}" -agent_name[12]="macos-2" +id[12]="12" +id_map[12]="2" x[12]="1150" y[12]="409" -parent[12]="1" +z[12]="0" +deleted[12]="0" +type[12]="0" +refresh[12]="0" +source[12]="0" +source_data[12]="{\"tagente\":{\"nombre\":\"macos-2\"}}" +options[12]="" +style[12]="{\"shape\":\"circle\",\"image\":\"images/networkmap/apple@os.svg\",\"width\":null,\"height\":null,\"label\":\"macos-2\"}" -agent_name[13]="windows-3" +id[13]="13" +id_map[13]="2" x[13]="686" y[13]="875" -parent[13]="10" +z[13]="0" +deleted[13]="0" +type[13]="0" +refresh[13]="0" +source[13]="0" +source_data[13]="{\"tagente\":{\"nombre\":\"windows-3\"}}" +options[13]="" +style[13]="{\"shape\":\"circle\",\"image\":\"images/networkmap/windows@os.svg\",\"width\":null,\"height\":null,\"label\":\"windows-3\"}" -agent_name[14]="windows-4" +id[14]="14" +id_map[14]="2" x[14]="1452" y[14]="847" -parent[14]="10" +z[14]="0" +deleted[14]="0" +type[14]="0" +refresh[14]="0" +source[14]="0" +source_data[14]="{\"tagente\":{\"nombre\":\"windows-4\"}}" +options[14]="" +style[14]="{\"shape\":\"circle\",\"image\":\"images/networkmap/windows@os.svg\",\"width\":null,\"height\":null,\"label\":\"windows-4\"}" -agent_name[15]="linux-5" +id[15]="15" +id_map[15]="2" x[15]="314" y[15]="845" -parent[15]="13" +z[15]="0" +deleted[15]="0" +type[15]="0" +refresh[15]="0" +source[15]="0" +source_data[15]="{\"tagente\":{\"nombre\":\"linux-5\"}}" +options[15]="" +style[15]="{\"shape\":\"circle\",\"image\":\"images/networkmap/linux@os.svg\",\"width\":null,\"height\":null,\"label\":\"linux-5\"}" -agent_name[16]="linux-6" +id[16]="16" +id_map[16]="2" x[16]="474" y[16]="1043" -parent[16]="13" +z[16]="0" +deleted[16]="0" +type[16]="0" +refresh[16]="0" +source[16]="0" +source_data[16]="{\"tagente\":{\"nombre\":\"linux-6\"}}" +options[16]="" +style[16]="{\"shape\":\"circle\",\"image\":\"images/networkmap/linux@os.svg\",\"width\":null,\"height\":null,\"label\":\"linux-6\"}" -agent_name[17]="linux-7" +id[17]="17" +id_map[17]="2" x[17]="1812" y[17]="1011" -parent[17]="14" +z[17]="0" +deleted[17]="0" +type[17]="0" +refresh[17]="0" +source[17]="0" +source_data[17]="{\"tagente\":{\"nombre\":\"linux-7\"}}" +options[17]="" +style[17]="{\"shape\":\"circle\",\"image\":\"images/networkmap/linux@os.svg\",\"width\":null,\"height\":null,\"label\":\"linux-7\"}" -agent_name[18]="linux-8" +id[18]="18" +id_map[18]="2" x[18]="1828" y[18]="723" -parent[18]="14" +z[18]="0" +deleted[18]="0" +type[18]="0" +refresh[18]="0" +source[18]="0" +source_data[18]="{\"tagente\":{\"nombre\":\"linux-8\"}}" +options[18]="" +style[18]="{\"shape\":\"circle\",\"image\":\"images/networkmap/linux@os.svg\",\"width\":null,\"height\":null,\"label\":\"linux-8\"}" -agent_name[19]="cisco-3" +id[19]="19" +id_map[19]="2" x[19]="1824" y[19]="285" -parent[19]="3" +z[19]="0" +deleted[19]="0" +type[19]="0" +refresh[19]="0" +source[19]="0" +source_data[19]="{\"tagente\":{\"nombre\":\"cisco-3\"}}" +options[19]="" +style[19]="{\"shape\":\"circle\",\"image\":\"images/networkmap/cisco@os.svg\",\"width\":null,\"height\":null,\"label\":\"cisco-3\"}" -agent_name[20]="freebsd-3" +id[20]="20" +id_map[20]="2" x[20]="-82" y[20]="583" -parent[20]="9" +z[20]="0" +deleted[20]="0" +type[20]="0" +refresh[20]="0" +source[20]="0" +source_data[20]="{\"tagente\":{\"nombre\":\"freebsd-3\"}}" +options[20]="" +style[20]="{\"shape\":\"circle\",\"image\":\"images/networkmap/freebsd@os.svg\",\"width\":null,\"height\":null,\"label\":\"freebsd-3\"}" -agent_name[21]="macos-3" +id[21]="21" +id_map[21]="2" x[21]="-140" y[21]="299" -parent[21]="20" +z[21]="0" +deleted[21]="0" +type[21]="0" +refresh[21]="0" +source[21]="0" +source_data[21]="{\"tagente\":{\"nombre\":\"macos-3\"}}" +options[21]="" +style[21]="{\"shape\":\"circle\",\"image\":\"images/networkmap/apple@os.svg\",\"width\":null,\"height\":null,\"label\":\"macos-3\"}" -agent_name[22]="windows-5" +id[22]="22" +id_map[22]="2" x[22]="-390" y[22]="385" -parent[22]="20" +z[22]="0" +deleted[22]="0" +type[22]="0" +refresh[22]="0" +source[22]="0" +source_data[22]="{\"tagente\":{\"nombre\":\"windows-5\"}}" +options[22]="" +style[22]="{\"shape\":\"circle\",\"image\":\"images/networkmap/windows@os.svg\",\"width\":null,\"height\":null,\"label\":\"windows-5\"}" -agent_name[23]="windows-6" +id[23]="23" +id_map[23]="2" x[23]="-470" y[23]="671" -parent[23]="20" +z[23]="0" +deleted[23]="0" +type[23]="0" +refresh[23]="0" +source[23]="0" +source_data[23]="{\"tagente\":{\"nombre\":\"windows-6\"}}" +options[23]="" +style[23]="{\"shape\":\"circle\",\"image\":\"images/networkmap/windows@os.svg\",\"width\":null,\"height\":null,\"label\":\"windows-6\"}" -agent_name[24]="linux-9" +id[24]="24" +id_map[24]="2" x[24]="-296" y[24]="899" -parent[24]="20" +z[24]="0" +deleted[24]="0" +type[24]="0" +refresh[24]="0" +source[24]="0" +source_data[24]="{\"tagente\":{\"nombre\":\"linux-9\"}}" +options[24]="" +style[24]="{\"shape\":\"circle\",\"image\":\"images/networkmap/linux@os.svg\",\"width\":null,\"height\":null,\"label\":\"linux-9\"}" -agent_name[25]="linux-10" +id[25]="25" +id_map[25]="2" x[25]="-25" y[25]="961" -parent[25]="20" +z[25]="0" +deleted[25]="0" +type[25]="0" +refresh[25]="0" +source[25]="0" +source_data[25]="{\"tagente\":{\"nombre\":\"linux-10\"}}" +options[25]="" +style[25]="{\"shape\":\"circle\",\"image\":\"images/networkmap/linux@os.svg\",\"width\":null,\"height\":null,\"label\":\"linux-10\"}" -agent_name[26]="linux-11" +id[26]="26" +id_map[26]="2" x[26]="1683" y[26]="13" -parent[26]="19" +z[26]="0" +deleted[26]="0" +type[26]="0" +refresh[26]="0" +source[26]="0" +source_data[26]="{\"tagente\":{\"nombre\":\"linux-11\"}}" +options[26]="" +style[26]="{\"shape\":\"circle\",\"image\":\"images/networkmap/linux@os.svg\",\"width\":null,\"height\":null,\"label\":\"linux-11\"}" -agent_name[27]="linux-12" +id[27]="27" +id_map[27]="2" x[27]="2135" y[27]="51" -parent[27]="19" \ No newline at end of file +z[27]="0" +deleted[27]="0" +type[27]="0" +refresh[27]="0" +source[27]="0" +source_data[27]="{\"tagente\":{\"nombre\":\"linux-12\"}}" +options[27]="" +style[27]="{\"shape\":\"circle\",\"image\":\"images/networkmap/linux@os.svg\",\"width\":null,\"height\":null,\"label\":\"linux-12\"}" + +[trel_item] + +id[1]="1" +id_parent[1]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"12\",\"x\":\"854\",\"y\":\"221\",\"z\":\"0\"}}" +id_child[1]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"11\",\"x\":\"1184\",\"y\":\"-25\",\"z\":\"0\"}}" +id_map[1]="2" +id_parent_source_data[1]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_child_source_data[1]="{\"tagente\":{\"nombre\":\"freebsd-1\"}}" +parent_type[1]="0" +child_type[1]="0" +id_item[1]="0" +deleted[1]="0" + +id[2]="2" +id_parent[2]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"12\",\"x\":\"854\",\"y\":\"221\",\"z\":\"0\"}}" +id_child[2]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"10\",\"x\":\"1268\",\"y\":\"235\",\"z\":\"0\"}}" +id_map[2]="2" +id_parent_source_data[2]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_child_source_data[2]="{\"tagente\":{\"nombre\":\"macos-1\"}}" +parent_type[2]="0" +child_type[2]="0" +id_item[2]="0" +deleted[2]="0" + +id[3]="3" +id_parent[3]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"12\",\"x\":\"854\",\"y\":\"221\",\"z\":\"0\"}}" +id_child[3]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"8\",\"x\":\"528\",\"y\":\"-37\",\"z\":\"0\"}}" +id_map[3]="2" +id_parent_source_data[3]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_child_source_data[3]="{\"tagente\":{\"nombre\":\"windows-1\"}}" +parent_type[3]="0" +child_type[3]="0" +id_item[3]="0" +deleted[3]="0" + +id[4]="4" +id_parent[4]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"12\",\"x\":\"854\",\"y\":\"221\",\"z\":\"0\"}}" +id_child[4]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"9\",\"x\":\"514\",\"y\":\"389\",\"z\":\"0\"}}" +id_map[4]="2" +id_parent_source_data[4]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_child_source_data[4]="{\"tagente\":{\"nombre\":\"windows-2\"}}" +parent_type[4]="0" +child_type[4]="0" +id_item[4]="0" +deleted[4]="0" + +id[5]="5" +id_parent[5]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"8\",\"x\":\"528\",\"y\":\"-37\",\"z\":\"0\"}}" +id_child[5]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"4\",\"x\":\"342\",\"y\":\"-273\",\"z\":\"0\"}}" +id_map[5]="2" +id_parent_source_data[5]="{\"tagente\":{\"nombre\":\"windows-1\"}}" +id_child_source_data[5]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +parent_type[5]="0" +child_type[5]="0" +id_item[5]="0" +deleted[5]="0" + +id[6]="6" +id_parent[6]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"8\",\"x\":\"528\",\"y\":\"-37\",\"z\":\"0\"}}" +id_child[6]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"5\",\"x\":\"240\",\"y\":\"-7\",\"z\":\"0\"}}" +id_map[6]="2" +id_parent_source_data[6]="{\"tagente\":{\"nombre\":\"windows-1\"}}" +id_child_source_data[6]="{\"tagente\":{\"nombre\":\"linux-2\"}}" +parent_type[6]="0" +child_type[6]="0" +id_item[6]="0" +deleted[6]="0" + +id[7]="7" +id_parent[7]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"9\",\"x\":\"514\",\"y\":\"389\",\"z\":\"0\"}}" +id_child[7]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"6\",\"x\":\"214\",\"y\":\"275\",\"z\":\"0\"}}" +id_map[7]="2" +id_parent_source_data[7]="{\"tagente\":{\"nombre\":\"windows-2\"}}" +id_child_source_data[7]="{\"tagente\":{\"nombre\":\"linux-3\"}}" +parent_type[7]="0" +child_type[7]="0" +id_item[7]="0" +deleted[7]="0" + +id[8]="8" +id_parent[8]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"9\",\"x\":\"514\",\"y\":\"389\",\"z\":\"0\"}}" +id_child[8]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"7\",\"x\":\"226\",\"y\":\"595\",\"z\":\"0\"}}" +id_map[8]="2" +id_parent_source_data[8]="{\"tagente\":{\"nombre\":\"windows-2\"}}" +id_child_source_data[8]="{\"tagente\":{\"nombre\":\"linux-4\"}}" +parent_type[8]="0" +child_type[8]="0" +id_item[8]="0" +deleted[8]="0" + +id[9]="9" +id_parent[9]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"12\",\"x\":\"854\",\"y\":\"221\",\"z\":\"0\"}}" +id_child[9]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"22\",\"x\":\"1036\",\"y\":\"711\",\"z\":\"0\"}}" +id_map[9]="2" +id_parent_source_data[9]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_child_source_data[9]="{\"tagente\":{\"nombre\":\"cisco-2\"}}" +parent_type[9]="0" +child_type[9]="0" +id_item[9]="0" +deleted[9]="0" + +id[10]="10" +id_parent[10]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"12\",\"x\":\"854\",\"y\":\"221\",\"z\":\"0\"}}" +id_child[10]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"21\",\"x\":\"892\",\"y\":\"-47\",\"z\":\"0\"}}" +id_map[10]="2" +id_parent_source_data[10]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_child_source_data[10]="{\"tagente\":{\"nombre\":\"freebsd-2\"}}" +parent_type[10]="0" +child_type[10]="0" +id_item[10]="0" +deleted[10]="0" + +id[11]="11" +id_parent[11]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"12\",\"x\":\"854\",\"y\":\"221\",\"z\":\"0\"}}" +id_child[11]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"20\",\"x\":\"1150\",\"y\":\"409\",\"z\":\"0\"}}" +id_map[11]="2" +id_parent_source_data[11]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_child_source_data[11]="{\"tagente\":{\"nombre\":\"macos-2\"}}" +parent_type[11]="0" +child_type[11]="0" +id_item[11]="0" +deleted[11]="0" + +id[12]="12" +id_parent[12]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"22\",\"x\":\"1036\",\"y\":\"711\",\"z\":\"0\"}}" +id_child[12]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"18\",\"x\":\"686\",\"y\":\"875\",\"z\":\"0\"}}" +id_map[12]="2" +id_parent_source_data[12]="{\"tagente\":{\"nombre\":\"cisco-2\"}}" +id_child_source_data[12]="{\"tagente\":{\"nombre\":\"windows-3\"}}" +parent_type[12]="0" +child_type[12]="0" +id_item[12]="0" +deleted[12]="0" + +id[13]="13" +id_parent[13]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"22\",\"x\":\"1036\",\"y\":\"711\",\"z\":\"0\"}}" +id_child[13]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"19\",\"x\":\"1452\",\"y\":\"847\",\"z\":\"0\"}}" +id_map[13]="2" +id_parent_source_data[13]="{\"tagente\":{\"nombre\":\"cisco-2\"}}" +id_child_source_data[13]="{\"tagente\":{\"nombre\":\"windows-4\"}}" +parent_type[13]="0" +child_type[13]="0" +id_item[13]="0" +deleted[13]="0" + +id[14]="14" +id_parent[14]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"18\",\"x\":\"686\",\"y\":\"875\",\"z\":\"0\"}}" +id_child[14]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"14\",\"x\":\"314\",\"y\":\"845\",\"z\":\"0\"}}" +id_map[14]="2" +id_parent_source_data[14]="{\"tagente\":{\"nombre\":\"windows-3\"}}" +id_child_source_data[14]="{\"tagente\":{\"nombre\":\"linux-5\"}}" +parent_type[14]="0" +child_type[14]="0" +id_item[14]="0" +deleted[14]="0" + +id[15]="15" +id_parent[15]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"18\",\"x\":\"686\",\"y\":\"875\",\"z\":\"0\"}}" +id_child[15]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"15\",\"x\":\"474\",\"y\":\"1043\",\"z\":\"0\"}}" +id_map[15]="2" +id_parent_source_data[15]="{\"tagente\":{\"nombre\":\"windows-3\"}}" +id_child_source_data[15]="{\"tagente\":{\"nombre\":\"linux-6\"}}" +parent_type[15]="0" +child_type[15]="0" +id_item[15]="0" +deleted[15]="0" + +id[16]="16" +id_parent[16]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"19\",\"x\":\"1452\",\"y\":\"847\",\"z\":\"0\"}}" +id_child[16]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"16\",\"x\":\"1812\",\"y\":\"1011\",\"z\":\"0\"}}" +id_map[16]="2" +id_parent_source_data[16]="{\"tagente\":{\"nombre\":\"windows-4\"}}" +id_child_source_data[16]="{\"tagente\":{\"nombre\":\"linux-7\"}}" +parent_type[16]="0" +child_type[16]="0" +id_item[16]="0" +deleted[16]="0" + +id[17]="17" +id_parent[17]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"19\",\"x\":\"1452\",\"y\":\"847\",\"z\":\"0\"}}" +id_child[17]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"17\",\"x\":\"1828\",\"y\":\"723\",\"z\":\"0\"}}" +id_map[17]="2" +id_parent_source_data[17]="{\"tagente\":{\"nombre\":\"windows-4\"}}" +id_child_source_data[17]="{\"tagente\":{\"nombre\":\"linux-8\"}}" +parent_type[17]="0" +child_type[17]="0" +id_item[17]="0" +deleted[17]="0" + +id[18]="18" +id_parent[18]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"10\",\"x\":\"1268\",\"y\":\"235\",\"z\":\"0\"}}" +id_child[18]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"32\",\"x\":\"1824\",\"y\":\"285\",\"z\":\"0\"}}" +id_map[18]="2" +id_parent_source_data[18]="{\"tagente\":{\"nombre\":\"macos-1\"}}" +id_child_source_data[18]="{\"tagente\":{\"nombre\":\"cisco-3\"}}" +parent_type[18]="0" +child_type[18]="0" +id_item[18]="0" +deleted[18]="0" + +id[19]="19" +id_parent[19]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"7\",\"x\":\"226\",\"y\":\"595\",\"z\":\"0\"}}" +id_child[19]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"31\",\"x\":\"-82\",\"y\":\"583\",\"z\":\"0\"}}" +id_map[19]="2" +id_parent_source_data[19]="{\"tagente\":{\"nombre\":\"linux-4\"}}" +id_child_source_data[19]="{\"tagente\":{\"nombre\":\"freebsd-3\"}}" +parent_type[19]="0" +child_type[19]="0" +id_item[19]="0" +deleted[19]="0" + +id[20]="20" +id_parent[20]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"31\",\"x\":\"-82\",\"y\":\"583\",\"z\":\"0\"}}" +id_child[20]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"30\",\"x\":\"-140\",\"y\":\"299\",\"z\":\"0\"}}" +id_map[20]="2" +id_parent_source_data[20]="{\"tagente\":{\"nombre\":\"freebsd-3\"}}" +id_child_source_data[20]="{\"tagente\":{\"nombre\":\"macos-3\"}}" +parent_type[20]="0" +child_type[20]="0" +id_item[20]="0" +deleted[20]="0" + +id[21]="21" +id_parent[21]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"31\",\"x\":\"-82\",\"y\":\"583\",\"z\":\"0\"}}" +id_child[21]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"28\",\"x\":\"-390\",\"y\":\"385\",\"z\":\"0\"}}" +id_map[21]="2" +id_parent_source_data[21]="{\"tagente\":{\"nombre\":\"freebsd-3\"}}" +id_child_source_data[21]="{\"tagente\":{\"nombre\":\"windows-5\"}}" +parent_type[21]="0" +child_type[21]="0" +id_item[21]="0" +deleted[21]="0" + +id[22]="22" +id_parent[22]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"31\",\"x\":\"-82\",\"y\":\"583\",\"z\":\"0\"}}" +id_child[22]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"29\",\"x\":\"-470\",\"y\":\"671\",\"z\":\"0\"}}" +id_map[22]="2" +id_parent_source_data[22]="{\"tagente\":{\"nombre\":\"freebsd-3\"}}" +id_child_source_data[22]="{\"tagente\":{\"nombre\":\"windows-6\"}}" +parent_type[22]="0" +child_type[22]="0" +id_item[22]="0" +deleted[22]="0" + +id[23]="23" +id_parent[23]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"31\",\"x\":\"-82\",\"y\":\"583\",\"z\":\"0\"}}" +id_child[23]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"24\",\"x\":\"-296\",\"y\":\"899\",\"z\":\"0\"}}" +id_map[23]="2" +id_parent_source_data[23]="{\"tagente\":{\"nombre\":\"freebsd-3\"}}" +id_child_source_data[23]="{\"tagente\":{\"nombre\":\"linux-9\"}}" +parent_type[23]="0" +child_type[23]="0" +id_item[23]="0" +deleted[23]="0" + +id[24]="24" +id_parent[24]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"31\",\"x\":\"-82\",\"y\":\"583\",\"z\":\"0\"}}" +id_child[24]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"25\",\"x\":\"-25\",\"y\":\"961\",\"z\":\"0\"}}" +id_map[24]="2" +id_parent_source_data[24]="{\"tagente\":{\"nombre\":\"freebsd-3\"}}" +id_child_source_data[24]="{\"tagente\":{\"nombre\":\"linux-10\"}}" +parent_type[24]="0" +child_type[24]="0" +id_item[24]="0" +deleted[24]="0" + +id[25]="25" +id_parent[25]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"32\",\"x\":\"1824\",\"y\":\"285\",\"z\":\"0\"}}" +id_child[25]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"26\",\"x\":\"1683\",\"y\":\"13\",\"z\":\"0\"}}" +id_map[25]="2" +id_parent_source_data[25]="{\"tagente\":{\"nombre\":\"cisco-3\"}}" +id_child_source_data[25]="{\"tagente\":{\"nombre\":\"linux-11\"}}" +parent_type[25]="0" +child_type[25]="0" +id_item[25]="0" +deleted[25]="0" + +id[26]="26" +id_parent[26]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"32\",\"x\":\"1824\",\"y\":\"285\",\"z\":\"0\"}}" +id_child[26]="{\"titem\":{\"id_map\":\"2\",\"type\":\"0\",\"source_data\":\"27\",\"x\":\"2135\",\"y\":\"51\",\"z\":\"0\"}}" +id_map[26]="2" +id_parent_source_data[26]="{\"tagente\":{\"nombre\":\"cisco-3\"}}" +id_child_source_data[26]="{\"tagente\":{\"nombre\":\"linux-12\"}}" +parent_type[26]="0" +child_type[26]="0" +id_item[26]="0" +deleted[26]="0" + diff --git a/pandora_console/extras/demodata/network_maps/2-sunburst-networkmap.prd b/pandora_console/extras/demodata/network_maps/2-sunburst-networkmap.prd index 4bdac3ce97..3effac6af2 100644 --- a/pandora_console/extras/demodata/network_maps/2-sunburst-networkmap.prd +++ b/pandora_console/extras/demodata/network_maps/2-sunburst-networkmap.prd @@ -1,9 +1,33 @@ -[map_data] +[prd_data] +type="network_map" name="Demo sunburst network map" -group="Demo servers" -description="This is a demo sunburst network map" -node_radius="40" -generation_method="radial_dynamic" -[map_items] \ No newline at end of file +[tmap] + +id[3]="3" +id_group[3]="{\"tgrupo\":{\"nombre\":\"Demo servers\"}}" +id_user[3]="" +type[3]="0" +subtype[3]="0" +name[3]="Demo sunburst network map" +description[3]="This is a demo sunburst network map" +height[3]="0" +width[3]="0" +center_x[3]="0" +center_y[3]="0" +background[3]="" +background_options[3]="0" +source_period[3]="0" +source[3]="0" +source_data[3]="{\"tgrupo\":{\"nombre\":\"Demo servers\"}}" +generation_method[3]="6" +generated[3]="0" +filter[3]="{\"dont_show_subgroups\":0,\"node_radius\":\"40\",\"x_offs\":0,\"y_offs\":0,\"z_dash\":\"0.5\",\"node_sep\":\"0.25\",\"rank_sep\":\"0.25\",\"mindist\":1,\"kval\":\"0.3\"}" +id_group_map[3]="{\"tgrupo\":{\"nombre\":\"Demo servers\"}}" +refresh_time[3]="300" + +[titem] + +[trel_item] + diff --git a/pandora_console/extras/demodata/reports/1-linux-report.prd b/pandora_console/extras/demodata/reports/1-linux-report.prd index 7a274eb968..307e36a19b 100644 --- a/pandora_console/extras/demodata/reports/1-linux-report.prd +++ b/pandora_console/extras/demodata/reports/1-linux-report.prd @@ -1,84 +1,1158 @@ -[report_data] +[prd_data] +type="custom_report" name="Linux report" -group="Demo servers" -description="This is a demo report for linux agents" -[report_items] +[treport] -name[1]="Linux CPU Load graph" -type[1]="custom_graph" -graph_name[1]="Linux CPU Load" -periodicity[1]="86400" +id_report[2]="2" +id_user[2]="" +name[2]="Linux report" +description[2]="This is a demo report for linux agents" +private[2]="0" +id_group[2]="{\"tgrupo\":{\"nombre\":\"Demo servers\"}}" +custom_logo[2]="" +header[2]="" +first_page[2]="" +footer[2]="" +custom_font[2]="" +id_template[2]="0" +id_group_edit[2]="0" +metaconsole[2]="0" +non_interactive[2]="0" +hidden[2]="0" +orientation[2]="vertical" +cover_page_render[2]="1" +index_render[2]="1" -name[2]="linux-1 httpd" -type[2]="SLA" -agent_name[2]="linux-1" -module[2]="Service httpd" -periodicity[2]="86400" +[treport_content] -name[3]="linux-1 mysqld" -type[3]="SLA" -agent_name[3]="linux-1" -module[3]="Service mysqld" -periodicity[3]="86400" +id_rc[4]="4" +id_report[4]="2" +id_gs[4]="{\"tgraph\":{\"name\":\"Linux CPU Load\"}}" +id_agent_module[4]="" +type[4]="custom_graph" +period[4]="86400" +period_range[4]="0" +order[4]="0" +name[4]="Linux CPU Load graph" +description[4]="" +id_agent[4]="0" +text[4]="" +external_source[4]="" +treport_custom_sql_id[4]="0" +header_definition[4]="" +column_separator[4]="" +line_separator[4]="" +time_from[4]="00:00:00" +time_to[4]="00:00:00" +monday[4]="1" +tuesday[4]="1" +wednesday[4]="1" +thursday[4]="1" +friday[4]="1" +saturday[4]="1" +sunday[4]="1" +only_display_wrong[4]="0" +top_n[4]="0" +top_n_value[4]="10" +exception_condition[4]="0" +exception_condition_value[4]="0" +show_resume[4]="0" +order_uptodown[4]="0" +show_graph[4]="0" +group_by_agent[4]="0" +style[4]="{\"show_in_same_row\":0,\"hide_notinit_agents\":0,\"priority_mode\":\"1\",\"dyn_height\":\"250\"}" +id_group[4]="0" +id_module_group[4]="0" +server_name[4]="" +historical_db[4]="0" +lapse_calc[4]="0" +lapse[4]="300" +visual_format[4]="0" +hide_no_data[4]="0" +recursion[4]="" +show_extended_events[4]="0" +total_time[4]="1" +time_failed[4]="1" +time_in_ok_status[4]="1" +time_in_warning_status[4]="0" +time_in_unknown_status[4]="1" +time_of_not_initialized_module[4]="1" +time_of_downtime[4]="1" +total_checks[4]="1" +checks_failed[4]="1" +checks_in_ok_status[4]="1" +checks_in_warning_status[4]="0" +unknown_checks[4]="1" +agent_max_value[4]="1" +agent_min_value[4]="1" +current_month[4]="1" +failover_mode[4]="1" +failover_type[4]="1" +uncompressed_module[4]="0" +summary[4]="0" +landscape[4]="0" +pagebreak[4]="0" +compare_work_time[4]="0" +graph_render[4]="0" +ipam_network_filter[4]="0" +ipam_alive_ips[4]="0" +ipam_ip_not_assigned_to_agent[4]="0" +macros_definition[4]="" +render_definition[4]="" +use_prefix_notation[4]="1" +cat_security_hardening[4]="0" +ignore_skipped[4]="0" +status_of_check[4]="" +ncm_agents[4]="" +check_unknowns_graph[4]="0" -name[4]="linux-1 CPU Load graph" -type[4]="simple_graph" -agent_name[4]="linux-1" -module[4]="CPU Load" -periodicity[4]="86400" - -name[5]="linux-2 httpd" +id_rc[5]="5" +id_report[5]="2" +id_gs[5]="" +id_agent_module[5]="{\"tagente_modulo\":{\"nombre\":\"Service httpd\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" type[5]="SLA" -agent_name[5]="linux-2" -module[5]="Service httpd" -periodicity[5]="86400" +period[5]="86400" +period_range[5]="0" +order[5]="0" +name[5]="linux-1 httpd" +description[5]="" +id_agent[5]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +text[5]="" +external_source[5]="" +treport_custom_sql_id[5]="0" +header_definition[5]="" +column_separator[5]="" +line_separator[5]="" +time_from[5]="00:00:00" +time_to[5]="00:00:00" +monday[5]="1" +tuesday[5]="1" +wednesday[5]="1" +thursday[5]="1" +friday[5]="1" +saturday[5]="1" +sunday[5]="1" +only_display_wrong[5]="0" +top_n[5]="0" +top_n_value[5]="10" +exception_condition[5]="0" +exception_condition_value[5]="0" +show_resume[5]="0" +order_uptodown[5]="0" +show_graph[5]="0" +group_by_agent[5]="0" +style[5]="" +id_group[5]="0" +id_module_group[5]="0" +server_name[5]="" +historical_db[5]="0" +lapse_calc[5]="0" +lapse[5]="300" +visual_format[5]="0" +hide_no_data[5]="0" +recursion[5]="" +show_extended_events[5]="0" +total_time[5]="1" +time_failed[5]="1" +time_in_ok_status[5]="1" +time_in_warning_status[5]="0" +time_in_unknown_status[5]="1" +time_of_not_initialized_module[5]="1" +time_of_downtime[5]="1" +total_checks[5]="1" +checks_failed[5]="1" +checks_in_ok_status[5]="1" +checks_in_warning_status[5]="0" +unknown_checks[5]="1" +agent_max_value[5]="1" +agent_min_value[5]="1" +current_month[5]="1" +failover_mode[5]="1" +failover_type[5]="1" +uncompressed_module[5]="0" +summary[5]="0" +landscape[5]="0" +pagebreak[5]="0" +compare_work_time[5]="0" +graph_render[5]="0" +ipam_network_filter[5]="0" +ipam_alive_ips[5]="0" +ipam_ip_not_assigned_to_agent[5]="0" +macros_definition[5]="" +render_definition[5]="" +use_prefix_notation[5]="1" +cat_security_hardening[5]="0" +ignore_skipped[5]="0" +status_of_check[5]="" +ncm_agents[5]="" +check_unknowns_graph[5]="0" -name[6]="linux-2 mysqld" +id_rc[6]="6" +id_report[6]="2" +id_gs[6]="" +id_agent_module[6]="{\"tagente_modulo\":{\"nombre\":\"Service mysqld\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" type[6]="SLA" -agent_name[6]="linux-2" -module[6]="Service mysqld" -periodicity[6]="86400" +period[6]="86400" +period_range[6]="0" +order[6]="0" +name[6]="linux-1 mysqld" +description[6]="" +id_agent[6]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +text[6]="" +external_source[6]="" +treport_custom_sql_id[6]="0" +header_definition[6]="" +column_separator[6]="" +line_separator[6]="" +time_from[6]="00:00:00" +time_to[6]="00:00:00" +monday[6]="1" +tuesday[6]="1" +wednesday[6]="1" +thursday[6]="1" +friday[6]="1" +saturday[6]="1" +sunday[6]="1" +only_display_wrong[6]="0" +top_n[6]="0" +top_n_value[6]="10" +exception_condition[6]="0" +exception_condition_value[6]="0" +show_resume[6]="0" +order_uptodown[6]="0" +show_graph[6]="0" +group_by_agent[6]="0" +style[6]="" +id_group[6]="0" +id_module_group[6]="0" +server_name[6]="" +historical_db[6]="0" +lapse_calc[6]="0" +lapse[6]="300" +visual_format[6]="0" +hide_no_data[6]="0" +recursion[6]="" +show_extended_events[6]="0" +total_time[6]="1" +time_failed[6]="1" +time_in_ok_status[6]="1" +time_in_warning_status[6]="0" +time_in_unknown_status[6]="1" +time_of_not_initialized_module[6]="1" +time_of_downtime[6]="1" +total_checks[6]="1" +checks_failed[6]="1" +checks_in_ok_status[6]="1" +checks_in_warning_status[6]="0" +unknown_checks[6]="1" +agent_max_value[6]="1" +agent_min_value[6]="1" +current_month[6]="1" +failover_mode[6]="1" +failover_type[6]="1" +uncompressed_module[6]="0" +summary[6]="0" +landscape[6]="0" +pagebreak[6]="0" +compare_work_time[6]="0" +graph_render[6]="0" +ipam_network_filter[6]="0" +ipam_alive_ips[6]="0" +ipam_ip_not_assigned_to_agent[6]="0" +macros_definition[6]="" +render_definition[6]="" +use_prefix_notation[6]="1" +cat_security_hardening[6]="0" +ignore_skipped[6]="0" +status_of_check[6]="" +ncm_agents[6]="" +check_unknowns_graph[6]="0" -name[7]="linux-2 CPU Load graph" +id_rc[7]="7" +id_report[7]="2" +id_gs[7]="" +id_agent_module[7]="{\"tagente_modulo\":{\"nombre\":\"CPU Load\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" type[7]="simple_graph" -agent_name[7]="linux-2" -module[7]="CPU Load" -periodicity[7]="86400" +period[7]="86400" +period_range[7]="0" +order[7]="0" +name[7]="linux-1 CPU Load graph" +description[7]="" +id_agent[7]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +text[7]="" +external_source[7]="" +treport_custom_sql_id[7]="0" +header_definition[7]="" +column_separator[7]="" +line_separator[7]="" +time_from[7]="00:00:00" +time_to[7]="00:00:00" +monday[7]="1" +tuesday[7]="1" +wednesday[7]="1" +thursday[7]="1" +friday[7]="1" +saturday[7]="1" +sunday[7]="1" +only_display_wrong[7]="0" +top_n[7]="0" +top_n_value[7]="10" +exception_condition[7]="0" +exception_condition_value[7]="0" +show_resume[7]="0" +order_uptodown[7]="0" +show_graph[7]="0" +group_by_agent[7]="0" +style[7]="{\"show_in_same_row\":0,\"hide_notinit_agents\":0,\"priority_mode\":1,\"dyn_height\":\"250\",\"percentil\":0,\"fullscale\":0,\"image_threshold\":0,\"label\":\"\"}" +id_group[7]="0" +id_module_group[7]="0" +server_name[7]="" +historical_db[7]="0" +lapse_calc[7]="0" +lapse[7]="300" +visual_format[7]="0" +hide_no_data[7]="0" +recursion[7]="" +show_extended_events[7]="0" +total_time[7]="1" +time_failed[7]="1" +time_in_ok_status[7]="1" +time_in_warning_status[7]="0" +time_in_unknown_status[7]="1" +time_of_not_initialized_module[7]="1" +time_of_downtime[7]="1" +total_checks[7]="1" +checks_failed[7]="1" +checks_in_ok_status[7]="1" +checks_in_warning_status[7]="0" +unknown_checks[7]="1" +agent_max_value[7]="1" +agent_min_value[7]="1" +current_month[7]="1" +failover_mode[7]="1" +failover_type[7]="1" +uncompressed_module[7]="0" +summary[7]="0" +landscape[7]="0" +pagebreak[7]="0" +compare_work_time[7]="0" +graph_render[7]="0" +ipam_network_filter[7]="0" +ipam_alive_ips[7]="0" +ipam_ip_not_assigned_to_agent[7]="0" +macros_definition[7]="" +render_definition[7]="" +use_prefix_notation[7]="1" +cat_security_hardening[7]="0" +ignore_skipped[7]="0" +status_of_check[7]="" +ncm_agents[7]="" +check_unknowns_graph[7]="0" -name[8]="linux-3 httpd" +id_rc[8]="8" +id_report[8]="2" +id_gs[8]="" +id_agent_module[8]="{\"tagente_modulo\":{\"nombre\":\"Service httpd\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-2\"}}}}" type[8]="SLA" -agent_name[8]="linux-3" -module[8]="Service httpd" -periodicity[8]="86400" +period[8]="86400" +period_range[8]="0" +order[8]="0" +name[8]="linux-2 httpd" +description[8]="" +id_agent[8]="{\"tagente\":{\"nombre\":\"linux-2\"}}" +text[8]="" +external_source[8]="" +treport_custom_sql_id[8]="0" +header_definition[8]="" +column_separator[8]="" +line_separator[8]="" +time_from[8]="00:00:00" +time_to[8]="00:00:00" +monday[8]="1" +tuesday[8]="1" +wednesday[8]="1" +thursday[8]="1" +friday[8]="1" +saturday[8]="1" +sunday[8]="1" +only_display_wrong[8]="0" +top_n[8]="0" +top_n_value[8]="10" +exception_condition[8]="0" +exception_condition_value[8]="0" +show_resume[8]="0" +order_uptodown[8]="0" +show_graph[8]="0" +group_by_agent[8]="0" +style[8]="" +id_group[8]="0" +id_module_group[8]="0" +server_name[8]="" +historical_db[8]="0" +lapse_calc[8]="0" +lapse[8]="300" +visual_format[8]="0" +hide_no_data[8]="0" +recursion[8]="" +show_extended_events[8]="0" +total_time[8]="1" +time_failed[8]="1" +time_in_ok_status[8]="1" +time_in_warning_status[8]="0" +time_in_unknown_status[8]="1" +time_of_not_initialized_module[8]="1" +time_of_downtime[8]="1" +total_checks[8]="1" +checks_failed[8]="1" +checks_in_ok_status[8]="1" +checks_in_warning_status[8]="0" +unknown_checks[8]="1" +agent_max_value[8]="1" +agent_min_value[8]="1" +current_month[8]="1" +failover_mode[8]="1" +failover_type[8]="1" +uncompressed_module[8]="0" +summary[8]="0" +landscape[8]="0" +pagebreak[8]="0" +compare_work_time[8]="0" +graph_render[8]="0" +ipam_network_filter[8]="0" +ipam_alive_ips[8]="0" +ipam_ip_not_assigned_to_agent[8]="0" +macros_definition[8]="" +render_definition[8]="" +use_prefix_notation[8]="1" +cat_security_hardening[8]="0" +ignore_skipped[8]="0" +status_of_check[8]="" +ncm_agents[8]="" +check_unknowns_graph[8]="0" -name[9]="linux-3 mysqld" +id_rc[9]="9" +id_report[9]="2" +id_gs[9]="" +id_agent_module[9]="{\"tagente_modulo\":{\"nombre\":\"Service mysqld\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-2\"}}}}" type[9]="SLA" -agent_name[9]="linux-3" -module[9]="Service mysqld" -periodicity[9]="86400" +period[9]="86400" +period_range[9]="0" +order[9]="0" +name[9]="linux-2 mysqld" +description[9]="" +id_agent[9]="{\"tagente\":{\"nombre\":\"linux-2\"}}" +text[9]="" +external_source[9]="" +treport_custom_sql_id[9]="0" +header_definition[9]="" +column_separator[9]="" +line_separator[9]="" +time_from[9]="00:00:00" +time_to[9]="00:00:00" +monday[9]="1" +tuesday[9]="1" +wednesday[9]="1" +thursday[9]="1" +friday[9]="1" +saturday[9]="1" +sunday[9]="1" +only_display_wrong[9]="0" +top_n[9]="0" +top_n_value[9]="10" +exception_condition[9]="0" +exception_condition_value[9]="0" +show_resume[9]="0" +order_uptodown[9]="0" +show_graph[9]="0" +group_by_agent[9]="0" +style[9]="" +id_group[9]="0" +id_module_group[9]="0" +server_name[9]="" +historical_db[9]="0" +lapse_calc[9]="0" +lapse[9]="300" +visual_format[9]="0" +hide_no_data[9]="0" +recursion[9]="" +show_extended_events[9]="0" +total_time[9]="1" +time_failed[9]="1" +time_in_ok_status[9]="1" +time_in_warning_status[9]="0" +time_in_unknown_status[9]="1" +time_of_not_initialized_module[9]="1" +time_of_downtime[9]="1" +total_checks[9]="1" +checks_failed[9]="1" +checks_in_ok_status[9]="1" +checks_in_warning_status[9]="0" +unknown_checks[9]="1" +agent_max_value[9]="1" +agent_min_value[9]="1" +current_month[9]="1" +failover_mode[9]="1" +failover_type[9]="1" +uncompressed_module[9]="0" +summary[9]="0" +landscape[9]="0" +pagebreak[9]="0" +compare_work_time[9]="0" +graph_render[9]="0" +ipam_network_filter[9]="0" +ipam_alive_ips[9]="0" +ipam_ip_not_assigned_to_agent[9]="0" +macros_definition[9]="" +render_definition[9]="" +use_prefix_notation[9]="1" +cat_security_hardening[9]="0" +ignore_skipped[9]="0" +status_of_check[9]="" +ncm_agents[9]="" +check_unknowns_graph[9]="0" -name[10]="linux-3 CPU Load graph" +id_rc[10]="10" +id_report[10]="2" +id_gs[10]="" +id_agent_module[10]="{\"tagente_modulo\":{\"nombre\":\"CPU Load\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-2\"}}}}" type[10]="simple_graph" -agent_name[10]="linux-3" -module[10]="CPU Load" -periodicity[10]="86400" +period[10]="86400" +period_range[10]="0" +order[10]="0" +name[10]="linux-2 CPU Load graph" +description[10]="" +id_agent[10]="{\"tagente\":{\"nombre\":\"linux-2\"}}" +text[10]="" +external_source[10]="" +treport_custom_sql_id[10]="0" +header_definition[10]="" +column_separator[10]="" +line_separator[10]="" +time_from[10]="00:00:00" +time_to[10]="00:00:00" +monday[10]="1" +tuesday[10]="1" +wednesday[10]="1" +thursday[10]="1" +friday[10]="1" +saturday[10]="1" +sunday[10]="1" +only_display_wrong[10]="0" +top_n[10]="0" +top_n_value[10]="10" +exception_condition[10]="0" +exception_condition_value[10]="0" +show_resume[10]="0" +order_uptodown[10]="0" +show_graph[10]="0" +group_by_agent[10]="0" +style[10]="{\"show_in_same_row\":0,\"hide_notinit_agents\":0,\"priority_mode\":1,\"dyn_height\":\"250\",\"percentil\":0,\"fullscale\":0,\"image_threshold\":0,\"label\":\"\"}" +id_group[10]="0" +id_module_group[10]="0" +server_name[10]="" +historical_db[10]="0" +lapse_calc[10]="0" +lapse[10]="300" +visual_format[10]="0" +hide_no_data[10]="0" +recursion[10]="" +show_extended_events[10]="0" +total_time[10]="1" +time_failed[10]="1" +time_in_ok_status[10]="1" +time_in_warning_status[10]="0" +time_in_unknown_status[10]="1" +time_of_not_initialized_module[10]="1" +time_of_downtime[10]="1" +total_checks[10]="1" +checks_failed[10]="1" +checks_in_ok_status[10]="1" +checks_in_warning_status[10]="0" +unknown_checks[10]="1" +agent_max_value[10]="1" +agent_min_value[10]="1" +current_month[10]="1" +failover_mode[10]="1" +failover_type[10]="1" +uncompressed_module[10]="0" +summary[10]="0" +landscape[10]="0" +pagebreak[10]="0" +compare_work_time[10]="0" +graph_render[10]="0" +ipam_network_filter[10]="0" +ipam_alive_ips[10]="0" +ipam_ip_not_assigned_to_agent[10]="0" +macros_definition[10]="" +render_definition[10]="" +use_prefix_notation[10]="1" +cat_security_hardening[10]="0" +ignore_skipped[10]="0" +status_of_check[10]="" +ncm_agents[10]="" +check_unknowns_graph[10]="0" -name[11]="linux-4 httpd" +id_rc[11]="11" +id_report[11]="2" +id_gs[11]="" +id_agent_module[11]="{\"tagente_modulo\":{\"nombre\":\"Service httpd\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-3\"}}}}" type[11]="SLA" -agent_name[11]="linux-4" -module[11]="Service httpd" -periodicity[11]="86400" +period[11]="86400" +period_range[11]="0" +order[11]="0" +name[11]="linux-3 httpd" +description[11]="" +id_agent[11]="{\"tagente\":{\"nombre\":\"linux-3\"}}" +text[11]="" +external_source[11]="" +treport_custom_sql_id[11]="0" +header_definition[11]="" +column_separator[11]="" +line_separator[11]="" +time_from[11]="00:00:00" +time_to[11]="00:00:00" +monday[11]="1" +tuesday[11]="1" +wednesday[11]="1" +thursday[11]="1" +friday[11]="1" +saturday[11]="1" +sunday[11]="1" +only_display_wrong[11]="0" +top_n[11]="0" +top_n_value[11]="10" +exception_condition[11]="0" +exception_condition_value[11]="0" +show_resume[11]="0" +order_uptodown[11]="0" +show_graph[11]="0" +group_by_agent[11]="0" +style[11]="" +id_group[11]="0" +id_module_group[11]="0" +server_name[11]="" +historical_db[11]="0" +lapse_calc[11]="0" +lapse[11]="300" +visual_format[11]="0" +hide_no_data[11]="0" +recursion[11]="" +show_extended_events[11]="0" +total_time[11]="1" +time_failed[11]="1" +time_in_ok_status[11]="1" +time_in_warning_status[11]="0" +time_in_unknown_status[11]="1" +time_of_not_initialized_module[11]="1" +time_of_downtime[11]="1" +total_checks[11]="1" +checks_failed[11]="1" +checks_in_ok_status[11]="1" +checks_in_warning_status[11]="0" +unknown_checks[11]="1" +agent_max_value[11]="1" +agent_min_value[11]="1" +current_month[11]="1" +failover_mode[11]="1" +failover_type[11]="1" +uncompressed_module[11]="0" +summary[11]="0" +landscape[11]="0" +pagebreak[11]="0" +compare_work_time[11]="0" +graph_render[11]="0" +ipam_network_filter[11]="0" +ipam_alive_ips[11]="0" +ipam_ip_not_assigned_to_agent[11]="0" +macros_definition[11]="" +render_definition[11]="" +use_prefix_notation[11]="1" +cat_security_hardening[11]="0" +ignore_skipped[11]="0" +status_of_check[11]="" +ncm_agents[11]="" +check_unknowns_graph[11]="0" -name[12]="linux-4 mysqld" +id_rc[12]="12" +id_report[12]="2" +id_gs[12]="" +id_agent_module[12]="{\"tagente_modulo\":{\"nombre\":\"Service mysqld\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-3\"}}}}" type[12]="SLA" -agent_name[12]="linux-4" -module[12]="Service mysqld" -periodicity[12]="86400" +period[12]="86400" +period_range[12]="0" +order[12]="0" +name[12]="linux-3 mysqld" +description[12]="" +id_agent[12]="{\"tagente\":{\"nombre\":\"linux-3\"}}" +text[12]="" +external_source[12]="" +treport_custom_sql_id[12]="0" +header_definition[12]="" +column_separator[12]="" +line_separator[12]="" +time_from[12]="00:00:00" +time_to[12]="00:00:00" +monday[12]="1" +tuesday[12]="1" +wednesday[12]="1" +thursday[12]="1" +friday[12]="1" +saturday[12]="1" +sunday[12]="1" +only_display_wrong[12]="0" +top_n[12]="0" +top_n_value[12]="10" +exception_condition[12]="0" +exception_condition_value[12]="0" +show_resume[12]="0" +order_uptodown[12]="0" +show_graph[12]="0" +group_by_agent[12]="0" +style[12]="" +id_group[12]="0" +id_module_group[12]="0" +server_name[12]="" +historical_db[12]="0" +lapse_calc[12]="0" +lapse[12]="300" +visual_format[12]="0" +hide_no_data[12]="0" +recursion[12]="" +show_extended_events[12]="0" +total_time[12]="1" +time_failed[12]="1" +time_in_ok_status[12]="1" +time_in_warning_status[12]="0" +time_in_unknown_status[12]="1" +time_of_not_initialized_module[12]="1" +time_of_downtime[12]="1" +total_checks[12]="1" +checks_failed[12]="1" +checks_in_ok_status[12]="1" +checks_in_warning_status[12]="0" +unknown_checks[12]="1" +agent_max_value[12]="1" +agent_min_value[12]="1" +current_month[12]="1" +failover_mode[12]="1" +failover_type[12]="1" +uncompressed_module[12]="0" +summary[12]="0" +landscape[12]="0" +pagebreak[12]="0" +compare_work_time[12]="0" +graph_render[12]="0" +ipam_network_filter[12]="0" +ipam_alive_ips[12]="0" +ipam_ip_not_assigned_to_agent[12]="0" +macros_definition[12]="" +render_definition[12]="" +use_prefix_notation[12]="1" +cat_security_hardening[12]="0" +ignore_skipped[12]="0" +status_of_check[12]="" +ncm_agents[12]="" +check_unknowns_graph[12]="0" -name[13]="linux-4 CPU Load graph" +id_rc[13]="13" +id_report[13]="2" +id_gs[13]="" +id_agent_module[13]="{\"tagente_modulo\":{\"nombre\":\"CPU Load\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-3\"}}}}" type[13]="simple_graph" -agent_name[13]="linux-4" -module[13]="CPU Load" -periodicity[13]="86400" \ No newline at end of file +period[13]="86400" +period_range[13]="0" +order[13]="0" +name[13]="linux-3 CPU Load graph" +description[13]="" +id_agent[13]="{\"tagente\":{\"nombre\":\"linux-3\"}}" +text[13]="" +external_source[13]="" +treport_custom_sql_id[13]="0" +header_definition[13]="" +column_separator[13]="" +line_separator[13]="" +time_from[13]="00:00:00" +time_to[13]="00:00:00" +monday[13]="1" +tuesday[13]="1" +wednesday[13]="1" +thursday[13]="1" +friday[13]="1" +saturday[13]="1" +sunday[13]="1" +only_display_wrong[13]="0" +top_n[13]="0" +top_n_value[13]="10" +exception_condition[13]="0" +exception_condition_value[13]="0" +show_resume[13]="0" +order_uptodown[13]="0" +show_graph[13]="0" +group_by_agent[13]="0" +style[13]="{\"show_in_same_row\":0,\"hide_notinit_agents\":0,\"priority_mode\":1,\"dyn_height\":\"250\",\"percentil\":0,\"fullscale\":0,\"image_threshold\":0,\"label\":\"\"}" +id_group[13]="0" +id_module_group[13]="0" +server_name[13]="" +historical_db[13]="0" +lapse_calc[13]="0" +lapse[13]="300" +visual_format[13]="0" +hide_no_data[13]="0" +recursion[13]="" +show_extended_events[13]="0" +total_time[13]="1" +time_failed[13]="1" +time_in_ok_status[13]="1" +time_in_warning_status[13]="0" +time_in_unknown_status[13]="1" +time_of_not_initialized_module[13]="1" +time_of_downtime[13]="1" +total_checks[13]="1" +checks_failed[13]="1" +checks_in_ok_status[13]="1" +checks_in_warning_status[13]="0" +unknown_checks[13]="1" +agent_max_value[13]="1" +agent_min_value[13]="1" +current_month[13]="1" +failover_mode[13]="1" +failover_type[13]="1" +uncompressed_module[13]="0" +summary[13]="0" +landscape[13]="0" +pagebreak[13]="0" +compare_work_time[13]="0" +graph_render[13]="0" +ipam_network_filter[13]="0" +ipam_alive_ips[13]="0" +ipam_ip_not_assigned_to_agent[13]="0" +macros_definition[13]="" +render_definition[13]="" +use_prefix_notation[13]="1" +cat_security_hardening[13]="0" +ignore_skipped[13]="0" +status_of_check[13]="" +ncm_agents[13]="" +check_unknowns_graph[13]="0" + +id_rc[14]="14" +id_report[14]="2" +id_gs[14]="" +id_agent_module[14]="{\"tagente_modulo\":{\"nombre\":\"Service httpd\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-4\"}}}}" +type[14]="SLA" +period[14]="86400" +period_range[14]="0" +order[14]="0" +name[14]="linux-4 httpd" +description[14]="" +id_agent[14]="{\"tagente\":{\"nombre\":\"linux-4\"}}" +text[14]="" +external_source[14]="" +treport_custom_sql_id[14]="0" +header_definition[14]="" +column_separator[14]="" +line_separator[14]="" +time_from[14]="00:00:00" +time_to[14]="00:00:00" +monday[14]="1" +tuesday[14]="1" +wednesday[14]="1" +thursday[14]="1" +friday[14]="1" +saturday[14]="1" +sunday[14]="1" +only_display_wrong[14]="0" +top_n[14]="0" +top_n_value[14]="10" +exception_condition[14]="0" +exception_condition_value[14]="0" +show_resume[14]="0" +order_uptodown[14]="0" +show_graph[14]="0" +group_by_agent[14]="0" +style[14]="" +id_group[14]="0" +id_module_group[14]="0" +server_name[14]="" +historical_db[14]="0" +lapse_calc[14]="0" +lapse[14]="300" +visual_format[14]="0" +hide_no_data[14]="0" +recursion[14]="" +show_extended_events[14]="0" +total_time[14]="1" +time_failed[14]="1" +time_in_ok_status[14]="1" +time_in_warning_status[14]="0" +time_in_unknown_status[14]="1" +time_of_not_initialized_module[14]="1" +time_of_downtime[14]="1" +total_checks[14]="1" +checks_failed[14]="1" +checks_in_ok_status[14]="1" +checks_in_warning_status[14]="0" +unknown_checks[14]="1" +agent_max_value[14]="1" +agent_min_value[14]="1" +current_month[14]="1" +failover_mode[14]="1" +failover_type[14]="1" +uncompressed_module[14]="0" +summary[14]="0" +landscape[14]="0" +pagebreak[14]="0" +compare_work_time[14]="0" +graph_render[14]="0" +ipam_network_filter[14]="0" +ipam_alive_ips[14]="0" +ipam_ip_not_assigned_to_agent[14]="0" +macros_definition[14]="" +render_definition[14]="" +use_prefix_notation[14]="1" +cat_security_hardening[14]="0" +ignore_skipped[14]="0" +status_of_check[14]="" +ncm_agents[14]="" +check_unknowns_graph[14]="0" + +id_rc[15]="15" +id_report[15]="2" +id_gs[15]="" +id_agent_module[15]="{\"tagente_modulo\":{\"nombre\":\"Service mysqld\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-4\"}}}}" +type[15]="SLA" +period[15]="86400" +period_range[15]="0" +order[15]="0" +name[15]="linux-4 mysqld" +description[15]="" +id_agent[15]="{\"tagente\":{\"nombre\":\"linux-4\"}}" +text[15]="" +external_source[15]="" +treport_custom_sql_id[15]="0" +header_definition[15]="" +column_separator[15]="" +line_separator[15]="" +time_from[15]="00:00:00" +time_to[15]="00:00:00" +monday[15]="1" +tuesday[15]="1" +wednesday[15]="1" +thursday[15]="1" +friday[15]="1" +saturday[15]="1" +sunday[15]="1" +only_display_wrong[15]="0" +top_n[15]="0" +top_n_value[15]="10" +exception_condition[15]="0" +exception_condition_value[15]="0" +show_resume[15]="0" +order_uptodown[15]="0" +show_graph[15]="0" +group_by_agent[15]="0" +style[15]="" +id_group[15]="0" +id_module_group[15]="0" +server_name[15]="" +historical_db[15]="0" +lapse_calc[15]="0" +lapse[15]="300" +visual_format[15]="0" +hide_no_data[15]="0" +recursion[15]="" +show_extended_events[15]="0" +total_time[15]="1" +time_failed[15]="1" +time_in_ok_status[15]="1" +time_in_warning_status[15]="0" +time_in_unknown_status[15]="1" +time_of_not_initialized_module[15]="1" +time_of_downtime[15]="1" +total_checks[15]="1" +checks_failed[15]="1" +checks_in_ok_status[15]="1" +checks_in_warning_status[15]="0" +unknown_checks[15]="1" +agent_max_value[15]="1" +agent_min_value[15]="1" +current_month[15]="1" +failover_mode[15]="1" +failover_type[15]="1" +uncompressed_module[15]="0" +summary[15]="0" +landscape[15]="0" +pagebreak[15]="0" +compare_work_time[15]="0" +graph_render[15]="0" +ipam_network_filter[15]="0" +ipam_alive_ips[15]="0" +ipam_ip_not_assigned_to_agent[15]="0" +macros_definition[15]="" +render_definition[15]="" +use_prefix_notation[15]="1" +cat_security_hardening[15]="0" +ignore_skipped[15]="0" +status_of_check[15]="" +ncm_agents[15]="" +check_unknowns_graph[15]="0" + +id_rc[16]="16" +id_report[16]="2" +id_gs[16]="" +id_agent_module[16]="{\"tagente_modulo\":{\"nombre\":\"CPU Load\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-4\"}}}}" +type[16]="simple_graph" +period[16]="86400" +period_range[16]="0" +order[16]="0" +name[16]="linux-4 CPU Load graph" +description[16]="" +id_agent[16]="{\"tagente\":{\"nombre\":\"linux-4\"}}" +text[16]="" +external_source[16]="" +treport_custom_sql_id[16]="0" +header_definition[16]="" +column_separator[16]="" +line_separator[16]="" +time_from[16]="00:00:00" +time_to[16]="00:00:00" +monday[16]="1" +tuesday[16]="1" +wednesday[16]="1" +thursday[16]="1" +friday[16]="1" +saturday[16]="1" +sunday[16]="1" +only_display_wrong[16]="0" +top_n[16]="0" +top_n_value[16]="10" +exception_condition[16]="0" +exception_condition_value[16]="0" +show_resume[16]="0" +order_uptodown[16]="0" +show_graph[16]="0" +group_by_agent[16]="0" +style[16]="{\"show_in_same_row\":0,\"hide_notinit_agents\":0,\"priority_mode\":1,\"dyn_height\":\"250\",\"percentil\":0,\"fullscale\":0,\"image_threshold\":0,\"label\":\"\"}" +id_group[16]="0" +id_module_group[16]="0" +server_name[16]="" +historical_db[16]="0" +lapse_calc[16]="0" +lapse[16]="300" +visual_format[16]="0" +hide_no_data[16]="0" +recursion[16]="" +show_extended_events[16]="0" +total_time[16]="1" +time_failed[16]="1" +time_in_ok_status[16]="1" +time_in_warning_status[16]="0" +time_in_unknown_status[16]="1" +time_of_not_initialized_module[16]="1" +time_of_downtime[16]="1" +total_checks[16]="1" +checks_failed[16]="1" +checks_in_ok_status[16]="1" +checks_in_warning_status[16]="0" +unknown_checks[16]="1" +agent_max_value[16]="1" +agent_min_value[16]="1" +current_month[16]="1" +failover_mode[16]="1" +failover_type[16]="1" +uncompressed_module[16]="0" +summary[16]="0" +landscape[16]="0" +pagebreak[16]="0" +compare_work_time[16]="0" +graph_render[16]="0" +ipam_network_filter[16]="0" +ipam_alive_ips[16]="0" +ipam_ip_not_assigned_to_agent[16]="0" +macros_definition[16]="" +render_definition[16]="" +use_prefix_notation[16]="1" +cat_security_hardening[16]="0" +ignore_skipped[16]="0" +status_of_check[16]="" +ncm_agents[16]="" +check_unknowns_graph[16]="0" + +[treport_content_item] + +[treport_content_sla_combined] + +id[1]="1" +id_report_content[1]="5" +id_agent_module[1]="{\"tagente_modulo\":{\"nombre\":\"Service httpd\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent_module_failover[1]="0" +sla_max[1]="0" +sla_min[1]="0" +sla_limit[1]="95" +server_name[1]="" + +id[2]="2" +id_report_content[2]="6" +id_agent_module[2]="{\"tagente_modulo\":{\"nombre\":\"Service mysqld\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent_module_failover[2]="0" +sla_max[2]="0" +sla_min[2]="0" +sla_limit[2]="95" +server_name[2]="" + +id[3]="3" +id_report_content[3]="8" +id_agent_module[3]="{\"tagente_modulo\":{\"nombre\":\"Service httpd\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-2\"}}}}" +id_agent_module_failover[3]="0" +sla_max[3]="0" +sla_min[3]="0" +sla_limit[3]="95" +server_name[3]="" + +id[4]="4" +id_report_content[4]="9" +id_agent_module[4]="{\"tagente_modulo\":{\"nombre\":\"Service mysqld\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-2\"}}}}" +id_agent_module_failover[4]="0" +sla_max[4]="0" +sla_min[4]="0" +sla_limit[4]="95" +server_name[4]="" + +id[5]="5" +id_report_content[5]="11" +id_agent_module[5]="{\"tagente_modulo\":{\"nombre\":\"Service httpd\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-3\"}}}}" +id_agent_module_failover[5]="0" +sla_max[5]="0" +sla_min[5]="0" +sla_limit[5]="95" +server_name[5]="" + +id[6]="6" +id_report_content[6]="12" +id_agent_module[6]="{\"tagente_modulo\":{\"nombre\":\"Service mysqld\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-3\"}}}}" +id_agent_module_failover[6]="0" +sla_max[6]="0" +sla_min[6]="0" +sla_limit[6]="95" +server_name[6]="" + +id[7]="7" +id_report_content[7]="14" +id_agent_module[7]="{\"tagente_modulo\":{\"nombre\":\"Service httpd\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-4\"}}}}" +id_agent_module_failover[7]="0" +sla_max[7]="0" +sla_min[7]="0" +sla_limit[7]="95" +server_name[7]="" + +id[8]="8" +id_report_content[8]="15" +id_agent_module[8]="{\"tagente_modulo\":{\"nombre\":\"Service mysqld\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-4\"}}}}" +id_agent_module_failover[8]="0" +sla_max[8]="0" +sla_min[8]="0" +sla_limit[8]="95" +server_name[8]="" + diff --git a/pandora_console/extras/demodata/services/1-mysql-service.prd b/pandora_console/extras/demodata/services/1-mysql-service.prd index 23e366e44a..d3431ff574 100644 --- a/pandora_console/extras/demodata/services/1-mysql-service.prd +++ b/pandora_console/extras/demodata/services/1-mysql-service.prd @@ -1,26 +1,92 @@ -[service_data] +[prd_data] +type="service" name="MySQL service" -group="Demo services" -description="This is a demo service for MySQL" -mode="smart" -critical="50" -warning="30" -[service_items] +[tservice] -type[1]="module" -agent_name[1]="linux-1" -module[1]="Service mysqld" +id[1]="1" +name[1]="MySQL service" +description[1]="This is a demo service for MySQL" +id_group[1]="{\"tgrupo\":{\"nombre\":\"Demo services\"}}" +critical[1]="50" +warning[1]="30" +unknown_as_critical[1]="0" +service_interval[1]="0" +service_value[1]="0" +status[1]="0" +utimestamp[1]="0" +auto_calculate[1]="1" +id_agent_module[1]="{\"tagente_modulo\":{\"nombre\":\"MySQL service_service\",\"id_agente\":{\"tagente\":{\"nombre\":\"demo-global-agent-1\"}}}}" +sla_interval[1]="0" +sla_id_module[1]="{\"tagente_modulo\":{\"nombre\":\"MySQL service_SLA_service\",\"id_agente\":{\"tagente\":{\"nombre\":\"demo-global-agent-1\"}}}}" +sla_value_id_module[1]="{\"tagente_modulo\":{\"nombre\":\"MySQL service_SLA_Value_service\",\"id_agente\":{\"tagente\":{\"nombre\":\"demo-global-agent-1\"}}}}" +sla_limit[1]="100" +id_template_alert_warning[1]="0" +id_template_alert_critical[1]="0" +id_template_alert_unknown[1]="0" +id_template_alert_critical_sla[1]="0" +quiet[1]="0" +cps[1]="0" +cascade_protection[1]="0" +evaluate_sla[1]="0" +is_favourite[1]="0" +enable_sunburst[1]="0" +asynchronous[1]="0" +enable_horizontal_tree[1]="0" +rca[1]="" -type[2]="module" -agent_name[2]="linux-2" -module[2]="Service mysqld" +[tservice_element] -type[3]="module" -agent_name[3]="linux-3" -module[3]="Service mysqld" +id[1]="1" +id_service[1]="1" +weight_ok[1]="0" +weight_warning[1]="0" +weight_critical[1]="0" +weight_unknown[1]="0" +description[1]="" +id_agente_modulo[1]="{\"tagente_modulo\":{\"nombre\":\"Service mysqld\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[1]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_service_child[1]="0" +id_server_meta[1]="0" +rules[1]="" + +id[2]="2" +id_service[2]="1" +weight_ok[2]="0" +weight_warning[2]="0" +weight_critical[2]="0" +weight_unknown[2]="0" +description[2]="" +id_agente_modulo[2]="{\"tagente_modulo\":{\"nombre\":\"Service mysqld\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-2\"}}}}" +id_agent[2]="{\"tagente\":{\"nombre\":\"linux-2\"}}" +id_service_child[2]="0" +id_server_meta[2]="0" +rules[2]="" + +id[3]="3" +id_service[3]="1" +weight_ok[3]="0" +weight_warning[3]="0" +weight_critical[3]="0" +weight_unknown[3]="0" +description[3]="" +id_agente_modulo[3]="{\"tagente_modulo\":{\"nombre\":\"Service mysqld\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-3\"}}}}" +id_agent[3]="{\"tagente\":{\"nombre\":\"linux-3\"}}" +id_service_child[3]="0" +id_server_meta[3]="0" +rules[3]="" + +id[4]="4" +id_service[4]="1" +weight_ok[4]="0" +weight_warning[4]="0" +weight_critical[4]="0" +weight_unknown[4]="0" +description[4]="" +id_agente_modulo[4]="{\"tagente_modulo\":{\"nombre\":\"Service mysqld\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-4\"}}}}" +id_agent[4]="{\"tagente\":{\"nombre\":\"linux-4\"}}" +id_service_child[4]="0" +id_server_meta[4]="0" +rules[4]="" -type[4]="module" -agent_name[4]="linux-4" -module[4]="Service mysqld" \ No newline at end of file diff --git a/pandora_console/extras/demodata/services/2-http-service.prd b/pandora_console/extras/demodata/services/2-http-service.prd index 2257797134..43a8cd1b02 100644 --- a/pandora_console/extras/demodata/services/2-http-service.prd +++ b/pandora_console/extras/demodata/services/2-http-service.prd @@ -1,26 +1,92 @@ -[service_data] +[prd_data] +type="service" name="HTTP service" -group="Demo services" -description="This is a demo service for HTTP" -mode="smart" -critical="50" -warning="30" -[service_items] +[tservice] -type[1]="module" -agent_name[1]="linux-1" -module[1]="Service httpd" +id[2]="2" +name[2]="HTTP service" +description[2]="This is a demo service for HTTP" +id_group[2]="{\"tgrupo\":{\"nombre\":\"Demo services\"}}" +critical[2]="50" +warning[2]="30" +unknown_as_critical[2]="0" +service_interval[2]="0" +service_value[2]="0" +status[2]="0" +utimestamp[2]="0" +auto_calculate[2]="1" +id_agent_module[2]="{\"tagente_modulo\":{\"nombre\":\"HTTP service_service\",\"id_agente\":{\"tagente\":{\"nombre\":\"demo-global-agent-1\"}}}}" +sla_interval[2]="0" +sla_id_module[2]="{\"tagente_modulo\":{\"nombre\":\"HTTP service_SLA_service\",\"id_agente\":{\"tagente\":{\"nombre\":\"demo-global-agent-1\"}}}}" +sla_value_id_module[2]="{\"tagente_modulo\":{\"nombre\":\"HTTP service_SLA_Value_service\",\"id_agente\":{\"tagente\":{\"nombre\":\"demo-global-agent-1\"}}}}" +sla_limit[2]="100" +id_template_alert_warning[2]="0" +id_template_alert_critical[2]="0" +id_template_alert_unknown[2]="0" +id_template_alert_critical_sla[2]="0" +quiet[2]="0" +cps[2]="0" +cascade_protection[2]="0" +evaluate_sla[2]="0" +is_favourite[2]="0" +enable_sunburst[2]="0" +asynchronous[2]="0" +enable_horizontal_tree[2]="0" +rca[2]="" -type[2]="module" -agent_name[2]="linux-2" -module[2]="Service httpd" +[tservice_element] -type[3]="module" -agent_name[3]="linux-3" -module[3]="Service httpd" +id[5]="5" +id_service[5]="2" +weight_ok[5]="0" +weight_warning[5]="0" +weight_critical[5]="0" +weight_unknown[5]="0" +description[5]="" +id_agente_modulo[5]="{\"tagente_modulo\":{\"nombre\":\"Service httpd\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[5]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_service_child[5]="0" +id_server_meta[5]="0" +rules[5]="" + +id[6]="6" +id_service[6]="2" +weight_ok[6]="0" +weight_warning[6]="0" +weight_critical[6]="0" +weight_unknown[6]="0" +description[6]="" +id_agente_modulo[6]="{\"tagente_modulo\":{\"nombre\":\"Service httpd\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-2\"}}}}" +id_agent[6]="{\"tagente\":{\"nombre\":\"linux-2\"}}" +id_service_child[6]="0" +id_server_meta[6]="0" +rules[6]="" + +id[7]="7" +id_service[7]="2" +weight_ok[7]="0" +weight_warning[7]="0" +weight_critical[7]="0" +weight_unknown[7]="0" +description[7]="" +id_agente_modulo[7]="{\"tagente_modulo\":{\"nombre\":\"Service httpd\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-3\"}}}}" +id_agent[7]="{\"tagente\":{\"nombre\":\"linux-3\"}}" +id_service_child[7]="0" +id_server_meta[7]="0" +rules[7]="" + +id[8]="8" +id_service[8]="2" +weight_ok[8]="0" +weight_warning[8]="0" +weight_critical[8]="0" +weight_unknown[8]="0" +description[8]="" +id_agente_modulo[8]="{\"tagente_modulo\":{\"nombre\":\"Service httpd\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-4\"}}}}" +id_agent[8]="{\"tagente\":{\"nombre\":\"linux-4\"}}" +id_service_child[8]="0" +id_server_meta[8]="0" +rules[8]="" -type[4]="module" -agent_name[4]="linux-4" -module[4]="Service httpd" \ No newline at end of file diff --git a/pandora_console/extras/demodata/services/3-parent-service.prd b/pandora_console/extras/demodata/services/3-parent-service.prd index a31f669735..640097a3d4 100644 --- a/pandora_console/extras/demodata/services/3-parent-service.prd +++ b/pandora_console/extras/demodata/services/3-parent-service.prd @@ -1,16 +1,66 @@ -[service_data] +[prd_data] +type="service" name="Web cluster service" -group="Demo services" -description="This is a demo service for a clustered web" -mode="smart" -critical="50" -warning="50" -[service_items] +[tservice] -type[1]="service" -service_name[1]="MySQL service" +id[3]="3" +name[3]="Web cluster service" +description[3]="This is a demo service for a clustered web" +id_group[3]="{\"tgrupo\":{\"nombre\":\"Demo services\"}}" +critical[3]="50" +warning[3]="50" +unknown_as_critical[3]="0" +service_interval[3]="0" +service_value[3]="0" +status[3]="0" +utimestamp[3]="0" +auto_calculate[3]="1" +id_agent_module[3]="{\"tagente_modulo\":{\"nombre\":\"Web cluster service_service\",\"id_agente\":{\"tagente\":{\"nombre\":\"demo-global-agent-1\"}}}}" +sla_interval[3]="0" +sla_id_module[3]="{\"tagente_modulo\":{\"nombre\":\"Web cluster service_SLA_service\",\"id_agente\":{\"tagente\":{\"nombre\":\"demo-global-agent-1\"}}}}" +sla_value_id_module[3]="{\"tagente_modulo\":{\"nombre\":\"Web cluster service_SLA_Value_service\",\"id_agente\":{\"tagente\":{\"nombre\":\"demo-global-agent-1\"}}}}" +sla_limit[3]="100" +id_template_alert_warning[3]="0" +id_template_alert_critical[3]="0" +id_template_alert_unknown[3]="0" +id_template_alert_critical_sla[3]="0" +quiet[3]="0" +cps[3]="0" +cascade_protection[3]="0" +evaluate_sla[3]="0" +is_favourite[3]="0" +enable_sunburst[3]="0" +asynchronous[3]="0" +enable_horizontal_tree[3]="0" +rca[3]="" + +[tservice_element] + +id[9]="9" +id_service[9]="3" +weight_ok[9]="0" +weight_warning[9]="0" +weight_critical[9]="0" +weight_unknown[9]="0" +description[9]="" +id_agente_modulo[9]="0" +id_agent[9]="0" +id_service_child[9]="{\"tservice\":{\"name\":\"MySQL service\"}}" +id_server_meta[9]="0" +rules[9]="" + +id[10]="10" +id_service[10]="3" +weight_ok[10]="0" +weight_warning[10]="0" +weight_critical[10]="0" +weight_unknown[10]="0" +description[10]="" +id_agente_modulo[10]="0" +id_agent[10]="0" +id_service_child[10]="{\"tservice\":{\"name\":\"HTTP service\"}}" +id_server_meta[10]="0" +rules[10]="" -type[2]="service" -service_name[2]="HTTP service" \ No newline at end of file diff --git a/pandora_console/extras/demodata/visual_consoles/1-cisco-visual-console.prd b/pandora_console/extras/demodata/visual_consoles/1-cisco-visual-console.prd index 075f0ea051..909e9d0e70 100644 --- a/pandora_console/extras/demodata/visual_consoles/1-cisco-visual-console.prd +++ b/pandora_console/extras/demodata/visual_consoles/1-cisco-visual-console.prd @@ -1,509 +1,1942 @@ -[visual_console_data] +[prd_data] +type="visual_console" name="Cisco visual console" -group="Demo network" -background_color="#000000" -width="1680" -height="945" -[visual_console_items] +[tlayout] -type[1]="box" -width[1]="720" +id[1]="1" +name[1]="Cisco visual console" +id_group[1]="{\"tgrupo\":{\"nombre\":\"Demo network\"}}" +background[1]="None.png" +height[1]="945" +width[1]="1680" +background_color[1]="#000000" +is_favourite[1]="0" +auto_adjust[1]="0" +maintenance_mode[1]="" +grid_color[1]="#cccccc" +grid_size[1]="10" + +[tlayout_data] + +id[1]="1" +id_layout[1]="1" +pos_x[1]="100" +pos_y[1]="20" height[1]="290" -x[1]="100" -y[1]="20" +width[1]="720" +label[1]="" +image[1]="" +type[1]="12" +period[1]="3600" +id_agente_modulo[1]="0" +id_agent[1]="0" +id_layout_linked[1]="0" +parent_item[1]="0" +enable_link[1]="1" +id_metaconsole[1]="0" +id_group[1]="0" +id_custom_graph[1]="0" +border_width[1]="0" +type_graph[1]="area" +label_position[1]="down" border_color[1]="#cacab3" fill_color[1]="#cacab3" +recursive_group[1]="0" +show_statistics[1]="0" +linked_layout_node_id[1]="0" +linked_layout_status_type[1]="default" +id_layout_linked_weight[1]="0" +linked_layout_status_as_service_warning[1]="0" +linked_layout_status_as_service_critical[1]="0" +element_group[1]="0" +show_on_top[1]="0" +clock_animation[1]="analogic_1" +time_format[1]="time" +timezone[1]="Europe/Madrid" +show_last_value[1]="0" +cache_expiration[1]="0" +title[1]="" +period_chart_options[1]="" -type[2]="box" -width[2]="720" +id[2]="2" +id_layout[2]="1" +pos_x[2]="860" +pos_y[2]="20" height[2]="290" -x[2]="860" -y[2]="20" +width[2]="720" +label[2]="" +image[2]="" +type[2]="12" +period[2]="3600" +id_agente_modulo[2]="0" +id_agent[2]="0" +id_layout_linked[2]="0" +parent_item[2]="0" +enable_link[2]="1" +id_metaconsole[2]="0" +id_group[2]="0" +id_custom_graph[2]="0" +border_width[2]="0" +type_graph[2]="area" +label_position[2]="down" border_color[2]="#cacab3" fill_color[2]="#cacab3" +recursive_group[2]="0" +show_statistics[2]="0" +linked_layout_node_id[2]="0" +linked_layout_status_type[2]="default" +id_layout_linked_weight[2]="0" +linked_layout_status_as_service_warning[2]="0" +linked_layout_status_as_service_critical[2]="0" +element_group[2]="0" +show_on_top[2]="0" +clock_animation[2]="analogic_1" +time_format[2]="time" +timezone[2]="Europe/Madrid" +show_last_value[2]="0" +cache_expiration[2]="0" +title[2]="" +period_chart_options[2]="" -type[3]="box" -width[3]="266" +id[3]="3" +id_layout[3]="1" +pos_x[3]="100" +pos_y[3]="362" height[3]="150" -x[3]="100" -y[3]="362" +width[3]="266" +label[3]="" +image[3]="" +type[3]="12" +period[3]="3600" +id_agente_modulo[3]="0" +id_agent[3]="0" +id_layout_linked[3]="0" +parent_item[3]="0" +enable_link[3]="1" +id_metaconsole[3]="0" +id_group[3]="0" +id_custom_graph[3]="0" +border_width[3]="0" +type_graph[3]="area" +label_position[3]="down" border_color[3]="#352e28" fill_color[3]="#352e28" +recursive_group[3]="0" +show_statistics[3]="0" +linked_layout_node_id[3]="0" +linked_layout_status_type[3]="default" +id_layout_linked_weight[3]="0" +linked_layout_status_as_service_warning[3]="0" +linked_layout_status_as_service_critical[3]="0" +element_group[3]="0" +show_on_top[3]="0" +clock_animation[3]="analogic_1" +time_format[3]="time" +timezone[3]="Europe/Madrid" +show_last_value[3]="0" +cache_expiration[3]="0" +title[3]="" +period_chart_options[3]="" -type[4]="box" -width[4]="266" +id[4]="4" +id_layout[4]="1" +pos_x[4]="403" +pos_y[4]="362" height[4]="150" -x[4]="403" -y[4]="362" +width[4]="266" +label[4]="" +image[4]="" +type[4]="12" +period[4]="3600" +id_agente_modulo[4]="0" +id_agent[4]="0" +id_layout_linked[4]="0" +parent_item[4]="0" +enable_link[4]="1" +id_metaconsole[4]="0" +id_group[4]="0" +id_custom_graph[4]="0" +border_width[4]="0" +type_graph[4]="area" +label_position[4]="down" border_color[4]="#352e28" fill_color[4]="#352e28" +recursive_group[4]="0" +show_statistics[4]="0" +linked_layout_node_id[4]="0" +linked_layout_status_type[4]="default" +id_layout_linked_weight[4]="0" +linked_layout_status_as_service_warning[4]="0" +linked_layout_status_as_service_critical[4]="0" +element_group[4]="0" +show_on_top[4]="0" +clock_animation[4]="analogic_1" +time_format[4]="time" +timezone[4]="Europe/Madrid" +show_last_value[4]="0" +cache_expiration[4]="0" +title[4]="" +period_chart_options[4]="" -type[5]="box" -width[5]="266" +id[5]="5" +id_layout[5]="1" +pos_x[5]="708" +pos_y[5]="362" height[5]="150" -x[5]="708" -y[5]="362" +width[5]="266" +label[5]="" +image[5]="" +type[5]="12" +period[5]="3600" +id_agente_modulo[5]="0" +id_agent[5]="0" +id_layout_linked[5]="0" +parent_item[5]="0" +enable_link[5]="1" +id_metaconsole[5]="0" +id_group[5]="0" +id_custom_graph[5]="0" +border_width[5]="0" +type_graph[5]="area" +label_position[5]="down" border_color[5]="#352e28" fill_color[5]="#352e28" +recursive_group[5]="0" +show_statistics[5]="0" +linked_layout_node_id[5]="0" +linked_layout_status_type[5]="default" +id_layout_linked_weight[5]="0" +linked_layout_status_as_service_warning[5]="0" +linked_layout_status_as_service_critical[5]="0" +element_group[5]="0" +show_on_top[5]="0" +clock_animation[5]="analogic_1" +time_format[5]="time" +timezone[5]="Europe/Madrid" +show_last_value[5]="0" +cache_expiration[5]="0" +title[5]="" +period_chart_options[5]="" -type[6]="box" -width[6]="266" +id[6]="6" +id_layout[6]="1" +pos_x[6]="1013" +pos_y[6]="362" height[6]="150" -x[6]="1013" -y[6]="362" +width[6]="266" +label[6]="" +image[6]="" +type[6]="12" +period[6]="3600" +id_agente_modulo[6]="0" +id_agent[6]="0" +id_layout_linked[6]="0" +parent_item[6]="0" +enable_link[6]="1" +id_metaconsole[6]="0" +id_group[6]="0" +id_custom_graph[6]="0" +border_width[6]="0" +type_graph[6]="area" +label_position[6]="down" border_color[6]="#352e28" fill_color[6]="#352e28" +recursive_group[6]="0" +show_statistics[6]="0" +linked_layout_node_id[6]="0" +linked_layout_status_type[6]="default" +id_layout_linked_weight[6]="0" +linked_layout_status_as_service_warning[6]="0" +linked_layout_status_as_service_critical[6]="0" +element_group[6]="0" +show_on_top[6]="0" +clock_animation[6]="analogic_1" +time_format[6]="time" +timezone[6]="Europe/Madrid" +show_last_value[6]="0" +cache_expiration[6]="0" +title[6]="" +period_chart_options[6]="" -type[7]="box" -width[7]="266" +id[7]="7" +id_layout[7]="1" +pos_x[7]="1313" +pos_y[7]="362" height[7]="150" -x[7]="1313" -y[7]="362" +width[7]="266" +label[7]="" +image[7]="" +type[7]="12" +period[7]="3600" +id_agente_modulo[7]="0" +id_agent[7]="0" +id_layout_linked[7]="0" +parent_item[7]="0" +enable_link[7]="1" +id_metaconsole[7]="0" +id_group[7]="0" +id_custom_graph[7]="0" +border_width[7]="0" +type_graph[7]="area" +label_position[7]="down" border_color[7]="#352e28" fill_color[7]="#352e28" +recursive_group[7]="0" +show_statistics[7]="0" +linked_layout_node_id[7]="0" +linked_layout_status_type[7]="default" +id_layout_linked_weight[7]="0" +linked_layout_status_as_service_warning[7]="0" +linked_layout_status_as_service_critical[7]="0" +element_group[7]="0" +show_on_top[7]="0" +clock_animation[7]="analogic_1" +time_format[7]="time" +timezone[7]="Europe/Madrid" +show_last_value[7]="0" +cache_expiration[7]="0" +title[7]="" +period_chart_options[7]="" -type[8]="box" -width[8]="460" +id[8]="8" +id_layout[8]="1" +pos_x[8]="100" +pos_y[8]="564" height[8]="362" -x[8]="100" -y[8]="564" +width[8]="460" +label[8]="" +image[8]="" +type[8]="12" +period[8]="3600" +id_agente_modulo[8]="0" +id_agent[8]="0" +id_layout_linked[8]="0" +parent_item[8]="0" +enable_link[8]="1" +id_metaconsole[8]="0" +id_group[8]="0" +id_custom_graph[8]="0" +border_width[8]="0" +type_graph[8]="area" +label_position[8]="down" border_color[8]="#b3cdc1" fill_color[8]="#b3cdc1" +recursive_group[8]="0" +show_statistics[8]="0" +linked_layout_node_id[8]="0" +linked_layout_status_type[8]="default" +id_layout_linked_weight[8]="0" +linked_layout_status_as_service_warning[8]="0" +linked_layout_status_as_service_critical[8]="0" +element_group[8]="0" +show_on_top[8]="0" +clock_animation[8]="analogic_1" +time_format[8]="time" +timezone[8]="Europe/Madrid" +show_last_value[8]="0" +cache_expiration[8]="0" +title[8]="" +period_chart_options[8]="" -type[9]="box" -width[9]="460" +id[9]="9" +id_layout[9]="1" +pos_x[9]="1115" +pos_y[9]="557" height[9]="362" -x[9]="1115" -y[9]="557" +width[9]="460" +label[9]="" +image[9]="" +type[9]="12" +period[9]="3600" +id_agente_modulo[9]="0" +id_agent[9]="0" +id_layout_linked[9]="0" +parent_item[9]="0" +enable_link[9]="1" +id_metaconsole[9]="0" +id_group[9]="0" +id_custom_graph[9]="0" +border_width[9]="0" +type_graph[9]="area" +label_position[9]="down" border_color[9]="#b3cdc1" fill_color[9]="#b3cdc1" +recursive_group[9]="0" +show_statistics[9]="0" +linked_layout_node_id[9]="0" +linked_layout_status_type[9]="default" +id_layout_linked_weight[9]="0" +linked_layout_status_as_service_warning[9]="0" +linked_layout_status_as_service_critical[9]="0" +element_group[9]="0" +show_on_top[9]="0" +clock_animation[9]="analogic_1" +time_format[9]="time" +timezone[9]="Europe/Madrid" +show_last_value[9]="0" +cache_expiration[9]="0" +title[9]="" +period_chart_options[9]="" -type[10]="label" -label_position[10]="down" -width[10]="0" +id[10]="10" +id_layout[10]="1" +pos_x[10]="135" +pos_y[10]="50" height[10]="20" -x[10]="135" -y[10]="50" -label[10]='

      CPU Usage

      ' -show_on_top[10]=true +width[10]="0" +label[10]="<p><span style="font-size: 26px; color: #181818; line-height: 1em;">CPU Usage</span></p>" +image[10]="" +type[10]="4" +period[10]="3600" +id_agente_modulo[10]="0" +id_agent[10]="0" +id_layout_linked[10]="0" +parent_item[10]="0" +enable_link[10]="1" +id_metaconsole[10]="0" +id_group[10]="0" +id_custom_graph[10]="0" +border_width[10]="0" +type_graph[10]="area" +label_position[10]="down" +border_color[10]="" +fill_color[10]="" +recursive_group[10]="0" +show_statistics[10]="0" +linked_layout_node_id[10]="0" +linked_layout_status_type[10]="default" +id_layout_linked_weight[10]="0" +linked_layout_status_as_service_warning[10]="0" +linked_layout_status_as_service_critical[10]="0" +element_group[10]="0" +show_on_top[10]="1" +clock_animation[10]="analogic_1" +time_format[10]="time" +timezone[10]="Europe/Madrid" +show_last_value[10]="0" +cache_expiration[10]="0" +title[10]="" +period_chart_options[10]="" -type[11]="label" -label_position[11]="down" -width[11]="0" +id[11]="11" +id_layout[11]="1" +pos_x[11]="895" +pos_y[11]="50" height[11]="20" -x[11]="895" -y[11]="50" -label[11]='

      Ping / Latency

      ' -show_on_top[11]=true +width[11]="0" +label[11]="<p><span style="font-size: 26px; color: #181818; line-height: 1em;">Ping / Latency</span></p>" +image[11]="" +type[11]="4" +period[11]="3600" +id_agente_modulo[11]="0" +id_agent[11]="0" +id_layout_linked[11]="0" +parent_item[11]="0" +enable_link[11]="1" +id_metaconsole[11]="0" +id_group[11]="0" +id_custom_graph[11]="0" +border_width[11]="0" +type_graph[11]="area" +label_position[11]="down" +border_color[11]="" +fill_color[11]="" +recursive_group[11]="0" +show_statistics[11]="0" +linked_layout_node_id[11]="0" +linked_layout_status_type[11]="default" +id_layout_linked_weight[11]="0" +linked_layout_status_as_service_warning[11]="0" +linked_layout_status_as_service_critical[11]="0" +element_group[11]="0" +show_on_top[11]="1" +clock_animation[11]="analogic_1" +time_format[11]="time" +timezone[11]="Europe/Madrid" +show_last_value[11]="0" +cache_expiration[11]="0" +title[11]="" +period_chart_options[11]="" -type[12]="label" -label_position[12]="down" -width[12]="0" +id[12]="12" +id_layout[12]="1" +pos_x[12]="135" +pos_y[12]="382" height[12]="20" -x[12]="135" -y[12]="382" -label[12]='

      Gi0/0 InOctets

      ' -show_on_top[12]=true +width[12]="0" +label[12]="<p><span style="font-size: 22px; color: #ffffff; line-height: 1.3em;"><strong>Gi0/0 InOctets</strong></span></p>" +image[12]="" +type[12]="4" +period[12]="3600" +id_agente_modulo[12]="0" +id_agent[12]="0" +id_layout_linked[12]="0" +parent_item[12]="0" +enable_link[12]="1" +id_metaconsole[12]="0" +id_group[12]="0" +id_custom_graph[12]="0" +border_width[12]="0" +type_graph[12]="area" +label_position[12]="down" +border_color[12]="" +fill_color[12]="" +recursive_group[12]="0" +show_statistics[12]="0" +linked_layout_node_id[12]="0" +linked_layout_status_type[12]="default" +id_layout_linked_weight[12]="0" +linked_layout_status_as_service_warning[12]="0" +linked_layout_status_as_service_critical[12]="0" +element_group[12]="0" +show_on_top[12]="1" +clock_animation[12]="analogic_1" +time_format[12]="time" +timezone[12]="Europe/Madrid" +show_last_value[12]="0" +cache_expiration[12]="0" +title[12]="" +period_chart_options[12]="" -type[13]="label" -label_position[13]="down" -width[13]="0" +id[13]="13" +id_layout[13]="1" +pos_x[13]="438" +pos_y[13]="382" height[13]="20" -x[13]="438" -y[13]="382" -label[13]='

      Gi0/1 InOctets

      ' -show_on_top[13]=true +width[13]="0" +label[13]="<p><span style="font-size: 22px; color: #ffffff; line-height: 1.3em;"><strong>Gi0/1 InOctets</strong></span></p>" +image[13]="" +type[13]="4" +period[13]="3600" +id_agente_modulo[13]="0" +id_agent[13]="0" +id_layout_linked[13]="0" +parent_item[13]="0" +enable_link[13]="1" +id_metaconsole[13]="0" +id_group[13]="0" +id_custom_graph[13]="0" +border_width[13]="0" +type_graph[13]="area" +label_position[13]="down" +border_color[13]="" +fill_color[13]="" +recursive_group[13]="0" +show_statistics[13]="0" +linked_layout_node_id[13]="0" +linked_layout_status_type[13]="default" +id_layout_linked_weight[13]="0" +linked_layout_status_as_service_warning[13]="0" +linked_layout_status_as_service_critical[13]="0" +element_group[13]="0" +show_on_top[13]="1" +clock_animation[13]="analogic_1" +time_format[13]="time" +timezone[13]="Europe/Madrid" +show_last_value[13]="0" +cache_expiration[13]="0" +title[13]="" +period_chart_options[13]="" -type[14]="label" -label_position[14]="down" -width[14]="0" +id[14]="14" +id_layout[14]="1" +pos_x[14]="743" +pos_y[14]="382" height[14]="20" -x[14]="743" -y[14]="382" -label[14]='

      Gi0/2 InOctets

      ' -show_on_top[14]=true +width[14]="0" +label[14]="<p><span style="font-size: 22px; color: #ffffff; line-height: 1.3em;"><strong>Gi0/2 InOctets</strong></span></p>" +image[14]="" +type[14]="4" +period[14]="3600" +id_agente_modulo[14]="0" +id_agent[14]="0" +id_layout_linked[14]="0" +parent_item[14]="0" +enable_link[14]="1" +id_metaconsole[14]="0" +id_group[14]="0" +id_custom_graph[14]="0" +border_width[14]="0" +type_graph[14]="area" +label_position[14]="down" +border_color[14]="" +fill_color[14]="" +recursive_group[14]="0" +show_statistics[14]="0" +linked_layout_node_id[14]="0" +linked_layout_status_type[14]="default" +id_layout_linked_weight[14]="0" +linked_layout_status_as_service_warning[14]="0" +linked_layout_status_as_service_critical[14]="0" +element_group[14]="0" +show_on_top[14]="1" +clock_animation[14]="analogic_1" +time_format[14]="time" +timezone[14]="Europe/Madrid" +show_last_value[14]="0" +cache_expiration[14]="0" +title[14]="" +period_chart_options[14]="" -type[15]="label" -label_position[15]="down" -width[15]="0" +id[15]="15" +id_layout[15]="1" +pos_x[15]="1048" +pos_y[15]="382" height[15]="20" -x[15]="1048" -y[15]="382" -label[15]='

      Gi0/3 InOctets

      ' -show_on_top[15]=true +width[15]="0" +label[15]="<p><span style="font-size: 22px; color: #ffffff; line-height: 1.3em;"><strong>Gi0/3 InOctets</strong></span></p>" +image[15]="" +type[15]="4" +period[15]="3600" +id_agente_modulo[15]="0" +id_agent[15]="0" +id_layout_linked[15]="0" +parent_item[15]="0" +enable_link[15]="1" +id_metaconsole[15]="0" +id_group[15]="0" +id_custom_graph[15]="0" +border_width[15]="0" +type_graph[15]="area" +label_position[15]="down" +border_color[15]="" +fill_color[15]="" +recursive_group[15]="0" +show_statistics[15]="0" +linked_layout_node_id[15]="0" +linked_layout_status_type[15]="default" +id_layout_linked_weight[15]="0" +linked_layout_status_as_service_warning[15]="0" +linked_layout_status_as_service_critical[15]="0" +element_group[15]="0" +show_on_top[15]="1" +clock_animation[15]="analogic_1" +time_format[15]="time" +timezone[15]="Europe/Madrid" +show_last_value[15]="0" +cache_expiration[15]="0" +title[15]="" +period_chart_options[15]="" -type[16]="label" -label_position[16]="down" -width[16]="0" +id[16]="16" +id_layout[16]="1" +pos_x[16]="1349" +pos_y[16]="382" height[16]="20" -x[16]="1349" -y[16]="382" -label[16]='

      Gi0/4 InOctets

      ' -show_on_top[16]=true +width[16]="0" +label[16]="<p><span style="font-size: 22px; color: #ffffff; line-height: 1.3em;"><strong>Gi0/4 InOctets</strong></span></p>" +image[16]="" +type[16]="4" +period[16]="3600" +id_agente_modulo[16]="0" +id_agent[16]="0" +id_layout_linked[16]="0" +parent_item[16]="0" +enable_link[16]="1" +id_metaconsole[16]="0" +id_group[16]="0" +id_custom_graph[16]="0" +border_width[16]="0" +type_graph[16]="area" +label_position[16]="down" +border_color[16]="" +fill_color[16]="" +recursive_group[16]="0" +show_statistics[16]="0" +linked_layout_node_id[16]="0" +linked_layout_status_type[16]="default" +id_layout_linked_weight[16]="0" +linked_layout_status_as_service_warning[16]="0" +linked_layout_status_as_service_critical[16]="0" +element_group[16]="0" +show_on_top[16]="1" +clock_animation[16]="analogic_1" +time_format[16]="time" +timezone[16]="Europe/Madrid" +show_last_value[16]="0" +cache_expiration[16]="0" +title[16]="" +period_chart_options[16]="" -type[17]="label" -label_position[17]="down" -width[17]="100" +id[17]="17" +id_layout[17]="1" +pos_x[17]="126" +pos_y[17]="573" height[17]="15" -x[17]="126" -y[17]="573" -label[17]='

      Min

      ' -show_on_top[17]=true +width[17]="100" +label[17]="<p><span style="font-size: 16px; color: #181818; line-height: 1em;">Min</span></p>" +image[17]="" +type[17]="4" +period[17]="3600" +id_agente_modulo[17]="0" +id_agent[17]="0" +id_layout_linked[17]="0" +parent_item[17]="0" +enable_link[17]="1" +id_metaconsole[17]="0" +id_group[17]="0" +id_custom_graph[17]="0" +border_width[17]="0" +type_graph[17]="area" +label_position[17]="down" +border_color[17]="" +fill_color[17]="" +recursive_group[17]="0" +show_statistics[17]="0" +linked_layout_node_id[17]="0" +linked_layout_status_type[17]="default" +id_layout_linked_weight[17]="0" +linked_layout_status_as_service_warning[17]="0" +linked_layout_status_as_service_critical[17]="0" +element_group[17]="0" +show_on_top[17]="1" +clock_animation[17]="analogic_1" +time_format[17]="time" +timezone[17]="Europe/Madrid" +show_last_value[17]="0" +cache_expiration[17]="0" +title[17]="" +period_chart_options[17]="" -type[18]="label" -label_position[18]="down" -width[18]="100" +id[18]="18" +id_layout[18]="1" +pos_x[18]="126" +pos_y[18]="640" height[18]="15" -x[18]="126" -y[18]="640" -label[18]='

      Max

      ' -show_on_top[18]=true +width[18]="100" +label[18]="<p><span style="font-size: 16px; color: #181818; line-height: 1em;">Max</span></p>" +image[18]="" +type[18]="4" +period[18]="3600" +id_agente_modulo[18]="0" +id_agent[18]="0" +id_layout_linked[18]="0" +parent_item[18]="0" +enable_link[18]="1" +id_metaconsole[18]="0" +id_group[18]="0" +id_custom_graph[18]="0" +border_width[18]="0" +type_graph[18]="area" +label_position[18]="down" +border_color[18]="" +fill_color[18]="" +recursive_group[18]="0" +show_statistics[18]="0" +linked_layout_node_id[18]="0" +linked_layout_status_type[18]="default" +id_layout_linked_weight[18]="0" +linked_layout_status_as_service_warning[18]="0" +linked_layout_status_as_service_critical[18]="0" +element_group[18]="0" +show_on_top[18]="1" +clock_animation[18]="analogic_1" +time_format[18]="time" +timezone[18]="Europe/Madrid" +show_last_value[18]="0" +cache_expiration[18]="0" +title[18]="" +period_chart_options[18]="" -type[19]="label" -label_position[19]="down" -width[19]="100" +id[19]="19" +id_layout[19]="1" +pos_x[19]="1137" +pos_y[19]="564" height[19]="15" -x[19]="1137" -y[19]="564" -label[19]='

      Min

      ' -show_on_top[19]=true +width[19]="100" +label[19]="<p><span style="font-size: 16px; color: #181818; line-height: 1em;">Min</span></p>" +image[19]="" +type[19]="4" +period[19]="3600" +id_agente_modulo[19]="0" +id_agent[19]="0" +id_layout_linked[19]="0" +parent_item[19]="0" +enable_link[19]="1" +id_metaconsole[19]="0" +id_group[19]="0" +id_custom_graph[19]="0" +border_width[19]="0" +type_graph[19]="area" +label_position[19]="down" +border_color[19]="" +fill_color[19]="" +recursive_group[19]="0" +show_statistics[19]="0" +linked_layout_node_id[19]="0" +linked_layout_status_type[19]="default" +id_layout_linked_weight[19]="0" +linked_layout_status_as_service_warning[19]="0" +linked_layout_status_as_service_critical[19]="0" +element_group[19]="0" +show_on_top[19]="1" +clock_animation[19]="analogic_1" +time_format[19]="time" +timezone[19]="Europe/Madrid" +show_last_value[19]="0" +cache_expiration[19]="0" +title[19]="" +period_chart_options[19]="" -type[20]="label" -label_position[20]="down" -width[20]="100" +id[20]="20" +id_layout[20]="1" +pos_x[20]="1137" +pos_y[20]="626" height[20]="15" -x[20]="1137" -y[20]="626" -label[20]='

      Max

      ' -show_on_top[20]=true +width[20]="100" +label[20]="<p><span style="font-size: 16px; color: #181818; line-height: 1em;">Max</span></p>" +image[20]="" +type[20]="4" +period[20]="3600" +id_agente_modulo[20]="0" +id_agent[20]="0" +id_layout_linked[20]="0" +parent_item[20]="0" +enable_link[20]="1" +id_metaconsole[20]="0" +id_group[20]="0" +id_custom_graph[20]="0" +border_width[20]="0" +type_graph[20]="area" +label_position[20]="down" +border_color[20]="" +fill_color[20]="" +recursive_group[20]="0" +show_statistics[20]="0" +linked_layout_node_id[20]="0" +linked_layout_status_type[20]="default" +id_layout_linked_weight[20]="0" +linked_layout_status_as_service_warning[20]="0" +linked_layout_status_as_service_critical[20]="0" +element_group[20]="0" +show_on_top[20]="1" +clock_animation[20]="analogic_1" +time_format[20]="time" +timezone[20]="Europe/Madrid" +show_last_value[20]="0" +cache_expiration[20]="0" +title[20]="" +period_chart_options[20]="" -type[21]="value" -label_position[21]="down" -width[21]="0" +id[21]="21" +id_layout[21]="1" +pos_x[21]="609" +pos_y[21]="50" height[21]="20" -x[21]="609" -y[21]="50" -label[21]='

      Avg. last 24 hours: (_value_)

      ' -show_on_top[21]=true -agent_name[21]="cisco-1" -module[21]="CPU Usage (5 min avg)" -process[21]="avg" -interval[21]="86400" +width[21]="0" +label[21]="<p style="text-align: right;"><span style="font-size: 16px; color: #181818; line-height: 1em;">Avg. last 24 hours: (_value_)</span></p>" +image[21]="" +type[21]="8" +period[21]="86400" +id_agente_modulo[21]="{\"tagente_modulo\":{\"nombre\":\"CPU Usage (5 min avg)\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[21]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[21]="0" +parent_item[21]="0" +enable_link[21]="1" +id_metaconsole[21]="0" +id_group[21]="0" +id_custom_graph[21]="0" +border_width[21]="0" +type_graph[21]="area" +label_position[21]="down" +border_color[21]="" +fill_color[21]="" +recursive_group[21]="0" +show_statistics[21]="0" +linked_layout_node_id[21]="0" +linked_layout_status_type[21]="default" +id_layout_linked_weight[21]="0" +linked_layout_status_as_service_warning[21]="0" +linked_layout_status_as_service_critical[21]="0" +element_group[21]="0" +show_on_top[21]="1" +clock_animation[21]="analogic_1" +time_format[21]="time" +timezone[21]="Europe/Madrid" +show_last_value[21]="0" +cache_expiration[21]="0" +title[21]="" +period_chart_options[21]="" -type[22]="value" -label_position[22]="down" -width[22]="0" +id[22]="22" +id_layout[22]="1" +pos_x[22]="135" +pos_y[22]="96" height[22]="20" -x[22]="135" -y[22]="96" -label[22]='

      (_value_)

      ' -show_on_top[22]=true -agent_name[22]="cisco-1" -module[22]="CPU Usage (5 min avg)" +width[22]="0" +label[22]="<p><span style="font-size: 50px; color: #181818; line-height: 1em;">(_value_) </span></p>" +image[22]="" +type[22]="2" +period[22]="3600" +id_agente_modulo[22]="{\"tagente_modulo\":{\"nombre\":\"CPU Usage (5 min avg)\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[22]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[22]="0" +parent_item[22]="0" +enable_link[22]="1" +id_metaconsole[22]="0" +id_group[22]="0" +id_custom_graph[22]="0" +border_width[22]="0" +type_graph[22]="area" +label_position[22]="down" +border_color[22]="" +fill_color[22]="" +recursive_group[22]="0" +show_statistics[22]="0" +linked_layout_node_id[22]="0" +linked_layout_status_type[22]="default" +id_layout_linked_weight[22]="0" +linked_layout_status_as_service_warning[22]="0" +linked_layout_status_as_service_critical[22]="0" +element_group[22]="0" +show_on_top[22]="1" +clock_animation[22]="analogic_1" +time_format[22]="time" +timezone[22]="Europe/Madrid" +show_last_value[22]="0" +cache_expiration[22]="0" +title[22]="" +period_chart_options[22]="" -type[23]="value" -label_position[23]="down" -width[23]="0" +id[23]="23" +id_layout[23]="1" +pos_x[23]="1364" +pos_y[23]="50" height[23]="20" -x[23]="1364" -y[23]="50" -label[23]='

      Avg. last 24 hours: (_value_)

      ' -show_on_top[23]=true -agent_name[23]="cisco-1" -module[23]="Latency" -process[23]="avg" -interval[23]="86400" +width[23]="0" +label[23]="<p style="text-align: right;"><span style="font-size: 16px; color: #181818; line-height: 1em;">Avg. last 24 hours: (_value_)</span></p>" +image[23]="" +type[23]="8" +period[23]="86400" +id_agente_modulo[23]="{\"tagente_modulo\":{\"nombre\":\"Latency\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[23]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[23]="0" +parent_item[23]="0" +enable_link[23]="1" +id_metaconsole[23]="0" +id_group[23]="0" +id_custom_graph[23]="0" +border_width[23]="0" +type_graph[23]="area" +label_position[23]="down" +border_color[23]="" +fill_color[23]="" +recursive_group[23]="0" +show_statistics[23]="0" +linked_layout_node_id[23]="0" +linked_layout_status_type[23]="default" +id_layout_linked_weight[23]="0" +linked_layout_status_as_service_warning[23]="0" +linked_layout_status_as_service_critical[23]="0" +element_group[23]="0" +show_on_top[23]="1" +clock_animation[23]="analogic_1" +time_format[23]="time" +timezone[23]="Europe/Madrid" +show_last_value[23]="0" +cache_expiration[23]="0" +title[23]="" +period_chart_options[23]="" -type[24]="value" -label_position[24]="down" -width[24]="0" +id[24]="24" +id_layout[24]="1" +pos_x[24]="895" +pos_y[24]="96" height[24]="20" -x[24]="895" -y[24]="96" -label[24]='

      (_value_)

      ' -show_on_top[24]=true -agent_name[24]="cisco-1" -module[24]="Latency" +width[24]="0" +label[24]="<p><span style="font-size: 50px; color: #181818; line-height: 1em;">(_value_)</span></p>" +image[24]="" +type[24]="2" +period[24]="3600" +id_agente_modulo[24]="{\"tagente_modulo\":{\"nombre\":\"Latency\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[24]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[24]="0" +parent_item[24]="0" +enable_link[24]="1" +id_metaconsole[24]="0" +id_group[24]="0" +id_custom_graph[24]="0" +border_width[24]="0" +type_graph[24]="area" +label_position[24]="down" +border_color[24]="" +fill_color[24]="" +recursive_group[24]="0" +show_statistics[24]="0" +linked_layout_node_id[24]="0" +linked_layout_status_type[24]="default" +id_layout_linked_weight[24]="0" +linked_layout_status_as_service_warning[24]="0" +linked_layout_status_as_service_critical[24]="0" +element_group[24]="0" +show_on_top[24]="1" +clock_animation[24]="analogic_1" +time_format[24]="time" +timezone[24]="Europe/Madrid" +show_last_value[24]="0" +cache_expiration[24]="0" +title[24]="" +period_chart_options[24]="" -type[25]="value" -label_position[25]="down" -width[25]="0" +id[25]="25" +id_layout[25]="1" +pos_x[25]="135" +pos_y[25]="472" height[25]="20" -x[25]="135" -y[25]="472" -label[25]='

      Avg. last 24 hours (_value_)

      ' -show_on_top[25]=true -agent_name[25]="cisco-1" -module[25]="Gi0/0_ifInOctets" -process[25]="avg" -interval[25]="86400" +width[25]="0" +label[25]="<p style="text-align: right;"><span style="font-size: 16px; color: #cccccc; line-height: 1em;">Avg. last 24 hours (_value_)</span></p>" +image[25]="" +type[25]="8" +period[25]="86400" +id_agente_modulo[25]="{\"tagente_modulo\":{\"nombre\":\"Gi0\/0_ifInOctets\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[25]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[25]="0" +parent_item[25]="0" +enable_link[25]="1" +id_metaconsole[25]="0" +id_group[25]="0" +id_custom_graph[25]="0" +border_width[25]="0" +type_graph[25]="area" +label_position[25]="down" +border_color[25]="" +fill_color[25]="" +recursive_group[25]="0" +show_statistics[25]="0" +linked_layout_node_id[25]="0" +linked_layout_status_type[25]="default" +id_layout_linked_weight[25]="0" +linked_layout_status_as_service_warning[25]="0" +linked_layout_status_as_service_critical[25]="0" +element_group[25]="0" +show_on_top[25]="1" +clock_animation[25]="analogic_1" +time_format[25]="time" +timezone[25]="Europe/Madrid" +show_last_value[25]="0" +cache_expiration[25]="0" +title[25]="" +period_chart_options[25]="" -type[26]="value" -label_position[26]="down" -width[26]="0" +id[26]="26" +id_layout[26]="1" +pos_x[26]="135" +pos_y[26]="417" height[26]="20" -x[26]="135" -y[26]="417" -label[26]='

      (_value_)

      ' -show_on_top[26]=true -agent_name[26]="cisco-1" -module[26]="Gi0/0_ifInOctets" +width[26]="0" +label[26]="<p><span style="font-size: 32px; color: #ffffff; line-height: 1em;">(_value_) </span></p>" +image[26]="" +type[26]="2" +period[26]="3600" +id_agente_modulo[26]="{\"tagente_modulo\":{\"nombre\":\"Gi0\/0_ifInOctets\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[26]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[26]="0" +parent_item[26]="0" +enable_link[26]="1" +id_metaconsole[26]="0" +id_group[26]="0" +id_custom_graph[26]="0" +border_width[26]="0" +type_graph[26]="area" +label_position[26]="down" +border_color[26]="" +fill_color[26]="" +recursive_group[26]="0" +show_statistics[26]="0" +linked_layout_node_id[26]="0" +linked_layout_status_type[26]="default" +id_layout_linked_weight[26]="0" +linked_layout_status_as_service_warning[26]="0" +linked_layout_status_as_service_critical[26]="0" +element_group[26]="0" +show_on_top[26]="1" +clock_animation[26]="analogic_1" +time_format[26]="time" +timezone[26]="Europe/Madrid" +show_last_value[26]="0" +cache_expiration[26]="0" +title[26]="" +period_chart_options[26]="" -type[27]="value" -label_position[27]="down" -width[27]="0" +id[27]="27" +id_layout[27]="1" +pos_x[27]="438" +pos_y[27]="472" height[27]="20" -x[27]="438" -y[27]="472" -label[27]='

      Avg. last 24 hours (_value_)

      ' -show_on_top[27]=true -agent_name[27]="cisco-1" -module[27]="Gi0/1_ifInOctets" -process[27]="avg" -interval[27]="86400" +width[27]="0" +label[27]="<p style="text-align: right;"><span style="font-size: 16px; color: #cccccc; line-height: 1em;">Avg. last 24 hours (_value_)</span></p>" +image[27]="" +type[27]="8" +period[27]="86400" +id_agente_modulo[27]="{\"tagente_modulo\":{\"nombre\":\"Gi0\/1_ifInOctets\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[27]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[27]="0" +parent_item[27]="0" +enable_link[27]="1" +id_metaconsole[27]="0" +id_group[27]="0" +id_custom_graph[27]="0" +border_width[27]="0" +type_graph[27]="area" +label_position[27]="down" +border_color[27]="" +fill_color[27]="" +recursive_group[27]="0" +show_statistics[27]="0" +linked_layout_node_id[27]="0" +linked_layout_status_type[27]="default" +id_layout_linked_weight[27]="0" +linked_layout_status_as_service_warning[27]="0" +linked_layout_status_as_service_critical[27]="0" +element_group[27]="0" +show_on_top[27]="1" +clock_animation[27]="analogic_1" +time_format[27]="time" +timezone[27]="Europe/Madrid" +show_last_value[27]="0" +cache_expiration[27]="0" +title[27]="" +period_chart_options[27]="" -type[28]="value" -label_position[28]="down" -width[28]="0" +id[28]="28" +id_layout[28]="1" +pos_x[28]="438" +pos_y[28]="417" height[28]="20" -x[28]="438" -y[28]="417" -label[28]='

      (_value_)

      ' -show_on_top[28]=true -agent_name[28]="cisco-1" -module[28]="Gi0/1_ifInOctets" +width[28]="0" +label[28]="<p><span style="font-size: 32px; color: #ffffff; line-height: 1em;">(_value_) </span></p>" +image[28]="" +type[28]="2" +period[28]="3600" +id_agente_modulo[28]="{\"tagente_modulo\":{\"nombre\":\"Gi0\/1_ifInOctets\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[28]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[28]="0" +parent_item[28]="0" +enable_link[28]="1" +id_metaconsole[28]="0" +id_group[28]="0" +id_custom_graph[28]="0" +border_width[28]="0" +type_graph[28]="area" +label_position[28]="down" +border_color[28]="" +fill_color[28]="" +recursive_group[28]="0" +show_statistics[28]="0" +linked_layout_node_id[28]="0" +linked_layout_status_type[28]="default" +id_layout_linked_weight[28]="0" +linked_layout_status_as_service_warning[28]="0" +linked_layout_status_as_service_critical[28]="0" +element_group[28]="0" +show_on_top[28]="1" +clock_animation[28]="analogic_1" +time_format[28]="time" +timezone[28]="Europe/Madrid" +show_last_value[28]="0" +cache_expiration[28]="0" +title[28]="" +period_chart_options[28]="" -type[29]="value" -label_position[29]="down" -width[29]="0" +id[29]="29" +id_layout[29]="1" +pos_x[29]="743" +pos_y[29]="472" height[29]="20" -x[29]="743" -y[29]="472" -label[29]='

      Avg. last 24 hours (_value_)

      ' -show_on_top[29]=true -agent_name[29]="cisco-1" -module[29]="Gi0/2_ifInOctets" -process[29]="avg" -interval[29]="86400" +width[29]="0" +label[29]="<p style="text-align: right;"><span style="font-size: 16px; color: #cccccc; line-height: 1em;">Avg. last 24 hours (_value_)</span></p>" +image[29]="" +type[29]="8" +period[29]="86400" +id_agente_modulo[29]="{\"tagente_modulo\":{\"nombre\":\"Gi0\/2_ifInOctets\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[29]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[29]="0" +parent_item[29]="0" +enable_link[29]="1" +id_metaconsole[29]="0" +id_group[29]="0" +id_custom_graph[29]="0" +border_width[29]="0" +type_graph[29]="area" +label_position[29]="down" +border_color[29]="" +fill_color[29]="" +recursive_group[29]="0" +show_statistics[29]="0" +linked_layout_node_id[29]="0" +linked_layout_status_type[29]="default" +id_layout_linked_weight[29]="0" +linked_layout_status_as_service_warning[29]="0" +linked_layout_status_as_service_critical[29]="0" +element_group[29]="0" +show_on_top[29]="1" +clock_animation[29]="analogic_1" +time_format[29]="time" +timezone[29]="Europe/Madrid" +show_last_value[29]="0" +cache_expiration[29]="0" +title[29]="" +period_chart_options[29]="" -type[30]="value" -label_position[30]="down" -width[30]="0" +id[30]="30" +id_layout[30]="1" +pos_x[30]="743" +pos_y[30]="417" height[30]="20" -x[30]="743" -y[30]="417" -label[30]='

      (_value_)

      ' -show_on_top[30]=true -agent_name[30]="cisco-1" -module[30]="Gi0/2_ifInOctets" +width[30]="0" +label[30]="<p><span style="font-size: 32px; color: #ffffff; line-height: 1em;">(_value_) </span></p>" +image[30]="" +type[30]="2" +period[30]="3600" +id_agente_modulo[30]="{\"tagente_modulo\":{\"nombre\":\"Gi0\/2_ifInOctets\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[30]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[30]="0" +parent_item[30]="0" +enable_link[30]="1" +id_metaconsole[30]="0" +id_group[30]="0" +id_custom_graph[30]="0" +border_width[30]="0" +type_graph[30]="area" +label_position[30]="down" +border_color[30]="" +fill_color[30]="" +recursive_group[30]="0" +show_statistics[30]="0" +linked_layout_node_id[30]="0" +linked_layout_status_type[30]="default" +id_layout_linked_weight[30]="0" +linked_layout_status_as_service_warning[30]="0" +linked_layout_status_as_service_critical[30]="0" +element_group[30]="0" +show_on_top[30]="1" +clock_animation[30]="analogic_1" +time_format[30]="time" +timezone[30]="Europe/Madrid" +show_last_value[30]="0" +cache_expiration[30]="0" +title[30]="" +period_chart_options[30]="" -type[31]="value" -label_position[31]="down" -width[31]="0" +id[31]="31" +id_layout[31]="1" +pos_x[31]="1048" +pos_y[31]="472" height[31]="20" -x[31]="1048" -y[31]="472" -label[31]='

      Avg. last 24 hours (_value_)

      ' -show_on_top[31]=true -agent_name[31]="cisco-1" -module[31]="Gi0/3_ifInOctets" -process[31]="avg" -interval[31]="86400" +width[31]="0" +label[31]="<p style="text-align: right;"><span style="font-size: 16px; color: #cccccc; line-height: 1em;">Avg. last 24 hours (_value_)</span></p>" +image[31]="" +type[31]="8" +period[31]="86400" +id_agente_modulo[31]="{\"tagente_modulo\":{\"nombre\":\"Gi0\/3_ifInOctets\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[31]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[31]="0" +parent_item[31]="0" +enable_link[31]="1" +id_metaconsole[31]="0" +id_group[31]="0" +id_custom_graph[31]="0" +border_width[31]="0" +type_graph[31]="area" +label_position[31]="down" +border_color[31]="" +fill_color[31]="" +recursive_group[31]="0" +show_statistics[31]="0" +linked_layout_node_id[31]="0" +linked_layout_status_type[31]="default" +id_layout_linked_weight[31]="0" +linked_layout_status_as_service_warning[31]="0" +linked_layout_status_as_service_critical[31]="0" +element_group[31]="0" +show_on_top[31]="1" +clock_animation[31]="analogic_1" +time_format[31]="time" +timezone[31]="Europe/Madrid" +show_last_value[31]="0" +cache_expiration[31]="0" +title[31]="" +period_chart_options[31]="" -type[32]="value" -label_position[32]="down" -width[32]="0" +id[32]="32" +id_layout[32]="1" +pos_x[32]="1048" +pos_y[32]="417" height[32]="20" -x[32]="1048" -y[32]="417" -label[32]='

      (_value_)

      ' -show_on_top[32]=true -agent_name[32]="cisco-1" -module[32]="Gi0/3_ifInOctets" +width[32]="0" +label[32]="<p><span style="font-size: 32px; color: #ffffff; line-height: 1em;">(_value_) </span></p>" +image[32]="" +type[32]="2" +period[32]="3600" +id_agente_modulo[32]="{\"tagente_modulo\":{\"nombre\":\"Gi0\/3_ifInOctets\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[32]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[32]="0" +parent_item[32]="0" +enable_link[32]="1" +id_metaconsole[32]="0" +id_group[32]="0" +id_custom_graph[32]="0" +border_width[32]="0" +type_graph[32]="area" +label_position[32]="down" +border_color[32]="" +fill_color[32]="" +recursive_group[32]="0" +show_statistics[32]="0" +linked_layout_node_id[32]="0" +linked_layout_status_type[32]="default" +id_layout_linked_weight[32]="0" +linked_layout_status_as_service_warning[32]="0" +linked_layout_status_as_service_critical[32]="0" +element_group[32]="0" +show_on_top[32]="1" +clock_animation[32]="analogic_1" +time_format[32]="time" +timezone[32]="Europe/Madrid" +show_last_value[32]="0" +cache_expiration[32]="0" +title[32]="" +period_chart_options[32]="" -type[33]="value" -label_position[33]="down" -width[33]="0" +id[33]="33" +id_layout[33]="1" +pos_x[33]="1349" +pos_y[33]="472" height[33]="20" -x[33]="1349" -y[33]="472" -label[33]='

      Avg. last 24 hours (_value_)

      ' -show_on_top[33]=true -agent_name[33]="cisco-1" -module[33]="Gi0/4_ifInOctets" -process[33]="avg" -interval[33]="86400" +width[33]="0" +label[33]="<p style="text-align: right;"><span style="font-size: 16px; color: #cccccc; line-height: 1em;">Avg. last 24 hours (_value_)</span></p>" +image[33]="" +type[33]="8" +period[33]="86400" +id_agente_modulo[33]="{\"tagente_modulo\":{\"nombre\":\"Gi0\/4_ifInOctets\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[33]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[33]="0" +parent_item[33]="0" +enable_link[33]="1" +id_metaconsole[33]="0" +id_group[33]="0" +id_custom_graph[33]="0" +border_width[33]="0" +type_graph[33]="area" +label_position[33]="down" +border_color[33]="" +fill_color[33]="" +recursive_group[33]="0" +show_statistics[33]="0" +linked_layout_node_id[33]="0" +linked_layout_status_type[33]="default" +id_layout_linked_weight[33]="0" +linked_layout_status_as_service_warning[33]="0" +linked_layout_status_as_service_critical[33]="0" +element_group[33]="0" +show_on_top[33]="1" +clock_animation[33]="analogic_1" +time_format[33]="time" +timezone[33]="Europe/Madrid" +show_last_value[33]="0" +cache_expiration[33]="0" +title[33]="" +period_chart_options[33]="" -type[34]="value" -label_position[34]="down" -width[34]="0" +id[34]="34" +id_layout[34]="1" +pos_x[34]="1349" +pos_y[34]="417" height[34]="20" -x[34]="1349" -y[34]="417" -label[34]='

      (_value_)

      ' -show_on_top[34]=true -agent_name[34]="cisco-1" -module[34]="Gi0/4_ifInOctets" +width[34]="0" +label[34]="<p><span style="font-size: 32px; color: #ffffff; line-height: 1em;">(_value_) </span></p>" +image[34]="" +type[34]="2" +period[34]="3600" +id_agente_modulo[34]="{\"tagente_modulo\":{\"nombre\":\"Gi0\/4_ifInOctets\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[34]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[34]="0" +parent_item[34]="0" +enable_link[34]="1" +id_metaconsole[34]="0" +id_group[34]="0" +id_custom_graph[34]="0" +border_width[34]="0" +type_graph[34]="area" +label_position[34]="down" +border_color[34]="" +fill_color[34]="" +recursive_group[34]="0" +show_statistics[34]="0" +linked_layout_node_id[34]="0" +linked_layout_status_type[34]="default" +id_layout_linked_weight[34]="0" +linked_layout_status_as_service_warning[34]="0" +linked_layout_status_as_service_critical[34]="0" +element_group[34]="0" +show_on_top[34]="1" +clock_animation[34]="analogic_1" +time_format[34]="time" +timezone[34]="Europe/Madrid" +show_last_value[34]="0" +cache_expiration[34]="0" +title[34]="" +period_chart_options[34]="" -type[35]="value" -label_position[35]="down" -width[35]="0" +id[35]="35" +id_layout[35]="1" +pos_x[35]="124" +pos_y[35]="602" height[35]="20" -x[35]="124" -y[35]="602" -label[35]='

      (_value_)

      ' -show_on_top[35]=true -agent_name[35]="cisco-1" -module[35]=ipInReceives -process[35]="min" -interval[35]="86400" +width[35]="0" +label[35]="<p><span style="font-size: 50px; color: #181818; line-height: 1em;">(_value_)</span></p>" +image[35]="" +type[35]="7" +period[35]="86400" +id_agente_modulo[35]="{\"tagente_modulo\":{\"nombre\":\"ipInReceives\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[35]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[35]="0" +parent_item[35]="0" +enable_link[35]="1" +id_metaconsole[35]="0" +id_group[35]="0" +id_custom_graph[35]="0" +border_width[35]="0" +type_graph[35]="area" +label_position[35]="down" +border_color[35]="" +fill_color[35]="" +recursive_group[35]="0" +show_statistics[35]="0" +linked_layout_node_id[35]="0" +linked_layout_status_type[35]="default" +id_layout_linked_weight[35]="0" +linked_layout_status_as_service_warning[35]="0" +linked_layout_status_as_service_critical[35]="0" +element_group[35]="0" +show_on_top[35]="1" +clock_animation[35]="analogic_1" +time_format[35]="time" +timezone[35]="Europe/Madrid" +show_last_value[35]="0" +cache_expiration[35]="0" +title[35]="" +period_chart_options[35]="" -type[36]="value" -label_position[36]="down" -width[36]="0" +id[36]="36" +id_layout[36]="1" +pos_x[36]="124" +pos_y[36]="669" height[36]="20" -x[36]="124" -y[36]="669" -label[36]='

      (_value_)

      ' -show_on_top[36]=true -agent_name[36]="cisco-1" -module[36]=ipInReceives -process[36]="max" -interval[36]="86400" +width[36]="0" +label[36]="<p><span style="font-size: 50px; color: #181818; line-height: 1em;">(_value_)</span></p>" +image[36]="" +type[36]="6" +period[36]="86400" +id_agente_modulo[36]="{\"tagente_modulo\":{\"nombre\":\"ipInReceives\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[36]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[36]="0" +parent_item[36]="0" +enable_link[36]="1" +id_metaconsole[36]="0" +id_group[36]="0" +id_custom_graph[36]="0" +border_width[36]="0" +type_graph[36]="area" +label_position[36]="down" +border_color[36]="" +fill_color[36]="" +recursive_group[36]="0" +show_statistics[36]="0" +linked_layout_node_id[36]="0" +linked_layout_status_type[36]="default" +id_layout_linked_weight[36]="0" +linked_layout_status_as_service_warning[36]="0" +linked_layout_status_as_service_critical[36]="0" +element_group[36]="0" +show_on_top[36]="1" +clock_animation[36]="analogic_1" +time_format[36]="time" +timezone[36]="Europe/Madrid" +show_last_value[36]="0" +cache_expiration[36]="0" +title[36]="" +period_chart_options[36]="" -type[37]="value" -label_position[37]="down" -width[37]="0" +id[37]="37" +id_layout[37]="1" +pos_x[37]="1138" +pos_y[37]="591" height[37]="20" -x[37]="1138" -y[37]="591" -label[37]='

      (_value_)

      ' -show_on_top[37]=true -agent_name[37]="cisco-1" -module[37]=ipOutRequests -process[37]="min" -interval[37]="86400" +width[37]="0" +label[37]="<p><span style="font-size: 50px; color: #181818; line-height: 1em;">(_value_)</span></p>" +image[37]="" +type[37]="7" +period[37]="86400" +id_agente_modulo[37]="{\"tagente_modulo\":{\"nombre\":\"ipOutRequests\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[37]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[37]="0" +parent_item[37]="0" +enable_link[37]="1" +id_metaconsole[37]="0" +id_group[37]="0" +id_custom_graph[37]="0" +border_width[37]="0" +type_graph[37]="area" +label_position[37]="down" +border_color[37]="" +fill_color[37]="" +recursive_group[37]="0" +show_statistics[37]="0" +linked_layout_node_id[37]="0" +linked_layout_status_type[37]="default" +id_layout_linked_weight[37]="0" +linked_layout_status_as_service_warning[37]="0" +linked_layout_status_as_service_critical[37]="0" +element_group[37]="0" +show_on_top[37]="1" +clock_animation[37]="analogic_1" +time_format[37]="time" +timezone[37]="Europe/Madrid" +show_last_value[37]="0" +cache_expiration[37]="0" +title[37]="" +period_chart_options[37]="" -type[38]="value" -label_position[38]="down" -width[38]="0" +id[38]="38" +id_layout[38]="1" +pos_x[38]="1138" +pos_y[38]="658" height[38]="20" -x[38]="1138" -y[38]="658" -label[38]='

      (_value_)

      ' -show_on_top[38]=true -agent_name[38]="cisco-1" -module[38]=ipOutRequests -process[38]="max" -interval[38]="86400" +width[38]="0" +label[38]="<p><span style="font-size: 50px; color: #181818; line-height: 1em;">(_value_)</span></p>" +image[38]="" +type[38]="6" +period[38]="86400" +id_agente_modulo[38]="{\"tagente_modulo\":{\"nombre\":\"ipOutRequests\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[38]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[38]="0" +parent_item[38]="0" +enable_link[38]="1" +id_metaconsole[38]="0" +id_group[38]="0" +id_custom_graph[38]="0" +border_width[38]="0" +type_graph[38]="area" +label_position[38]="down" +border_color[38]="" +fill_color[38]="" +recursive_group[38]="0" +show_statistics[38]="0" +linked_layout_node_id[38]="0" +linked_layout_status_type[38]="default" +id_layout_linked_weight[38]="0" +linked_layout_status_as_service_warning[38]="0" +linked_layout_status_as_service_critical[38]="0" +element_group[38]="0" +show_on_top[38]="1" +clock_animation[38]="analogic_1" +time_format[38]="time" +timezone[38]="Europe/Madrid" +show_last_value[38]="0" +cache_expiration[38]="0" +title[38]="" +period_chart_options[38]="" -type[39]="static_image" -image[39]="dot" -width[39]="30" +id[39]="39" +id_layout[39]="1" +pos_x[39]="701" +pos_y[39]="595" height[39]="36" -x[39]="701" -y[39]="595" -label[39]='

      _module_

      ' +width[39]="30" +label[39]="<p><span style="color: rgb(255, 255, 255);"><strong><span style="font-size: 18pt;">_module_</span></strong></span></p>" +image[39]="dot" +type[39]="0" +period[39]="3600" +id_agente_modulo[39]="{\"tagente_modulo\":{\"nombre\":\"Gi0\/0_ifOperStatus\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[39]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[39]="0" +parent_item[39]="0" +enable_link[39]="1" +id_metaconsole[39]="0" +id_group[39]="0" +id_custom_graph[39]="0" +border_width[39]="0" +type_graph[39]="area" label_position[39]="right" -agent_name[39]="cisco-1" -module[39]="Gi0/0_ifOperStatus" +border_color[39]="" +fill_color[39]="" +recursive_group[39]="0" +show_statistics[39]="0" +linked_layout_node_id[39]="0" +linked_layout_status_type[39]="default" +id_layout_linked_weight[39]="0" +linked_layout_status_as_service_warning[39]="0" +linked_layout_status_as_service_critical[39]="0" +element_group[39]="0" +show_on_top[39]="0" +clock_animation[39]="analogic_1" +time_format[39]="time" +timezone[39]="Europe/Madrid" +show_last_value[39]="0" +cache_expiration[39]="0" +title[39]="" +period_chart_options[39]="" -type[40]="static_image" -image[40]="dot" -width[40]="30" +id[40]="40" +id_layout[40]="1" +pos_x[40]="701" +pos_y[40]="655" height[40]="36" -x[40]="701" -y[40]="655" -label[40]='

      _module_

      ' +width[40]="30" +label[40]="<p><span style="color: rgb(255, 255, 255);"><strong><span style="font-size: 18pt;">_module_</span></strong></span></p>" +image[40]="dot" +type[40]="0" +period[40]="3600" +id_agente_modulo[40]="{\"tagente_modulo\":{\"nombre\":\"Gi0\/1_ifOperStatus\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[40]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[40]="0" +parent_item[40]="0" +enable_link[40]="1" +id_metaconsole[40]="0" +id_group[40]="0" +id_custom_graph[40]="0" +border_width[40]="0" +type_graph[40]="area" label_position[40]="right" -agent_name[40]="cisco-1" -module[40]="Gi0/1_ifOperStatus" +border_color[40]="" +fill_color[40]="" +recursive_group[40]="0" +show_statistics[40]="0" +linked_layout_node_id[40]="0" +linked_layout_status_type[40]="default" +id_layout_linked_weight[40]="0" +linked_layout_status_as_service_warning[40]="0" +linked_layout_status_as_service_critical[40]="0" +element_group[40]="0" +show_on_top[40]="0" +clock_animation[40]="analogic_1" +time_format[40]="time" +timezone[40]="Europe/Madrid" +show_last_value[40]="0" +cache_expiration[40]="0" +title[40]="" +period_chart_options[40]="" -type[41]="static_image" -image[41]="dot" -width[41]="30" +id[41]="41" +id_layout[41]="1" +pos_x[41]="701" +pos_y[41]="713" height[41]="36" -x[41]="701" -y[41]="713" -label[41]='

      _module_

      ' +width[41]="30" +label[41]="<p><span style="color: rgb(255, 255, 255);"><strong><span style="font-size: 18pt;">_module_</span></strong></span></p>" +image[41]="dot" +type[41]="0" +period[41]="3600" +id_agente_modulo[41]="{\"tagente_modulo\":{\"nombre\":\"Gi0\/2_ifOperStatus\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[41]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[41]="0" +parent_item[41]="0" +enable_link[41]="1" +id_metaconsole[41]="0" +id_group[41]="0" +id_custom_graph[41]="0" +border_width[41]="0" +type_graph[41]="area" label_position[41]="right" -agent_name[41]="cisco-1" -module[41]="Gi0/2_ifOperStatus" +border_color[41]="" +fill_color[41]="" +recursive_group[41]="0" +show_statistics[41]="0" +linked_layout_node_id[41]="0" +linked_layout_status_type[41]="default" +id_layout_linked_weight[41]="0" +linked_layout_status_as_service_warning[41]="0" +linked_layout_status_as_service_critical[41]="0" +element_group[41]="0" +show_on_top[41]="0" +clock_animation[41]="analogic_1" +time_format[41]="time" +timezone[41]="Europe/Madrid" +show_last_value[41]="0" +cache_expiration[41]="0" +title[41]="" +period_chart_options[41]="" -type[42]="static_image" -image[42]="dot" -width[42]="30" +id[42]="42" +id_layout[42]="1" +pos_x[42]="701" +pos_y[42]="771" height[42]="36" -x[42]="701" -y[42]="771" -label[42]='

      _module_

      ' +width[42]="30" +label[42]="<p><span style="color: rgb(255, 255, 255);"><strong><span style="font-size: 18pt;">_module_</span></strong></span></p>" +image[42]="dot" +type[42]="0" +period[42]="3600" +id_agente_modulo[42]="{\"tagente_modulo\":{\"nombre\":\"Gi0\/3_ifOperStatus\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[42]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[42]="0" +parent_item[42]="0" +enable_link[42]="1" +id_metaconsole[42]="0" +id_group[42]="0" +id_custom_graph[42]="0" +border_width[42]="0" +type_graph[42]="area" label_position[42]="right" -agent_name[42]="cisco-1" -module[42]="Gi0/3_ifOperStatus" +border_color[42]="" +fill_color[42]="" +recursive_group[42]="0" +show_statistics[42]="0" +linked_layout_node_id[42]="0" +linked_layout_status_type[42]="default" +id_layout_linked_weight[42]="0" +linked_layout_status_as_service_warning[42]="0" +linked_layout_status_as_service_critical[42]="0" +element_group[42]="0" +show_on_top[42]="0" +clock_animation[42]="analogic_1" +time_format[42]="time" +timezone[42]="Europe/Madrid" +show_last_value[42]="0" +cache_expiration[42]="0" +title[42]="" +period_chart_options[42]="" -type[43]="static_image" -image[43]="dot" -width[43]="30" +id[43]="43" +id_layout[43]="1" +pos_x[43]="701" +pos_y[43]="828" height[43]="36" -x[43]="701" -y[43]="828" -label[43]='

      _module_

      ' +width[43]="30" +label[43]="<p><span style="color: rgb(255, 255, 255);"><strong><span style="font-size: 18pt;">_module_</span></strong></span></p>" +image[43]="dot" +type[43]="0" +period[43]="3600" +id_agente_modulo[43]="{\"tagente_modulo\":{\"nombre\":\"Gi0\/4_ifOperStatus\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[43]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[43]="0" +parent_item[43]="0" +enable_link[43]="1" +id_metaconsole[43]="0" +id_group[43]="0" +id_custom_graph[43]="0" +border_width[43]="0" +type_graph[43]="area" label_position[43]="right" -agent_name[43]="cisco-1" -module[43]="Gi0/4_ifOperStatus" +border_color[43]="" +fill_color[43]="" +recursive_group[43]="0" +show_statistics[43]="0" +linked_layout_node_id[43]="0" +linked_layout_status_type[43]="default" +id_layout_linked_weight[43]="0" +linked_layout_status_as_service_warning[43]="0" +linked_layout_status_as_service_critical[43]="0" +element_group[43]="0" +show_on_top[43]="0" +clock_animation[43]="analogic_1" +time_format[43]="time" +timezone[43]="Europe/Madrid" +show_last_value[43]="0" +cache_expiration[43]="0" +title[43]="" +period_chart_options[43]="" -type[44]="module_graph" -width[44]="652" +id[44]="44" +id_layout[44]="1" +pos_x[44]="135" +pos_y[44]="166" height[44]="110" -x[44]="135" -y[44]="166" -agent_name[44]="cisco-1" -module[44]="CPU Usage (5 min avg)" +width[44]="652" +label[44]="" image[44]="transparent" -graph_type[44]="area" -interval[44]="86400" -show_on_top[44]=true +type[44]="1" +period[44]="86400" +id_agente_modulo[44]="{\"tagente_modulo\":{\"nombre\":\"CPU Usage (5 min avg)\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[44]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[44]="0" +parent_item[44]="0" +enable_link[44]="1" +id_metaconsole[44]="0" +id_group[44]="0" +id_custom_graph[44]="0" +border_width[44]="0" +type_graph[44]="area" +label_position[44]="down" +border_color[44]="" +fill_color[44]="" +recursive_group[44]="0" +show_statistics[44]="0" +linked_layout_node_id[44]="0" +linked_layout_status_type[44]="default" +id_layout_linked_weight[44]="0" +linked_layout_status_as_service_warning[44]="0" +linked_layout_status_as_service_critical[44]="0" +element_group[44]="0" +show_on_top[44]="1" +clock_animation[44]="analogic_1" +time_format[44]="time" +timezone[44]="Europe/Madrid" +show_last_value[44]="0" +cache_expiration[44]="0" +title[44]="" +period_chart_options[44]="" -type[45]="module_graph" -width[45]="295" +id[45]="45" +id_layout[45]="1" +pos_x[45]="895" +pos_y[45]="189" height[45]="87" -x[45]="895" -y[45]="189" -agent_name[45]="cisco-1" -module[45]="Host Alive" +width[45]="295" +label[45]="" image[45]="transparent" -graph_type[45]="area" -interval[45]="86400" -show_on_top[45]=true +type[45]="1" +period[45]="86400" +id_agente_modulo[45]="{\"tagente_modulo\":{\"nombre\":\"Host alive\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[45]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[45]="0" +parent_item[45]="0" +enable_link[45]="1" +id_metaconsole[45]="0" +id_group[45]="0" +id_custom_graph[45]="0" +border_width[45]="0" +type_graph[45]="area" +label_position[45]="down" +border_color[45]="" +fill_color[45]="" +recursive_group[45]="0" +show_statistics[45]="0" +linked_layout_node_id[45]="0" +linked_layout_status_type[45]="default" +id_layout_linked_weight[45]="0" +linked_layout_status_as_service_warning[45]="0" +linked_layout_status_as_service_critical[45]="0" +element_group[45]="0" +show_on_top[45]="1" +clock_animation[45]="analogic_1" +time_format[45]="time" +timezone[45]="Europe/Madrid" +show_last_value[45]="0" +cache_expiration[45]="0" +title[45]="" +period_chart_options[45]="" -type[46]="module_graph" -width[46]="295" +id[46]="46" +id_layout[46]="1" +pos_x[46]="1252" +pos_y[46]="189" height[46]="87" -x[46]="1252" -y[46]="189" -agent_name[46]="cisco-1" -module[46]="Latency" +width[46]="295" +label[46]="" image[46]="transparent" -graph_type[46]="area" -interval[46]="86400" -show_on_top[46]=true +type[46]="1" +period[46]="86400" +id_agente_modulo[46]="{\"tagente_modulo\":{\"nombre\":\"Latency\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[46]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[46]="0" +parent_item[46]="0" +enable_link[46]="1" +id_metaconsole[46]="0" +id_group[46]="0" +id_custom_graph[46]="0" +border_width[46]="0" +type_graph[46]="area" +label_position[46]="down" +border_color[46]="" +fill_color[46]="" +recursive_group[46]="0" +show_statistics[46]="0" +linked_layout_node_id[46]="0" +linked_layout_status_type[46]="default" +id_layout_linked_weight[46]="0" +linked_layout_status_as_service_warning[46]="0" +linked_layout_status_as_service_critical[46]="0" +element_group[46]="0" +show_on_top[46]="1" +clock_animation[46]="analogic_1" +time_format[46]="time" +timezone[46]="Europe/Madrid" +show_last_value[46]="0" +cache_expiration[46]="0" +title[46]="" +period_chart_options[46]="" -type[47]="odometer" -width[47]="412" +id[47]="47" +id_layout[47]="1" +pos_x[47]="123" +pos_y[47]="719" height[47]="11" -x[47]="123" -y[47]="719" -agent_name[47]="cisco-1" -module[47]="ipInReceives" -show_on_top[47]=true +width[47]="412" +label[47]="" +image[47]="" +type[47]="22" +period[47]="3600" +id_agente_modulo[47]="{\"tagente_modulo\":{\"nombre\":\"ipInReceives\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[47]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[47]="0" +parent_item[47]="0" +enable_link[47]="1" +id_metaconsole[47]="0" +id_group[47]="0" +id_custom_graph[47]="0" +border_width[47]="0" +type_graph[47]="area" +label_position[47]="down" +border_color[47]="" +fill_color[47]="" +recursive_group[47]="0" +show_statistics[47]="0" +linked_layout_node_id[47]="0" +linked_layout_status_type[47]="default" +id_layout_linked_weight[47]="0" +linked_layout_status_as_service_warning[47]="0" +linked_layout_status_as_service_critical[47]="0" +element_group[47]="0" +show_on_top[47]="1" +clock_animation[47]="analogic_1" +time_format[47]="time" +timezone[47]="Europe/Madrid" +show_last_value[47]="0" +cache_expiration[47]="0" +title[47]="" +period_chart_options[47]="" -type[48]="odometer" -width[48]="412" +id[48]="48" +id_layout[48]="1" +pos_x[48]="1142" +pos_y[48]="710" height[48]="11" -x[48]="1142" -y[48]="710" -agent_name[48]="cisco-1" -module[48]="ipOutRequests" -show_on_top[48]=true \ No newline at end of file +width[48]="412" +label[48]="" +image[48]="" +type[48]="22" +period[48]="3600" +id_agente_modulo[48]="{\"tagente_modulo\":{\"nombre\":\"ipOutRequests\",\"id_agente\":{\"tagente\":{\"nombre\":\"cisco-1\"}}}}" +id_agent[48]="{\"tagente\":{\"nombre\":\"cisco-1\"}}" +id_layout_linked[48]="0" +parent_item[48]="0" +enable_link[48]="1" +id_metaconsole[48]="0" +id_group[48]="0" +id_custom_graph[48]="0" +border_width[48]="0" +type_graph[48]="area" +label_position[48]="down" +border_color[48]="" +fill_color[48]="" +recursive_group[48]="0" +show_statistics[48]="0" +linked_layout_node_id[48]="0" +linked_layout_status_type[48]="default" +id_layout_linked_weight[48]="0" +linked_layout_status_as_service_warning[48]="0" +linked_layout_status_as_service_critical[48]="0" +element_group[48]="0" +show_on_top[48]="1" +clock_animation[48]="analogic_1" +time_format[48]="time" +timezone[48]="Europe/Madrid" +show_last_value[48]="0" +cache_expiration[48]="0" +title[48]="" +period_chart_options[48]="" + diff --git a/pandora_console/extras/demodata/visual_consoles/2-linux-visual-console.prd b/pandora_console/extras/demodata/visual_consoles/2-linux-visual-console.prd index 975dfe7944..19bdd14966 100644 --- a/pandora_console/extras/demodata/visual_consoles/2-linux-visual-console.prd +++ b/pandora_console/extras/demodata/visual_consoles/2-linux-visual-console.prd @@ -1,295 +1,1182 @@ -[visual_console_data] +[prd_data] +type="visual_console" name="Linux visual console" -group="Demo servers" -background_color="#f2f3f3" -width="1680" -height="945" -[visual_console_items] +[tlayout] -type[1]="box" -width[1]="1205" -height[1]="560" -x[1]="30" -y[1]="30" -border_color[1]="#ffffff" -fill_color[1]="#ffffff" +id[2]="2" +name[2]="Linux visual console" +id_group[2]="{\"tgrupo\":{\"nombre\":\"Demo servers\"}}" +background[2]="None.png" +height[2]="945" +width[2]="1680" +background_color[2]="#f2f3f3" +is_favourite[2]="0" +auto_adjust[2]="0" +maintenance_mode[2]="" +grid_color[2]="#cccccc" +grid_size[2]="10" -type[2]="box" -width[2]="386" -height[2]="560" -x[2]="1264" -y[2]="30" -border_color[2]="#ffffff" -fill_color[2]="#ffffff" +[tlayout_data] -type[3]="box" -width[3]="390" -height[3]="205" -x[3]="30" -y[3]="650" -border_color[3]="#eaf0ff" -fill_color[3]="#eaf0ff" +id[49]="49" +id_layout[49]="2" +pos_x[49]="30" +pos_y[49]="30" +height[49]="560" +width[49]="1205" +label[49]="" +image[49]="" +type[49]="12" +period[49]="3600" +id_agente_modulo[49]="0" +id_agent[49]="0" +id_layout_linked[49]="0" +parent_item[49]="0" +enable_link[49]="1" +id_metaconsole[49]="0" +id_group[49]="0" +id_custom_graph[49]="0" +border_width[49]="0" +type_graph[49]="area" +label_position[49]="down" +border_color[49]="#ffffff" +fill_color[49]="#ffffff" +recursive_group[49]="0" +show_statistics[49]="0" +linked_layout_node_id[49]="0" +linked_layout_status_type[49]="default" +id_layout_linked_weight[49]="0" +linked_layout_status_as_service_warning[49]="0" +linked_layout_status_as_service_critical[49]="0" +element_group[49]="0" +show_on_top[49]="0" +clock_animation[49]="analogic_1" +time_format[49]="time" +timezone[49]="Europe/Madrid" +show_last_value[49]="0" +cache_expiration[49]="0" +title[49]="" +period_chart_options[49]="" -type[4]="box" -width[4]="390" -height[4]="205" -x[4]="441" -y[4]="650" -border_color[4]="#fef1ea" -fill_color[4]="#fef1ea" +id[50]="50" +id_layout[50]="2" +pos_x[50]="1264" +pos_y[50]="30" +height[50]="560" +width[50]="386" +label[50]="" +image[50]="" +type[50]="12" +period[50]="3600" +id_agente_modulo[50]="0" +id_agent[50]="0" +id_layout_linked[50]="0" +parent_item[50]="0" +enable_link[50]="1" +id_metaconsole[50]="0" +id_group[50]="0" +id_custom_graph[50]="0" +border_width[50]="0" +type_graph[50]="area" +label_position[50]="down" +border_color[50]="#ffffff" +fill_color[50]="#ffffff" +recursive_group[50]="0" +show_statistics[50]="0" +linked_layout_node_id[50]="0" +linked_layout_status_type[50]="default" +id_layout_linked_weight[50]="0" +linked_layout_status_as_service_warning[50]="0" +linked_layout_status_as_service_critical[50]="0" +element_group[50]="0" +show_on_top[50]="0" +clock_animation[50]="analogic_1" +time_format[50]="time" +timezone[50]="Europe/Madrid" +show_last_value[50]="0" +cache_expiration[50]="0" +title[50]="" +period_chart_options[50]="" -type[5]="box" -width[5]="390" -height[5]="205" -x[5]="850" -y[5]="650" -border_color[5]="#d8daff" -fill_color[5]="#d8daff" +id[51]="51" +id_layout[51]="2" +pos_x[51]="30" +pos_y[51]="650" +height[51]="205" +width[51]="390" +label[51]="" +image[51]="" +type[51]="12" +period[51]="3600" +id_agente_modulo[51]="0" +id_agent[51]="0" +id_layout_linked[51]="0" +parent_item[51]="0" +enable_link[51]="1" +id_metaconsole[51]="0" +id_group[51]="0" +id_custom_graph[51]="0" +border_width[51]="0" +type_graph[51]="area" +label_position[51]="down" +border_color[51]="#eaf0ff" +fill_color[51]="#eaf0ff" +recursive_group[51]="0" +show_statistics[51]="0" +linked_layout_node_id[51]="0" +linked_layout_status_type[51]="default" +id_layout_linked_weight[51]="0" +linked_layout_status_as_service_warning[51]="0" +linked_layout_status_as_service_critical[51]="0" +element_group[51]="0" +show_on_top[51]="0" +clock_animation[51]="analogic_1" +time_format[51]="time" +timezone[51]="Europe/Madrid" +show_last_value[51]="0" +cache_expiration[51]="0" +title[51]="" +period_chart_options[51]="" -type[6]="box" -width[6]="390" -height[6]="205" -x[6]="1264" -y[6]="650" -border_color[6]="#d4edd7" -fill_color[6]="#d4edd7" +id[52]="52" +id_layout[52]="2" +pos_x[52]="441" +pos_y[52]="650" +height[52]="205" +width[52]="390" +label[52]="" +image[52]="" +type[52]="12" +period[52]="3600" +id_agente_modulo[52]="0" +id_agent[52]="0" +id_layout_linked[52]="0" +parent_item[52]="0" +enable_link[52]="1" +id_metaconsole[52]="0" +id_group[52]="0" +id_custom_graph[52]="0" +border_width[52]="0" +type_graph[52]="area" +label_position[52]="down" +border_color[52]="#fef1ea" +fill_color[52]="#fef1ea" +recursive_group[52]="0" +show_statistics[52]="0" +linked_layout_node_id[52]="0" +linked_layout_status_type[52]="default" +id_layout_linked_weight[52]="0" +linked_layout_status_as_service_warning[52]="0" +linked_layout_status_as_service_critical[52]="0" +element_group[52]="0" +show_on_top[52]="0" +clock_animation[52]="analogic_1" +time_format[52]="time" +timezone[52]="Europe/Madrid" +show_last_value[52]="0" +cache_expiration[52]="0" +title[52]="" +period_chart_options[52]="" -type[7]="label" -label_position[7]="down" -width[7]="239" -height[7]="20" -x[7]="60" -y[7]="60" -label[7]='

      Network usage

      ' -show_on_top[7]=true +id[53]="53" +id_layout[53]="2" +pos_x[53]="850" +pos_y[53]="650" +height[53]="205" +width[53]="390" +label[53]="" +image[53]="" +type[53]="12" +period[53]="3600" +id_agente_modulo[53]="0" +id_agent[53]="0" +id_layout_linked[53]="0" +parent_item[53]="0" +enable_link[53]="1" +id_metaconsole[53]="0" +id_group[53]="0" +id_custom_graph[53]="0" +border_width[53]="0" +type_graph[53]="area" +label_position[53]="down" +border_color[53]="#d8daff" +fill_color[53]="#d8daff" +recursive_group[53]="0" +show_statistics[53]="0" +linked_layout_node_id[53]="0" +linked_layout_status_type[53]="default" +id_layout_linked_weight[53]="0" +linked_layout_status_as_service_warning[53]="0" +linked_layout_status_as_service_critical[53]="0" +element_group[53]="0" +show_on_top[53]="0" +clock_animation[53]="analogic_1" +time_format[53]="time" +timezone[53]="Europe/Madrid" +show_last_value[53]="0" +cache_expiration[53]="0" +title[53]="" +period_chart_options[53]="" -type[8]="label" -label_position[8]="down" -width[8]="239" -height[8]="20" -x[8]="1282" -y[8]="48" -label[8]='

      Performance

      ' -show_on_top[8]=true +id[54]="54" +id_layout[54]="2" +pos_x[54]="1264" +pos_y[54]="650" +height[54]="205" +width[54]="390" +label[54]="" +image[54]="" +type[54]="12" +period[54]="3600" +id_agente_modulo[54]="0" +id_agent[54]="0" +id_layout_linked[54]="0" +parent_item[54]="0" +enable_link[54]="1" +id_metaconsole[54]="0" +id_group[54]="0" +id_custom_graph[54]="0" +border_width[54]="0" +type_graph[54]="area" +label_position[54]="down" +border_color[54]="#d4edd7" +fill_color[54]="#d4edd7" +recursive_group[54]="0" +show_statistics[54]="0" +linked_layout_node_id[54]="0" +linked_layout_status_type[54]="default" +id_layout_linked_weight[54]="0" +linked_layout_status_as_service_warning[54]="0" +linked_layout_status_as_service_critical[54]="0" +element_group[54]="0" +show_on_top[54]="0" +clock_animation[54]="analogic_1" +time_format[54]="time" +timezone[54]="Europe/Madrid" +show_last_value[54]="0" +cache_expiration[54]="0" +title[54]="" +period_chart_options[54]="" -type[9]="label" -label_position[9]="down" -width[9]="239" -height[9]="20" -x[9]="60" -y[9]="680" -label[9]='

      Service httpd

      ' -show_on_top[9]=true +id[55]="55" +id_layout[55]="2" +pos_x[55]="60" +pos_y[55]="60" +height[55]="20" +width[55]="239" +label[55]="<p><span style="font-size: 24px; color: #08122a; line-height: 1em; font-weight: 900;">Network usage</span></p>" +image[55]="" +type[55]="4" +period[55]="3600" +id_agente_modulo[55]="0" +id_agent[55]="0" +id_layout_linked[55]="0" +parent_item[55]="0" +enable_link[55]="1" +id_metaconsole[55]="0" +id_group[55]="0" +id_custom_graph[55]="0" +border_width[55]="0" +type_graph[55]="area" +label_position[55]="down" +border_color[55]="" +fill_color[55]="" +recursive_group[55]="0" +show_statistics[55]="0" +linked_layout_node_id[55]="0" +linked_layout_status_type[55]="default" +id_layout_linked_weight[55]="0" +linked_layout_status_as_service_warning[55]="0" +linked_layout_status_as_service_critical[55]="0" +element_group[55]="0" +show_on_top[55]="1" +clock_animation[55]="analogic_1" +time_format[55]="time" +timezone[55]="Europe/Madrid" +show_last_value[55]="0" +cache_expiration[55]="0" +title[55]="" +period_chart_options[55]="" -type[10]="label" -label_position[10]="down" -width[10]="239" -height[10]="20" -x[10]="470" -y[10]="680" -label[10]='

      CPU Load

      ' -show_on_top[10]=true +id[56]="56" +id_layout[56]="2" +pos_x[56]="1282" +pos_y[56]="48" +height[56]="20" +width[56]="239" +label[56]="<p><span style="font-size: 24px; color: #08122a; line-height: 1em; font-weight: 900;">Performance</span></p>" +image[56]="" +type[56]="4" +period[56]="3600" +id_agente_modulo[56]="0" +id_agent[56]="0" +id_layout_linked[56]="0" +parent_item[56]="0" +enable_link[56]="1" +id_metaconsole[56]="0" +id_group[56]="0" +id_custom_graph[56]="0" +border_width[56]="0" +type_graph[56]="area" +label_position[56]="down" +border_color[56]="" +fill_color[56]="" +recursive_group[56]="0" +show_statistics[56]="0" +linked_layout_node_id[56]="0" +linked_layout_status_type[56]="default" +id_layout_linked_weight[56]="0" +linked_layout_status_as_service_warning[56]="0" +linked_layout_status_as_service_critical[56]="0" +element_group[56]="0" +show_on_top[56]="1" +clock_animation[56]="analogic_1" +time_format[56]="time" +timezone[56]="Europe/Madrid" +show_last_value[56]="0" +cache_expiration[56]="0" +title[56]="" +period_chart_options[56]="" -type[11]="label" -label_position[11]="down" -width[11]="239" -height[11]="20" -x[11]="880" -y[11]="680" -label[11]='

      Memory usage

      ' -show_on_top[11]=true +id[57]="57" +id_layout[57]="2" +pos_x[57]="60" +pos_y[57]="680" +height[57]="20" +width[57]="239" +label[57]="<p><span style="font-size: 24px; color: #08122a; line-height: 1em; font-weight: 900;">Service httpd</span></p>" +image[57]="" +type[57]="4" +period[57]="3600" +id_agente_modulo[57]="0" +id_agent[57]="0" +id_layout_linked[57]="0" +parent_item[57]="0" +enable_link[57]="1" +id_metaconsole[57]="0" +id_group[57]="0" +id_custom_graph[57]="0" +border_width[57]="0" +type_graph[57]="area" +label_position[57]="down" +border_color[57]="" +fill_color[57]="" +recursive_group[57]="0" +show_statistics[57]="0" +linked_layout_node_id[57]="0" +linked_layout_status_type[57]="default" +id_layout_linked_weight[57]="0" +linked_layout_status_as_service_warning[57]="0" +linked_layout_status_as_service_critical[57]="0" +element_group[57]="0" +show_on_top[57]="1" +clock_animation[57]="analogic_1" +time_format[57]="time" +timezone[57]="Europe/Madrid" +show_last_value[57]="0" +cache_expiration[57]="0" +title[57]="" +period_chart_options[57]="" -type[12]="label" -label_position[12]="down" -width[12]="239" -height[12]="20" -x[12]="1294" -y[12]="680" -label[12]='

      Disk usage

      ' -show_on_top[12]=true +id[58]="58" +id_layout[58]="2" +pos_x[58]="470" +pos_y[58]="680" +height[58]="20" +width[58]="239" +label[58]="<p><span style="font-size: 24px; color: #08122a; line-height: 1em; font-weight: 900;">CPU Load</span></p>" +image[58]="" +type[58]="4" +period[58]="3600" +id_agente_modulo[58]="0" +id_agent[58]="0" +id_layout_linked[58]="0" +parent_item[58]="0" +enable_link[58]="1" +id_metaconsole[58]="0" +id_group[58]="0" +id_custom_graph[58]="0" +border_width[58]="0" +type_graph[58]="area" +label_position[58]="down" +border_color[58]="" +fill_color[58]="" +recursive_group[58]="0" +show_statistics[58]="0" +linked_layout_node_id[58]="0" +linked_layout_status_type[58]="default" +id_layout_linked_weight[58]="0" +linked_layout_status_as_service_warning[58]="0" +linked_layout_status_as_service_critical[58]="0" +element_group[58]="0" +show_on_top[58]="1" +clock_animation[58]="analogic_1" +time_format[58]="time" +timezone[58]="Europe/Madrid" +show_last_value[58]="0" +cache_expiration[58]="0" +title[58]="" +period_chart_options[58]="" -type[13]="label" -label_position[13]="down" -width[13]="181" -height[13]="16" -x[13]="63" -y[13]="158" -label[13]='

      Min. today

      ' -show_on_top[13]=true +id[59]="59" +id_layout[59]="2" +pos_x[59]="880" +pos_y[59]="680" +height[59]="20" +width[59]="239" +label[59]="<p><span style="font-size: 24px; color: #08122a; line-height: 1em; font-weight: 900;">Memory usage</span></p>" +image[59]="" +type[59]="4" +period[59]="3600" +id_agente_modulo[59]="0" +id_agent[59]="0" +id_layout_linked[59]="0" +parent_item[59]="0" +enable_link[59]="1" +id_metaconsole[59]="0" +id_group[59]="0" +id_custom_graph[59]="0" +border_width[59]="0" +type_graph[59]="area" +label_position[59]="down" +border_color[59]="" +fill_color[59]="" +recursive_group[59]="0" +show_statistics[59]="0" +linked_layout_node_id[59]="0" +linked_layout_status_type[59]="default" +id_layout_linked_weight[59]="0" +linked_layout_status_as_service_warning[59]="0" +linked_layout_status_as_service_critical[59]="0" +element_group[59]="0" +show_on_top[59]="1" +clock_animation[59]="analogic_1" +time_format[59]="time" +timezone[59]="Europe/Madrid" +show_last_value[59]="0" +cache_expiration[59]="0" +title[59]="" +period_chart_options[59]="" -type[14]="label" -label_position[14]="down" -width[14]="181" -height[14]="16" -x[14]="469" -y[14]="158" -label[14]='

      Avg. today

      ' -show_on_top[14]=true +id[60]="60" +id_layout[60]="2" +pos_x[60]="1294" +pos_y[60]="680" +height[60]="20" +width[60]="239" +label[60]="<p><span style="font-size: 24px; color: #08122a; line-height: 1em; font-weight: 900;">Disk usage</span></p>" +image[60]="" +type[60]="4" +period[60]="3600" +id_agente_modulo[60]="0" +id_agent[60]="0" +id_layout_linked[60]="0" +parent_item[60]="0" +enable_link[60]="1" +id_metaconsole[60]="0" +id_group[60]="0" +id_custom_graph[60]="0" +border_width[60]="0" +type_graph[60]="area" +label_position[60]="down" +border_color[60]="" +fill_color[60]="" +recursive_group[60]="0" +show_statistics[60]="0" +linked_layout_node_id[60]="0" +linked_layout_status_type[60]="default" +id_layout_linked_weight[60]="0" +linked_layout_status_as_service_warning[60]="0" +linked_layout_status_as_service_critical[60]="0" +element_group[60]="0" +show_on_top[60]="1" +clock_animation[60]="analogic_1" +time_format[60]="time" +timezone[60]="Europe/Madrid" +show_last_value[60]="0" +cache_expiration[60]="0" +title[60]="" +period_chart_options[60]="" -type[15]="label" -label_position[15]="down" -width[15]="181" -height[15]="16" -x[15]="879" -y[15]="158" -label[15]='

      Max. today

      ' -show_on_top[15]=true +id[61]="61" +id_layout[61]="2" +pos_x[61]="63" +pos_y[61]="158" +height[61]="16" +width[61]="181" +label[61]="<p><span style="font-size: 16px; color: #898989; line-height: 1em;">Min. today</span></p>" +image[61]="" +type[61]="4" +period[61]="3600" +id_agente_modulo[61]="0" +id_agent[61]="0" +id_layout_linked[61]="0" +parent_item[61]="0" +enable_link[61]="1" +id_metaconsole[61]="0" +id_group[61]="0" +id_custom_graph[61]="0" +border_width[61]="0" +type_graph[61]="area" +label_position[61]="down" +border_color[61]="" +fill_color[61]="" +recursive_group[61]="0" +show_statistics[61]="0" +linked_layout_node_id[61]="0" +linked_layout_status_type[61]="default" +id_layout_linked_weight[61]="0" +linked_layout_status_as_service_warning[61]="0" +linked_layout_status_as_service_critical[61]="0" +element_group[61]="0" +show_on_top[61]="1" +clock_animation[61]="analogic_1" +time_format[61]="time" +timezone[61]="Europe/Madrid" +show_last_value[61]="0" +cache_expiration[61]="0" +title[61]="" +period_chart_options[61]="" -type[16]="value" -label_position[16]="down" -width[16]="400" -height[16]="50" -x[16]="60" -y[16]="100" -label[16]='

      (_value_)

      ' -show_on_top[16]=true -agent_name[16]="linux-1" -module[16]="Network Usage" -process[16]="min" -interval[16]="86400" +id[62]="62" +id_layout[62]="2" +pos_x[62]="469" +pos_y[62]="158" +height[62]="16" +width[62]="181" +label[62]="<p><span style="font-size: 16px; color: #898989; line-height: 1em;">Avg. today</span></p>" +image[62]="" +type[62]="4" +period[62]="3600" +id_agente_modulo[62]="0" +id_agent[62]="0" +id_layout_linked[62]="0" +parent_item[62]="0" +enable_link[62]="1" +id_metaconsole[62]="0" +id_group[62]="0" +id_custom_graph[62]="0" +border_width[62]="0" +type_graph[62]="area" +label_position[62]="down" +border_color[62]="" +fill_color[62]="" +recursive_group[62]="0" +show_statistics[62]="0" +linked_layout_node_id[62]="0" +linked_layout_status_type[62]="default" +id_layout_linked_weight[62]="0" +linked_layout_status_as_service_warning[62]="0" +linked_layout_status_as_service_critical[62]="0" +element_group[62]="0" +show_on_top[62]="1" +clock_animation[62]="analogic_1" +time_format[62]="time" +timezone[62]="Europe/Madrid" +show_last_value[62]="0" +cache_expiration[62]="0" +title[62]="" +period_chart_options[62]="" -type[17]="value" -label_position[17]="down" -width[17]="400" -height[17]="50" -x[17]="468" -y[17]="100" -label[17]='

      (_value_)

      ' -show_on_top[17]=true -agent_name[17]="linux-1" -module[17]="Network Usage" -process[17]="avg" -interval[17]="86400" +id[63]="63" +id_layout[63]="2" +pos_x[63]="879" +pos_y[63]="158" +height[63]="16" +width[63]="181" +label[63]="<p><span style="font-size: 16px; color: #898989; line-height: 1em;">Max. today</span></p>" +image[63]="" +type[63]="4" +period[63]="3600" +id_agente_modulo[63]="0" +id_agent[63]="0" +id_layout_linked[63]="0" +parent_item[63]="0" +enable_link[63]="1" +id_metaconsole[63]="0" +id_group[63]="0" +id_custom_graph[63]="0" +border_width[63]="0" +type_graph[63]="area" +label_position[63]="down" +border_color[63]="" +fill_color[63]="" +recursive_group[63]="0" +show_statistics[63]="0" +linked_layout_node_id[63]="0" +linked_layout_status_type[63]="default" +id_layout_linked_weight[63]="0" +linked_layout_status_as_service_warning[63]="0" +linked_layout_status_as_service_critical[63]="0" +element_group[63]="0" +show_on_top[63]="1" +clock_animation[63]="analogic_1" +time_format[63]="time" +timezone[63]="Europe/Madrid" +show_last_value[63]="0" +cache_expiration[63]="0" +title[63]="" +period_chart_options[63]="" -type[18]="value" -label_position[18]="down" -width[18]="400" -height[18]="50" -x[18]="876" -y[18]="100" -label[18]='

      (_value_)

      ' -show_on_top[18]=true -agent_name[18]="linux-1" -module[18]="Network Usage" -process[18]="max" -interval[18]="86400" +id[64]="64" +id_layout[64]="2" +pos_x[64]="60" +pos_y[64]="100" +height[64]="50" +width[64]="400" +label[64]="<p><span style="font-size: 50px; color: #08122a; line-height: 1em;">(_value_)</span></p>" +image[64]="" +type[64]="7" +period[64]="86400" +id_agente_modulo[64]="{\"tagente_modulo\":{\"nombre\":\"Network Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[64]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_layout_linked[64]="0" +parent_item[64]="0" +enable_link[64]="1" +id_metaconsole[64]="0" +id_group[64]="0" +id_custom_graph[64]="0" +border_width[64]="0" +type_graph[64]="area" +label_position[64]="down" +border_color[64]="" +fill_color[64]="" +recursive_group[64]="0" +show_statistics[64]="0" +linked_layout_node_id[64]="0" +linked_layout_status_type[64]="default" +id_layout_linked_weight[64]="0" +linked_layout_status_as_service_warning[64]="0" +linked_layout_status_as_service_critical[64]="0" +element_group[64]="0" +show_on_top[64]="1" +clock_animation[64]="analogic_1" +time_format[64]="time" +timezone[64]="Europe/Madrid" +show_last_value[64]="0" +cache_expiration[64]="0" +title[64]="" +period_chart_options[64]="" -type[19]="value" -label_position[19]="down" -width[19]="330" -height[19]="30" -x[19]="470" -y[19]="722" -label[19]='

      (_value_)

      ' -show_on_top[19]=true -agent_name[19]="linux-1" -module[19]="CPU Load" +id[65]="65" +id_layout[65]="2" +pos_x[65]="468" +pos_y[65]="100" +height[65]="50" +width[65]="400" +label[65]="<p><span style="font-size: 50px; color: #08122a; line-height: 1em;">(_value_)</span></p>" +image[65]="" +type[65]="8" +period[65]="86400" +id_agente_modulo[65]="{\"tagente_modulo\":{\"nombre\":\"Network Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[65]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_layout_linked[65]="0" +parent_item[65]="0" +enable_link[65]="1" +id_metaconsole[65]="0" +id_group[65]="0" +id_custom_graph[65]="0" +border_width[65]="0" +type_graph[65]="area" +label_position[65]="down" +border_color[65]="" +fill_color[65]="" +recursive_group[65]="0" +show_statistics[65]="0" +linked_layout_node_id[65]="0" +linked_layout_status_type[65]="default" +id_layout_linked_weight[65]="0" +linked_layout_status_as_service_warning[65]="0" +linked_layout_status_as_service_critical[65]="0" +element_group[65]="0" +show_on_top[65]="1" +clock_animation[65]="analogic_1" +time_format[65]="time" +timezone[65]="Europe/Madrid" +show_last_value[65]="0" +cache_expiration[65]="0" +title[65]="" +period_chart_options[65]="" -type[20]="value" -label_position[20]="down" -width[20]="330" -height[20]="30" -x[20]="880" -y[20]="722" -label[20]='

      (_value_)

      ' -show_on_top[20]=true -agent_name[20]="linux-1" -module[20]="Memory Usage" +id[66]="66" +id_layout[66]="2" +pos_x[66]="876" +pos_y[66]="100" +height[66]="50" +width[66]="400" +label[66]="<p><span style="font-size: 50px; color: #08122a; line-height: 1em;">(_value_)</span></p>" +image[66]="" +type[66]="6" +period[66]="86400" +id_agente_modulo[66]="{\"tagente_modulo\":{\"nombre\":\"Network Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[66]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_layout_linked[66]="0" +parent_item[66]="0" +enable_link[66]="1" +id_metaconsole[66]="0" +id_group[66]="0" +id_custom_graph[66]="0" +border_width[66]="0" +type_graph[66]="area" +label_position[66]="down" +border_color[66]="" +fill_color[66]="" +recursive_group[66]="0" +show_statistics[66]="0" +linked_layout_node_id[66]="0" +linked_layout_status_type[66]="default" +id_layout_linked_weight[66]="0" +linked_layout_status_as_service_warning[66]="0" +linked_layout_status_as_service_critical[66]="0" +element_group[66]="0" +show_on_top[66]="1" +clock_animation[66]="analogic_1" +time_format[66]="time" +timezone[66]="Europe/Madrid" +show_last_value[66]="0" +cache_expiration[66]="0" +title[66]="" +period_chart_options[66]="" -type[21]="value" -label_position[21]="down" -width[21]="330" -height[21]="30" -x[21]="1294" -y[21]="722" -label[21]='

      (_value_)

      ' -show_on_top[21]=true -agent_name[21]="linux-1" -module[21]="Disk Usage" +id[67]="67" +id_layout[67]="2" +pos_x[67]="470" +pos_y[67]="722" +height[67]="30" +width[67]="330" +label[67]="<p><span style="font-size: 40px; color: #08122a; line-height: 1em;">(_value_)</span></p>" +image[67]="" +type[67]="2" +period[67]="3600" +id_agente_modulo[67]="{\"tagente_modulo\":{\"nombre\":\"CPU Load\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[67]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_layout_linked[67]="0" +parent_item[67]="0" +enable_link[67]="1" +id_metaconsole[67]="0" +id_group[67]="0" +id_custom_graph[67]="0" +border_width[67]="0" +type_graph[67]="area" +label_position[67]="down" +border_color[67]="" +fill_color[67]="" +recursive_group[67]="0" +show_statistics[67]="0" +linked_layout_node_id[67]="0" +linked_layout_status_type[67]="default" +id_layout_linked_weight[67]="0" +linked_layout_status_as_service_warning[67]="0" +linked_layout_status_as_service_critical[67]="0" +element_group[67]="0" +show_on_top[67]="1" +clock_animation[67]="analogic_1" +time_format[67]="time" +timezone[67]="Europe/Madrid" +show_last_value[67]="0" +cache_expiration[67]="0" +title[67]="" +period_chart_options[67]="" -type[22]="percentile" -width[22]="330" -height[22]="100" -x[22]="470" -y[22]="790" -show_on_top[22]=true -agent_name[22]="linux-1" -module[22]="CPU Load" -min[22]="0" -max[22]="100" +id[68]="68" +id_layout[68]="2" +pos_x[68]="880" +pos_y[68]="722" +height[68]="30" +width[68]="330" +label[68]="<p><span style="font-size: 40px; color: #08122a; line-height: 1em;">(_value_)</span></p>" +image[68]="" +type[68]="2" +period[68]="3600" +id_agente_modulo[68]="{\"tagente_modulo\":{\"nombre\":\"Memory Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[68]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_layout_linked[68]="0" +parent_item[68]="0" +enable_link[68]="1" +id_metaconsole[68]="0" +id_group[68]="0" +id_custom_graph[68]="0" +border_width[68]="0" +type_graph[68]="area" +label_position[68]="down" +border_color[68]="" +fill_color[68]="" +recursive_group[68]="0" +show_statistics[68]="0" +linked_layout_node_id[68]="0" +linked_layout_status_type[68]="default" +id_layout_linked_weight[68]="0" +linked_layout_status_as_service_warning[68]="0" +linked_layout_status_as_service_critical[68]="0" +element_group[68]="0" +show_on_top[68]="1" +clock_animation[68]="analogic_1" +time_format[68]="time" +timezone[68]="Europe/Madrid" +show_last_value[68]="0" +cache_expiration[68]="0" +title[68]="" +period_chart_options[68]="" -type[23]="percentile" -width[23]="330" -height[23]="100" -x[23]="880" -y[23]="790" -show_on_top[23]=true -agent_name[23]="linux-1" -module[23]="Memory Usage" -min[23]="0" -max[23]="100" +id[69]="69" +id_layout[69]="2" +pos_x[69]="1294" +pos_y[69]="722" +height[69]="30" +width[69]="330" +label[69]="<p><span style="font-size: 40px; color: #08122a; line-height: 1em;">(_value_)</span></p>" +image[69]="" +type[69]="2" +period[69]="3600" +id_agente_modulo[69]="{\"tagente_modulo\":{\"nombre\":\"Disk Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[69]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_layout_linked[69]="0" +parent_item[69]="0" +enable_link[69]="1" +id_metaconsole[69]="0" +id_group[69]="0" +id_custom_graph[69]="0" +border_width[69]="0" +type_graph[69]="area" +label_position[69]="down" +border_color[69]="" +fill_color[69]="" +recursive_group[69]="0" +show_statistics[69]="0" +linked_layout_node_id[69]="0" +linked_layout_status_type[69]="default" +id_layout_linked_weight[69]="0" +linked_layout_status_as_service_warning[69]="0" +linked_layout_status_as_service_critical[69]="0" +element_group[69]="0" +show_on_top[69]="1" +clock_animation[69]="analogic_1" +time_format[69]="time" +timezone[69]="Europe/Madrid" +show_last_value[69]="0" +cache_expiration[69]="0" +title[69]="" +period_chart_options[69]="" -type[24]="percentile" -width[24]="330" -height[24]="100" -x[24]="1294" -y[24]="790" -show_on_top[24]=true -agent_name[24]="linux-1" -module[24]="Disk Usage" -min[24]="0" -max[24]="100" +id[70]="70" +id_layout[70]="2" +pos_x[70]="470" +pos_y[70]="790" +height[70]="100" +width[70]="330" +label[70]="" +image[70]="percent" +type[70]="3" +period[70]="3600" +id_agente_modulo[70]="{\"tagente_modulo\":{\"nombre\":\"CPU Load\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[70]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_layout_linked[70]="0" +parent_item[70]="0" +enable_link[70]="1" +id_metaconsole[70]="0" +id_group[70]="0" +id_custom_graph[70]="0" +border_width[70]="0" +type_graph[70]="area" +label_position[70]="down" +border_color[70]="" +fill_color[70]="" +recursive_group[70]="0" +show_statistics[70]="0" +linked_layout_node_id[70]="0" +linked_layout_status_type[70]="default" +id_layout_linked_weight[70]="0" +linked_layout_status_as_service_warning[70]="0" +linked_layout_status_as_service_critical[70]="0" +element_group[70]="0" +show_on_top[70]="1" +clock_animation[70]="analogic_1" +time_format[70]="time" +timezone[70]="Europe/Madrid" +show_last_value[70]="0" +cache_expiration[70]="0" +title[70]="" +period_chart_options[70]="" -type[25]="module_graph" -width[25]="1150" -height[25]="320" -x[25]="58" -y[25]="196" -agent_name[25]="linux-1" -module[25]="Network Usage" -image[25]="transparent" -graph_type[25]="line" -interval[25]="86400" -show_on_top[25]=true +id[71]="71" +id_layout[71]="2" +pos_x[71]="880" +pos_y[71]="790" +height[71]="100" +width[71]="330" +label[71]="" +image[71]="percent" +type[71]="3" +period[71]="3600" +id_agente_modulo[71]="{\"tagente_modulo\":{\"nombre\":\"Memory Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[71]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_layout_linked[71]="0" +parent_item[71]="0" +enable_link[71]="1" +id_metaconsole[71]="0" +id_group[71]="0" +id_custom_graph[71]="0" +border_width[71]="0" +type_graph[71]="area" +label_position[71]="down" +border_color[71]="" +fill_color[71]="" +recursive_group[71]="0" +show_statistics[71]="0" +linked_layout_node_id[71]="0" +linked_layout_status_type[71]="default" +id_layout_linked_weight[71]="0" +linked_layout_status_as_service_warning[71]="0" +linked_layout_status_as_service_critical[71]="0" +element_group[71]="0" +show_on_top[71]="1" +clock_animation[71]="analogic_1" +time_format[71]="time" +timezone[71]="Europe/Madrid" +show_last_value[71]="0" +cache_expiration[71]="0" +title[71]="" +period_chart_options[71]="" -type[26]="basic_chart" -width[26]="325" -height[26]="110" -x[26]="1294" -y[26]="100" -agent_name[26]="linux-1" -module[26]="CPU Load" -interval[26]="86400" -show_on_top[26]=true +id[72]="72" +id_layout[72]="2" +pos_x[72]="1294" +pos_y[72]="790" +height[72]="100" +width[72]="330" +label[72]="" +image[72]="percent" +type[72]="3" +period[72]="3600" +id_agente_modulo[72]="{\"tagente_modulo\":{\"nombre\":\"Disk Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[72]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_layout_linked[72]="0" +parent_item[72]="0" +enable_link[72]="1" +id_metaconsole[72]="0" +id_group[72]="0" +id_custom_graph[72]="0" +border_width[72]="0" +type_graph[72]="area" +label_position[72]="down" +border_color[72]="" +fill_color[72]="" +recursive_group[72]="0" +show_statistics[72]="0" +linked_layout_node_id[72]="0" +linked_layout_status_type[72]="default" +id_layout_linked_weight[72]="0" +linked_layout_status_as_service_warning[72]="0" +linked_layout_status_as_service_critical[72]="0" +element_group[72]="0" +show_on_top[72]="1" +clock_animation[72]="analogic_1" +time_format[72]="time" +timezone[72]="Europe/Madrid" +show_last_value[72]="0" +cache_expiration[72]="0" +title[72]="" +period_chart_options[72]="" -type[27]="basic_chart" -width[27]="325" -height[27]="110" -x[27]="1294" -y[27]="268" -agent_name[27]="linux-1" -module[27]="Memory Usage" -interval[27]="86400" -show_on_top[27]=true +id[73]="73" +id_layout[73]="2" +pos_x[73]="58" +pos_y[73]="196" +height[73]="320" +width[73]="1150" +label[73]="" +image[73]="transparent" +type[73]="1" +period[73]="86400" +id_agente_modulo[73]="{\"tagente_modulo\":{\"nombre\":\"Network Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[73]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_layout_linked[73]="0" +parent_item[73]="0" +enable_link[73]="1" +id_metaconsole[73]="0" +id_group[73]="0" +id_custom_graph[73]="0" +border_width[73]="0" +type_graph[73]="line" +label_position[73]="down" +border_color[73]="" +fill_color[73]="" +recursive_group[73]="0" +show_statistics[73]="0" +linked_layout_node_id[73]="0" +linked_layout_status_type[73]="default" +id_layout_linked_weight[73]="0" +linked_layout_status_as_service_warning[73]="0" +linked_layout_status_as_service_critical[73]="0" +element_group[73]="0" +show_on_top[73]="1" +clock_animation[73]="analogic_1" +time_format[73]="time" +timezone[73]="Europe/Madrid" +show_last_value[73]="0" +cache_expiration[73]="0" +title[73]="" +period_chart_options[73]="" -type[28]="basic_chart" -width[28]="325" -height[28]="110" -x[28]="1294" -y[28]="432" -agent_name[28]="linux-1" -module[28]="Disk Usage" -interval[28]="86400" -show_on_top[28]=true +id[74]="74" +id_layout[74]="2" +pos_x[74]="1294" +pos_y[74]="100" +height[74]="110" +width[74]="325" +label[74]="" +image[74]="" +type[74]="23" +period[74]="86400" +id_agente_modulo[74]="{\"tagente_modulo\":{\"nombre\":\"CPU Load\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[74]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_layout_linked[74]="0" +parent_item[74]="0" +enable_link[74]="1" +id_metaconsole[74]="0" +id_group[74]="0" +id_custom_graph[74]="0" +border_width[74]="0" +type_graph[74]="area" +label_position[74]="down" +border_color[74]="" +fill_color[74]="" +recursive_group[74]="0" +show_statistics[74]="0" +linked_layout_node_id[74]="0" +linked_layout_status_type[74]="default" +id_layout_linked_weight[74]="0" +linked_layout_status_as_service_warning[74]="0" +linked_layout_status_as_service_critical[74]="0" +element_group[74]="0" +show_on_top[74]="1" +clock_animation[74]="analogic_1" +time_format[74]="time" +timezone[74]="Europe/Madrid" +show_last_value[74]="0" +cache_expiration[74]="0" +title[74]="" +period_chart_options[74]="" + +id[75]="75" +id_layout[75]="2" +pos_x[75]="1294" +pos_y[75]="268" +height[75]="110" +width[75]="325" +label[75]="" +image[75]="" +type[75]="23" +period[75]="86400" +id_agente_modulo[75]="{\"tagente_modulo\":{\"nombre\":\"Memory Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[75]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_layout_linked[75]="0" +parent_item[75]="0" +enable_link[75]="1" +id_metaconsole[75]="0" +id_group[75]="0" +id_custom_graph[75]="0" +border_width[75]="0" +type_graph[75]="area" +label_position[75]="down" +border_color[75]="" +fill_color[75]="" +recursive_group[75]="0" +show_statistics[75]="0" +linked_layout_node_id[75]="0" +linked_layout_status_type[75]="default" +id_layout_linked_weight[75]="0" +linked_layout_status_as_service_warning[75]="0" +linked_layout_status_as_service_critical[75]="0" +element_group[75]="0" +show_on_top[75]="1" +clock_animation[75]="analogic_1" +time_format[75]="time" +timezone[75]="Europe/Madrid" +show_last_value[75]="0" +cache_expiration[75]="0" +title[75]="" +period_chart_options[75]="" + +id[76]="76" +id_layout[76]="2" +pos_x[76]="1294" +pos_y[76]="432" +height[76]="110" +width[76]="325" +label[76]="" +image[76]="" +type[76]="23" +period[76]="86400" +id_agente_modulo[76]="{\"tagente_modulo\":{\"nombre\":\"Disk Usage\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[76]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_layout_linked[76]="0" +parent_item[76]="0" +enable_link[76]="1" +id_metaconsole[76]="0" +id_group[76]="0" +id_custom_graph[76]="0" +border_width[76]="0" +type_graph[76]="area" +label_position[76]="down" +border_color[76]="" +fill_color[76]="" +recursive_group[76]="0" +show_statistics[76]="0" +linked_layout_node_id[76]="0" +linked_layout_status_type[76]="default" +id_layout_linked_weight[76]="0" +linked_layout_status_as_service_warning[76]="0" +linked_layout_status_as_service_critical[76]="0" +element_group[76]="0" +show_on_top[76]="1" +clock_animation[76]="analogic_1" +time_format[76]="time" +timezone[76]="Europe/Madrid" +show_last_value[76]="0" +cache_expiration[76]="0" +title[76]="" +period_chart_options[76]="" + +id[77]="77" +id_layout[77]="2" +pos_x[77]="60" +pos_y[77]="713" +height[77]="103" +width[77]="330" +label[77]="" +image[77]="" +type[77]="14" +period[77]="86400" +id_agente_modulo[77]="{\"tagente_modulo\":{\"nombre\":\"Service httpd\",\"id_agente\":{\"tagente\":{\"nombre\":\"linux-1\"}}}}" +id_agent[77]="{\"tagente\":{\"nombre\":\"linux-1\"}}" +id_layout_linked[77]="0" +parent_item[77]="0" +enable_link[77]="1" +id_metaconsole[77]="0" +id_group[77]="0" +id_custom_graph[77]="0" +border_width[77]="0" +type_graph[77]="area" +label_position[77]="down" +border_color[77]="" +fill_color[77]="" +recursive_group[77]="0" +show_statistics[77]="0" +linked_layout_node_id[77]="0" +linked_layout_status_type[77]="default" +id_layout_linked_weight[77]="0" +linked_layout_status_as_service_warning[77]="0" +linked_layout_status_as_service_critical[77]="0" +element_group[77]="0" +show_on_top[77]="1" +clock_animation[77]="analogic_1" +time_format[77]="time" +timezone[77]="Europe/Madrid" +show_last_value[77]="0" +cache_expiration[77]="0" +title[77]="" +period_chart_options[77]="" -type[29]="event_history" -width[29]="330" -height[29]="103" -x[29]="60" -y[29]="713" -show_on_top[29]=true -agent_name[29]="linux-1" -module[29]="Service httpd" -interval[29]="86400" \ No newline at end of file diff --git a/pandora_console/extras/mr/68.sql b/pandora_console/extras/mr/68.sql index 254cb2e7c1..07e6bdbf20 100644 --- a/pandora_console/extras/mr/68.sql +++ b/pandora_console/extras/mr/68.sql @@ -10,5 +10,33 @@ ALTER TABLE `tusuario` CHANGE COLUMN `metaconsole_data_section` `metaconsole_dat ALTER TABLE `tmensajes` ADD COLUMN `icon_notification` VARCHAR(250) NULL DEFAULT NULL AFTER `url`; +ALTER TABLE `tdemo_data` MODIFY `item_id` TEXT; + +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_os": "',`item_id`,'"}') WHERE `table_name` = "tconfig_os" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_agente": "',`item_id`,'"}') WHERE `table_name` = "tagente" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_grupo": "',`item_id`,'"}') WHERE `table_name` = "tgrupo" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_agente_modulo": "',`item_id`,'"}') WHERE `table_name` = "tagente_modulo" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_module_inventory": "',`item_id`,'"}') WHERE `table_name` = "tmodule_inventory" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_agent_module_inventory": "',`item_id`,'"}') WHERE `table_name` = "tagent_module_inventory" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_graph": "',`item_id`,'"}') WHERE `table_name` = "tgraph" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id": "',`item_id`,'"}') WHERE `table_name` = "tmap" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_report": "',`item_id`,'"}') WHERE `table_name` = "treport" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_rc": "',`item_id`,'"}') WHERE `table_name` = "treport_content" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id": "',`item_id`,'"}') WHERE `table_name` = "treport_content_sla_combined" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id": "',`item_id`,'"}') WHERE `table_name` = "tservice" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id": "',`item_id`,'"}') WHERE `table_name` = "tservice_element" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_trap": "',`item_id`,'"}') WHERE `table_name` = "ttrap" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id": "',`item_id`,'"}') WHERE `table_name` = "titem" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_gs": "',`item_id`,'"}') WHERE `table_name` = "tgraph_source" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id": "',`item_id`,'"}') WHERE `table_name` = "twidget_dashboard" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id": "',`item_id`,'"}') WHERE `table_name` = "tdashboard" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id": "',`item_id`,'"}') WHERE `table_name` = "tlayout" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id": "',`item_id`,'"}') WHERE `table_name` = "tlayout_data" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_agente_estado": "',`item_id`,'"}') WHERE `table_name` = "tagente_estado" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id": "',`item_id`,'"}') WHERE `table_name` = "trel_item" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id": "',`item_id`,'"}') WHERE `table_name` = "tplugin" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"tagente_id_agente": "',`item_id`,'"}') WHERE `table_name` = "tgis_data_status" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_tgis_map": "',`item_id`,'"}') WHERE `table_name` = "tgis_map" AND CAST(`item_id` AS UNSIGNED) != 0; +UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_tmap_layer": "',`item_id`,'"}') WHERE `table_name` = "tgis_map_layer" AND CAST(`item_id` AS UNSIGNED) != 0; COMMIT; \ No newline at end of file diff --git a/pandora_console/godmode/setup/demo.php b/pandora_console/godmode/setup/demo.php index 83b41f1451..c39ef516e7 100644 --- a/pandora_console/godmode/setup/demo.php +++ b/pandora_console/godmode/setup/demo.php @@ -188,7 +188,7 @@ if ($display_loading === true || $running_create === true || $running_delete === $table_mkup .= '
      -
      +
      @@ -877,8 +877,9 @@ if ($display_loading === true || $running_create === true || $running_delete === } else { update_demo_status_icon(item_id, 'images/status_check@svg.svg'); } - $('div[data-item-id="' + item_id + '"] .loader-small').hide(); - $('div[data-item-id="' + status_data.checked_items[idx + 1] + '"] .loader-small').show(); + + $('div[data-item-id="' + item_id + '"] .loader-mini').hide(); + $('div[data-item-id="' + status_data.checked_items[idx + 1] + '"] .loader-mini').show(); items_checked.push(item_id); }); } diff --git a/pandora_console/include/ajax/demo_data.ajax.php b/pandora_console/include/ajax/demo_data.ajax.php index b3a006835f..e598d5989d 100644 --- a/pandora_console/include/ajax/demo_data.ajax.php +++ b/pandora_console/include/ajax/demo_data.ajax.php @@ -34,11 +34,14 @@ if (users_is_admin() === false) { return; } -require $config['homedir'].'/include/functions_inventory.php'; -require $config['homedir'].'/include/functions_custom_graphs.php'; -require $config['homedir'].'/include/functions_reports.php'; +require_once $config['homedir'].'/include/class/Prd.class.php'; +require_once $config['homedir'].'/include/functions_inventory.php'; +require_once $config['homedir'].'/include/functions_custom_graphs.php'; +require_once $config['homedir'].'/include/functions_reports.php'; // Ensure script keeps running even if client-side of the AJAX request disconnected. +// Dev note: this is a script which is purposely external to the invoking client script, configured to run async +// operations in the background even if client is disconnected. ignore_user_abort(true); set_time_limit(500); @@ -61,6 +64,8 @@ if ($action === 'create_demo_data') { 'gis_maps', ]; + $prd = new Prd(); + $demodata_directory = $config['homedir'].'/extras/demodata/'; $adv_options_is_enabled = (bool) get_parameter('adv_options_is_enabled', false); @@ -106,9 +111,32 @@ if ($action === 'create_demo_data') { sort($files, (SORT_NATURAL | SORT_FLAG_CASE)); foreach ($files as $file) { - $current_parsed_ini = parse_ini_file($directory_path.'/'.$file, true, INI_SCANNER_TYPED); - if ($current_parsed_ini !== false) { - $parsed_ini[$directory][] = array_merge(['filename' => $file], $current_parsed_ini); + $parsed_ini_data = parse_ini_file($directory_path.'/'.$file, true, INI_SCANNER_TYPED); + + /*$data = parse_ini_file($directory_path.'/'.$file, true, INI_SCANNER_TYPED); + if ($data !== false) { + $msg = $prd->importPrd($data); + } else { + $msg = [ + 'status' => false, + 'items' => [], + 'errors' => ['Unexpected error: Unable to parse PRD file.'], + ]; + } + + $parsed_ini[$directory][] = array_merge( + ['filename' => $file], + $msg + );*/ + + if ($parsed_ini_data !== false) { + $parsed_ini[$directory][] = [ + 'filename' => $file, + 'data' => $parsed_ini_data, + ]; + } else { + //__('Unexpected error: Unable to parse PRD file.'); + return; } } } @@ -118,7 +146,7 @@ if ($action === 'create_demo_data') { } $total_agents_to_create = (int) get_parameter('agents_num', 30); - //$total_agents_to_create = 10; + // $total_agents_to_create = 10;. $total_items_count = count($parsed_ini); if ($total_agents_to_create > 0) { @@ -128,12 +156,12 @@ if ($action === 'create_demo_data') { // First loop over agents to get the total agents to be created and init agent created count for each agent. foreach ($parsed_ini['agents'] as $ini_agent_data) { - if (isset($ini_agent_data['agent_data']['agents_number']) === true - && $ini_agent_data['agent_data']['agents_number'] > 0 + if (isset($ini_agent_data['data']['agent_data']['agents_number']) === true + && $ini_agent_data['data']['agent_data']['agents_number'] > 0 ) { - $agents_to_create += (int) $ini_agent_data['agent_data']['agents_number']; - $agents_created_count[$ini_agent_data['agent_data']['agent_alias']] = 0; - $agents_last_ip[$ini_agent_data['agent_data']['agent_alias']] = null; + $agents_to_create += (int) $ini_agent_data['data']['agent_data']['agents_number']; + $agents_created_count[$ini_agent_data['data']['agent_data']['agent_alias']] = 0; + $agents_last_ip[$ini_agent_data['data']['agent_data']['agent_alias']] = null; } } @@ -154,7 +182,7 @@ if ($action === 'create_demo_data') { // Traverse agent ini files and create agents. foreach ($parsed_ini['agents'] as $ini_agent_data) { $filename = $ini_agent_data['filename']; - $agent_data = $ini_agent_data['agent_data']; + $agent_data = $ini_agent_data['data']['agent_data']; if (isset($agent_data['agents_number']) === true && !((int) $agent_data['agents_number'] > 0) @@ -849,484 +877,76 @@ if ($action === 'create_demo_data') { } // Get last trap in database. + /* $id_trap_begin = db_get_value( - 'MAX(id_trap)', - 'ttrap', - 1, - 1, - false, - false - ); - - if ($id_trap_begin === false) { - $id_trap_begin = 0; - } - - // TRAPS HISTORY: Removed due to performance issues - /* - foreach ($agent_traps_values_buffer_chunks as $chunk) { - // Bulk inserts (insert batches of up to 100,000 as a performance limit). - mysql_db_process_sql_insert_multiple( + 'MAX(id_trap)', 'ttrap', - $chunk, + 1, + 1, + false, false - ); - } + ); - // Get last trap in database after insertion. - $id_trap_end = db_get_value( - 'MAX(id_trap)', - 'ttrap', - 1, - 1, - false, - false - ); + if ($id_trap_begin === false) { + $id_trap_begin = 0; + } - if ($id_trap_end === false) { - $id_trap_end = 0; - } + // TRAPS HISTORY: Removed due to performance issues + /* + foreach ($agent_traps_values_buffer_chunks as $chunk) { + // Bulk inserts (insert batches of up to 100,000 as a performance limit). + mysql_db_process_sql_insert_multiple( + 'ttrap', + $chunk, + false + ); + } - $agent_traps_demo_registry_buffer = []; - for ($i = ($id_trap_begin + 1); $i <= $id_trap_end; $i++) { - // Get batches to be stored in tdemo_data. - $agent_traps_demo_registry_buffer[] = [ - 'item_id' => $i, - 'table_name' => 'ttrap', - ]; - } - - $agent_traps_demo_registry_buffer_chunks = array_chunk($agent_traps_demo_registry_buffer, 100000); - - foreach ($agent_traps_demo_registry_buffer_chunks as $chunk) { - // Bulk inserts (insert batches of up to 100,000 as a performance limit). - mysql_db_process_sql_insert_multiple( - 'tdemo_data', - $chunk, + // Get last trap in database after insertion. + $id_trap_end = db_get_value( + 'MAX(id_trap)', + 'ttrap', + 1, + 1, + false, false - ); - }*/ + ); + + if ($id_trap_end === false) { + $id_trap_end = 0; + } + + $agent_traps_demo_registry_buffer = []; + for ($i = ($id_trap_begin + 1); $i <= $id_trap_end; $i++) { + // Get batches to be stored in tdemo_data. + $agent_traps_demo_registry_buffer[] = [ + 'item_id' => $i, + 'table_name' => 'ttrap', + ]; + } + + $agent_traps_demo_registry_buffer_chunks = array_chunk($agent_traps_demo_registry_buffer, 100000); + + foreach ($agent_traps_demo_registry_buffer_chunks as $chunk) { + // Bulk inserts (insert batches of up to 100,000 as a performance limit). + mysql_db_process_sql_insert_multiple( + 'tdemo_data', + $chunk, + false + ); + } + */ update_item_checked(DEMO_AGENT); } } $services_count = count(($parsed_ini['services'] ?? [])); + if ($services_count > 0) { // Create services. - foreach ($parsed_ini['services'] as $ini_service_data) { - $filename = $ini_service_data['filename']; - $service_data = $ini_service_data['service_data']; - $service_items = $ini_service_data['service_items']; - - // Check for mandatory fields. - if (isset($service_data['name']) === false - || is_string($service_data['name']) === false - || isset($service_data['group']) === false - || is_string($service_data['group']) === false - ) { - register_error( - DEMO_SERVICE, - __('Error in %s: name and/or group is not specified or does not have a valid format. Skipping service creation', $filename) - ); - continue; - } - - // Check whether services default agent exists in the system. Try to get default agent if not. - $matched_agents = agents_get_agents( - ['nombre' => $service_agent_name], - ['id_agente'], - 'AR', - [ - 'field' => 'nombre', - 'order' => 'ASC', - ], - false, - 0, - false, - false, - false - ); - - $matched_agent = $matched_agents[0]['id_agente']; - - if (isset($matched_agent) === true && $matched_agent > 0) { - $service_agent_id = $matched_agent; - } else { - // Skip element creation if agent does not exist. - register_error( - DEMO_SERVICE, - __('Error in %s: the specified services agent does not exist in the system: %s. Skipping service creation', $filename, $service_agent_name) - ); - continue; - } - - $id_group = get_group_or_create_demo_group($service_data['group']); - - if ($id_group === false) { - // Group could not be created. Skip service creation. - register_error( - DEMO_SERVICE, - __('Error in %s: the specified group does not exist in the system and could not be created. Skipping service creation', $filename) - ); - continue; - } - - $service_values = []; - - $service_values['name'] = io_safe_input($service_data['name']); - $service_values['description'] = io_safe_input($service_data['description']); - $service_values['id_group'] = $id_group; - $service_values['critical'] = $service_data['critical']; - $service_values['warning'] = $service_data['warning']; - $service_values['auto_calculate'] = (isset($service_data['mode']) === true && (string) $service_data['mode'] === 'smart') ? 1 : 0; - - if (isset($service_data['show_sunburst']) === true && $service_data['show_sunburst'] === true) { - $service_values['enable_sunburst'] = 1; - } - - $created_service_id = db_process_sql_insert('tservice', $service_values); - - $service_module_values = []; - $service_module_values['flag'] = 0; - $service_module_values['module_interval'] = 300; - $service_module_values['custom_integer_1'] = $created_service_id; - $service_module_values['prediction_module'] = 2; - $service_module_values['id_modulo'] = 5; - $service_module_values['id_module_group'] = 1; - - if ($created_service_id > 0) { - // Register created service in tdemo_data. - $values = [ - 'item_id' => $created_service_id, - 'table_name' => 'tservice', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback service creation if could not be registered in tdemo_data. - db_process_sql_delete('tservice', ['id' => $created_service_id]); - - register_error( - DEMO_SERVICE, - __('Uncaught error (source %s): could not create service %s', $filename, $service_values['name']) - ); - - continue; - } - - $service_module_values['id_tipo_modulo'] = 22; - $service_module_values['min_warning'] = $service_data['warning']; - $service_module_values['min_critical'] = $service_data['critical']; - - $created_service_module_id = modules_create_agent_module( - $service_agent_id, - io_safe_input($service_data['name'].'_service'), - $service_module_values - ); - - if ($created_service_module_id > 0) { - // Register created demo item in tdemo_data. - $values = [ - 'item_id' => $created_service_module_id, - 'table_name' => 'tagente_modulo', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback demo item creation if could not be registered in tdemo_data. - db_process_sql_delete('tagente_modulo', ['id_agente_modulo' => $created_service_module_id]); - - register_error( - DEMO_SERVICE, - __('Uncaught error (source %s): could not create service module %s', $filename, $service_module_values['nombre']) - ); - - continue; - } - - $service_module_values['id_tipo_modulo'] = 21; - $created_sla_service_module_id = modules_create_agent_module( - $service_agent_id, - io_safe_input($service_data['name'].'_SLA_service'), - $service_module_values - ); - - if ($created_sla_service_module_id > 0) { - // Register created demo item in tdemo_data. - $values = [ - 'item_id' => $created_sla_service_module_id, - 'table_name' => 'tagente_modulo', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback demo item creation if could not be registered in tdemo_data. - db_process_sql_delete('tagente_modulo', ['id_agente_modulo' => $created_sla_service_module_id]); - - register_error( - DEMO_SERVICE, - __('Uncaught error (source %s): could not create service SLA module %s', $filename, $service_module_values['nombre']) - ); - - continue; - } - - $service_module_values['id_tipo_modulo'] = 22; - $created_sla_val_service_module_id = modules_create_agent_module( - $service_agent_id, - io_safe_input($service_data['name'].'_SLA_Value_service'), - $service_module_values - ); - - if ($created_sla_val_service_module_id > 0) { - // Register created demo item in tdemo_data. - $values = [ - 'item_id' => $created_sla_val_service_module_id, - 'table_name' => 'tagente_modulo', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - if ($result === false) { - // Rollback demo item creation if could not be registered in tdemo_data. - db_process_sql_delete('tagente_modulo', ['id_agente_modulo' => $created_sla_val_service_module_id]); - - register_error( - DEMO_SERVICE, - __('Uncaught error (source %s): could not create service SLA value module %s', $filename, $service_module_values['nombre']) - ); - - continue; - } - } else { - register_error( - DEMO_SERVICE, - __('Uncaught error (source %s): could not create service SLA value module %s', $filename, $service_module_values['nombre']) - ); - - continue; - } - } else { - register_error( - DEMO_SERVICE, - __('Uncaught error (source %s): could not create service SLA module %s', $filename, $service_module_values['nombre']) - ); - - continue; - } - - $update_service_module_ids = db_process_sql_update( - 'tservice', - [ - 'id_agent_module' => $created_service_module_id, - 'sla_id_module' => $created_sla_service_module_id, - 'sla_value_id_module' => $created_sla_val_service_module_id, - ], - ['id' => $created_service_id] - ); - - if ($update_service_module_ids === false) { - continue; - } - } else { - register_error( - DEMO_SERVICE, - __('Uncaught error (source %s): could not create service module %s', $filename, $service_module_values['nombre']) - ); - - continue; - } - } else { - // Service could not be created. Skip creation of map. - register_error( - DEMO_SERVICE, - __('Uncaught error (source %s): could not create service %s', $filename, $service_values['name']) - ); - - continue; - } - - if (count($service_items) > 0) { - $item_access_idx = 1; - while (1) { - $items_array = []; - foreach ($service_items as $key => $value) { - $items_array[$key] = ($value[$item_access_idx] ?? null); - } - - $item_access_idx++; - - $test_empty_array = array_filter($items_array); - - if (empty($test_empty_array) === true) { - break; - } - - if (isset($items_array['type']) === false) { - // Service element type must be specified. - register_error( - DEMO_SERVICE, - __('Error in %s: all service items must have the following required fields: type. Skipping creation of item with index %d', $filename, ($item_access_idx - 1)) - ); - continue; - } - - $element_values = []; - - $element_values = ['id_service' => $created_service_id]; - - $element_type = (string) $items_array['type']; - - if (in_array($element_type, ['agent', 'module', 'dynamic', 'service']) === false) { - // Skip element creation if type not valid. - register_error( - DEMO_SERVICE, - __('Error in %s: the specified type of service item is not valid. All service items must have one of the following types: agent, module, dynamic, service. Skipping creation of item with index %d', $filename, ($item_access_idx - 1)) - ); - continue; - } - - if (in_array($element_type, ['agent', 'module']) === true) { - // Get agent ID and module ID. - $matched_agents = agents_get_agents( - ['nombre' => io_safe_input($items_array['agent_name'])], - ['id_agente'], - 'AR', - [ - 'field' => 'nombre', - 'order' => 'ASC', - ], - false, - 0, - false, - false, - false - ); - - $matched_agent = $matched_agents[0]['id_agente']; - - if (isset($matched_agent) === true && $matched_agent > 0) { - $element_values['id_agent'] = $matched_agent; - } else { - // Skip element creation if agent does not exist. - register_error( - DEMO_SERVICE, - __('Error in %s: the specified agent does not exist in the system: %s. Skipping creation of item with index %d', $filename, $items_array['agent_name'], ($item_access_idx - 1)) - ); - continue; - } - } - - if (in_array($element_type, ['module']) === true) { - if ($element_values['id_agent'] > 0) { - $module_id = db_get_value_sql('SELECT id_agente_modulo FROM tagente_modulo WHERE nombre = "'.io_safe_input($items_array['module']).'" AND id_agente = '.$element_values['id_agent']); - - if ($module_id > 0) { - $element_values['id_agente_modulo'] = $module_id; - } else { - // Skip element creation if agent module does not exist. - register_error( - DEMO_SERVICE, - __('Error in %s: the specified agent module does not exist in the system: %s. Skipping creation of item with index %d', $filename, $items_array['module'], ($item_access_idx - 1)) - ); - continue; - } - } else { - continue; - } - } - - if ($element_type === 'dynamic') { - if ($service_values['auto_calculate'] === 1) { - if (isset($items_array['match']) === false - || ($items_array['match'] !== 'agent' && $items_array['match'] !== 'module') - ) { - // If failed to provide match value, 'agent' is assigned by default. - $match_value = 'agent'; - } else { - $match_value = $items_array['match']; - } - - if (isset($items_array['group']) === true) { - $group_id_value = get_group_or_create_demo_group($items_array['group']); - - if ($group_id_value === false) { - $group_id_value = -1; - } - } else { - $group_id_value = -1; - } - - $element_values['id_agent'] = 0; - $element_values['id_agente_modulo'] = 0; - - $rules_arr = [ - 'dynamic_type' => $match_value, - 'group' => $group_id_value, - 'agent_name' => (isset($items_array['agent_name']) === true) ? $items_array['agent_name'] : '', - 'module_name' => (isset($items_array['module']) === true) ? $items_array['module'] : '', - 'regex_mode' => (isset($items_array['regex']) === true) ? $items_array['regex'] : false, - 'custom_fields' => [], - ]; - - $element_values['rules'] = base64_encode(json_encode($rules_arr)); - } - } - - if ($element_type === 'service') { - if (isset($items_array['service_name']) === true - && is_string($items_array['service_name']) === true - ) { - $services = services_get_services(['name' => io_safe_input($items_array['service_name'])]); - - $service_id = $services[0]['id']; - - if ($service_id > 0) { - $element_values['id_service_child'] = $service_id; - } else { - // Skip element creation if specified service does not exist. - register_error( - DEMO_SERVICE, - __('Error in %s: the specified service does not exist in the system: %s. Skipping creation of item with index %d', $filename, $items_array['service_name'], ($item_access_idx - 1)) - ); - continue; - } - } else { - // Skip element creation if service name was not provided. - continue; - } - } - - $id = db_process_sql_insert('tservice_element', $element_values); - - if ($id > 0) { - // Register created demo item in tdemo_data. - $values = [ - 'item_id' => $id, - 'table_name' => 'tservice_element', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback service element if could not be registered in tdemo_data. - db_process_sql_delete('tservice_element', ['id' => $id]); - - register_error( - DEMO_SERVICE, - __('Uncaught error (source %s): could not create service item with index %d', $filename, ($item_access_idx - 1)) - ); - - continue; - } - } else { - register_error( - DEMO_SERVICE, - __('Uncaught error (source %s): could not create service item with index %d', $filename, ($item_access_idx - 1)) - ); - } - } - } - } + import_demo_prds(DEMO_SERVICE, $parsed_ini['services'], $prd); update_progress($total_items_count, $services_count, $services_count); update_item_checked(DEMO_SERVICE); @@ -1337,243 +957,7 @@ if ($action === 'create_demo_data') { $nm_count = count(($parsed_ini['network_maps'] ?? [])); if ($nm_count > 0) { // Create network maps. - foreach ($parsed_ini['network_maps'] as $ini_nm_data) { - $filename = $ini_nm_data['filename']; - $map_data = $ini_nm_data['map_data']; - $map_items = $ini_nm_data['map_items']; - - if (isset($map_data['name']) === false - || is_string($map_data['name']) === false - || isset($map_data['group']) === false - || is_string($map_data['group']) === false - ) { - register_error( - DEMO_NETWORK_MAP, - __('Error in %s: name and/or group is not specified or does not have a valid format. Skipping network map creation', $filename) - ); - continue; - } - - $map_types = [ - 'circular' => 0, - 'radial_dynamic' => 6, - ]; - - $nm_name = $map_data['name']; - $nm_group = $map_data['group']; - $nm_description = (isset($map_data['description']) === true) ? $map_data['description'] : ''; - $nm_node_radius = (isset($map_data['node_radius']) === true) ? $map_data['node_radius'] : '40'; - $nm_generation_method = (isset($map_data['generation_method']) === true && isset($map_types[$map_data['generation_method']]) === true) ? $map_types[$map_data['generation_method']] : '0'; - - $nm_id_group = get_group_or_create_demo_group($nm_group); - - if ($nm_id_group === false) { - // Group could not be created. Skip network map creation. - register_error( - DEMO_NETWORK_MAP, - __('Error in %s: the specified group does not exist in the system and could not be created. Skipping service creation', $filename) - ); - continue; - } - - $values = []; - $new_map_filter = []; - $new_map_filter['dont_show_subgroups'] = 0; - $new_map_filter['node_radius'] = $nm_node_radius; - $new_map_filter['x_offs'] = 0; - $new_map_filter['y_offs'] = 0; - $new_map_filter['z_dash'] = '0.5'; - $new_map_filter['node_sep'] = '0.25'; - $new_map_filter['rank_sep'] = '0.25'; - $new_map_filter['mindist'] = 1; - $new_map_filter['kval'] = '0.3'; - $values['filter'] = json_encode($new_map_filter); - $values['description'] = io_safe_input($nm_description); - $values['id_group'] = $nm_id_group; - $values['id_group_map'] = $nm_id_group; - $values['source_data'] = $nm_id_group; - $values['name'] = io_safe_input($nm_name); - $values['refresh_time'] = 300; - $values['generation_method'] = $nm_generation_method; - - $id_map = db_process_sql_insert('tmap', $values); - - if ($id_map > 0) { - // Register created map in tdemo_data. - $values = [ - 'item_id' => $id_map, - 'table_name' => 'tmap', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback demo item creation if could not be registered in tdemo_data. - db_process_sql_delete('tmap', ['id' => $id_map]); - - register_error( - DEMO_NETWORK_MAP, - __('Uncaught error (source %s): could not create network map %s', $filename, $nm_name) - ); - - continue; - } - } else { - // Network map group could not be created. Skip creation of map. - register_error( - DEMO_NETWORK_MAP, - __('Uncaught error (source %s): could not create network map %s', $filename, $nm_name) - ); - continue; - } - - if (count($map_items) > 0) { - $item_access_idx = 1; - $map_id_index = []; - - while (1) { - $items_array = []; - foreach ($map_items as $key => $value) { - $items_array[$key] = ($value[$item_access_idx] ?? null); - } - - $item_access_idx++; - - $test_empty_array = array_filter($items_array); - - if (empty($test_empty_array) === true) { - break; - } - - $item_values = []; - - $item_values['id_map'] = $id_map; - - if (isset($items_array['agent_name']) === true || is_string($items_array['agent_name']) === false) { - $matched_agents = agents_get_agents( - ['nombre' => $items_array['agent_name']], - [ - 'id_agente', - 'id_os', - 'alias', - ], - 'AR', - [ - 'field' => 'nombre', - 'order' => 'ASC', - ], - false, - 0, - false, - false, - false - ); - - $matched_agent = $matched_agents[0]['id_agente']; - $alias = $matched_agents[0]['alias']; - if (isset($matched_agent) === true && $matched_agent > 0) { - $item_values['source_data'] = $matched_agent; - if (isset($matched_agents[0]['id_agente']) === true && $matched_agents[0]['id_os']) { - $agent_os_id = $matched_agents[0]['id_os']; - $icon_name = db_get_value('icon_name', 'tconfig_os', 'id_os', $agent_os_id); - } - } else { - // Skip report item creation if agent does not exist. - register_error( - DEMO_NETWORK_MAP, - __('Error in %s: the specified agent does not exist in the system: %s. Skipping creation of item with index %d', $filename, $items_array['agent_name'], ($item_access_idx - 1)) - ); - - continue; - } - } else { - register_error( - DEMO_NETWORK_MAP, - __('Error in %s: all network map items must have the following required fields: agent_name. Skipping creation of item with index %d', $filename, ($item_access_idx - 1)) - ); - - continue; - } - - $style_values = [ - 'shape' => 'circle', - 'image' => 'images/networkmap/'.$icon_name, - 'width' => null, - 'height' => null, - 'label' => $alias, - ]; - - $item_values['style'] = json_encode($style_values); - $item_values['x'] = (isset($items_array['x']) === true) ? $items_array['x'] : '0'; - $item_values['y'] = (isset($items_array['y']) === true) ? $items_array['y'] : '0'; - - $created_nm_item_id = db_process_sql_insert('titem', $item_values); - - if ($created_nm_item_id > 0) { - // Register created demo item in tdemo_data. - $values = [ - 'item_id' => $created_nm_item_id, - 'table_name' => 'titem', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback demo item if could not be registered in tdemo_data. - db_process_sql_delete('titem', ['id' => $created_nm_item_id]); - - register_error( - DEMO_NETWORK_MAP, - __('Uncaught error (source %s): could not create network map item with index %d', $filename, ($item_access_idx - 1)) - ); - - continue; - } - - $map_id_index[($item_access_idx - 1)] = $created_nm_item_id; - - if (isset($items_array['parent']) === true && (int) $items_array['parent'] > 0) { - $parent_nm_id = $map_id_index[(int) $items_array['parent']]; - $parent_nm_source_data = db_get_value('source_data', 'titem', 'id', $parent_nm_id); - - $rel_values = [ - 'id_parent' => $parent_nm_id, - 'id_child' => $created_nm_item_id, - 'id_map' => $id_map, - 'id_parent_source_data' => $parent_nm_source_data, - 'id_child_source_data' => $item_values['source_data'], - ]; - - $created_nm_rel_item_id = db_process_sql_insert('trel_item', $rel_values); - - if ($created_nm_rel_item_id > 0) { - // Register created demo item in tdemo_data. - $values = [ - 'item_id' => $created_nm_rel_item_id, - 'table_name' => 'trel_item', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback demo item if could not be registered in tdemo_data. - db_process_sql_delete('trel_item', ['id' => $created_nm_rel_item_id]); - - register_error( - DEMO_NETWORK_MAP, - __('Uncaught error (source %s): could not create network map item with index %d', $filename, ($item_access_idx - 1)) - ); - - continue; - } - } - } - } else { - register_error( - DEMO_NETWORK_MAP, - __('Uncaught error (source %s): could not create network map item with index %d', $filename, ($item_access_idx - 1)) - ); - } - } - } - } + import_demo_prds(DEMO_NETWORK_MAP, $parsed_ini['network_maps'], $prd); update_progress($total_items_count, $nm_count, $nm_count); update_item_checked(DEMO_NETWORK_MAP); @@ -1593,155 +977,7 @@ if ($action === 'create_demo_data') { } // Create GIS maps. - foreach ($parsed_ini['gis_maps'] as $ini_gis_data) { - $filename = $ini_gis_data['filename']; - $gis_data = $ini_gis_data['gis_data']; - $gis_layers = $ini_gis_data['gis_layers']; - - if (isset($gis_data['name']) === false - || is_string($gis_data['name']) === false - || isset($gis_data['group']) === false - || is_string($gis_data['group']) === false - ) { - register_error( - DEMO_GIS_MAP, - __('Error in %s: name and/or group is not specified or does not have a valid format. Skipping GIS map creation', $filename) - ); - continue; - } - - $gis_name = $gis_data['name']; - $gis_group = $gis_data['group']; - $gis_zoom_level = (isset($gis_data['zoom_level']) === true) ? $gis_data['zoom_level'] : '6'; - $gis_initial_latitude = (isset($gis_data['initial_latitude']) === true) ? $gis_data['initial_latitude'] : '0'; - $gis_initial_longitude = (isset($gis_data['initial_longitude']) === true) ? $gis_data['initial_longitude'] : '0'; - $gis_initial_altitude = (isset($gis_data['initial_altitude']) === true) ? $gis_data['initial_altitude'] : '0'; - $gis_default_latitude = (isset($gis_data['default_latitude']) === true) ? $gis_data['default_latitude'] : '0'; - $gis_default_longitude = (isset($gis_data['default_longitude']) === true) ? $gis_data['default_longitude'] : '0'; - $gis_default_altitude = (isset($gis_data['default_altitude']) === true) ? $gis_data['default_altitude'] : '0'; - - $gis_id_group = get_group_or_create_demo_group($gis_group); - - if ($gis_id_group === false) { - // Group could not be created. Skip GIS map creation. - register_error( - DEMO_GIS_MAP, - __('Error in %s: the specified group does not exist in the system and could not be created. Skipping GIS map creation', $filename) - ); - continue; - } - - $values = []; - $values['map_name'] = io_safe_input($gis_name); - $values['group_id'] = $gis_id_group; - $values['zoom_level'] = $gis_zoom_level; - $values['initial_latitude'] = $gis_initial_latitude; - $values['initial_longitude'] = $gis_initial_longitude; - $values['initial_altitude'] = $gis_initial_altitude; - $values['default_latitude'] = $gis_default_latitude; - $values['default_longitude'] = $gis_default_longitude; - $values['default_altitude'] = $gis_default_altitude; - - $id_map = db_process_sql_insert('tgis_map', $values); - - if ($id_map > 0) { - // Register created map in tdemo_data. - $values = [ - 'item_id' => $id_map, - 'table_name' => 'tgis_map', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback demo item creation if could not be registered in tdemo_data. - db_process_sql_delete('tgis_map', ['id_tgis_map' => $id_map]); - - register_error( - DEMO_GIS_MAP, - __('Uncaught error (source %s): could not create GIS map %s', $filename, $gis_name) - ); - - continue; - } - } else { - // Network map group could not be created. Skip creation of map. - register_error( - DEMO_GIS_MAP, - __('Uncaught error (source %s): could not create GIS map %s', $filename, $gis_name) - ); - continue; - } - - $values = []; - $values['tgis_map_id_tgis_map'] = $id_map; - $values['tgis_map_con_id_tmap_con'] = 1; - - db_process_sql_insert('tgis_map_has_tgis_map_con', $values); - - if (count($gis_layers) > 0) { - $item_access_idx = 1; - - while (1) { - $items_array = []; - foreach ($gis_layers as $key => $value) { - $items_array[$key] = ($value[$item_access_idx] ?? null); - } - - $item_access_idx++; - - $test_empty_array = array_filter($items_array); - - if (empty($test_empty_array) === true) { - break; - } - - $item_values = []; - - $layer_order = ($item_access_idx - 2); - - $item_values['tgis_map_id_tgis_map'] = $id_map; - $item_values['layer_stack_order'] = $layer_order; - $item_values['tgrupo_id_grupo'] = -1; - $item_values['view_layer'] = 1; - $item_values['layer_name'] = io_safe_input((isset($items_array['name']) === true) ? $items_array['name'] : ('layer-' - $layer_order)); - - if (isset($items_array['group']) === true) { - $layer_id_group = get_group_or_create_demo_group($items_array['group']); - if ($layer_id_group !== false) { - $item_values['tgrupo_id_grupo'] = $layer_id_group; - } - } - - $created_gis_layer_id = db_process_sql_insert('tgis_map_layer', $item_values); - - if ($created_gis_layer_id > 0) { - // Register created demo item in tdemo_data. - $values = [ - 'item_id' => $created_gis_layer_id, - 'table_name' => 'tgis_map_layer', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback demo item if could not be registered in tdemo_data. - db_process_sql_delete('tgis_map_layer', ['id_tmap_layer' => $created_gis_layer_id]); - - register_error( - DEMO_GIS_MAP, - __('Uncaught error (source %s): could not create GIS map item with index %d', $filename, ($item_access_idx - 1)) - ); - - continue; - } - } else { - register_error( - DEMO_GIS_MAP, - __('Uncaught error (source %s): could not create GIS map item with index %d', $filename, ($item_access_idx - 1)) - ); - } - } - } - } + import_demo_prds(DEMO_GIS_MAP, $parsed_ini['gis_maps'], $prd); update_progress($total_items_count, $gis_count, $gis_count); update_item_checked(DEMO_GIS_MAP); @@ -1751,183 +987,8 @@ if ($action === 'create_demo_data') { $cg_count = count(($parsed_ini['graphs'] ?? [])); if ($cg_count > 0) { - // Create graphs. - foreach ($parsed_ini['graphs'] as $ini_graph_data) { - // Constant graph types. - $graph_types = [ - 'line' => 2, - 'area' => 0, - 's_line' => 3, - 's_area' => 1, - 'h_bars' => 6, - 'v_bars' => 7, - 'gauge' => 5, - 'pie' => 8, - ]; - - $filename = $ini_graph_data['filename']; - $graph_data = $ini_graph_data['graph_data']; - $graph_items = $ini_graph_data['graph_items']; - - $graph_name = $graph_data['name']; - $graph_group = $graph_data['group']; - $graph_description = $graph_data['description']; - $graph_type = (isset($graph_types[$graph_data['type']]) === true) ? $graph_types[$graph_data['type']] : 0; - $graph_periodicity = $graph_data['periodicity']; - - $graph_id_group = get_group_or_create_demo_group($graph_group); - - if ($graph_id_group === false) { - // Group could not be created. Skip graph creation. - register_error( - DEMO_CUSTOM_GRAPH, - __('Error in %s: the specified group does not exist in the system and could not be created. Skipping service creation', $filename) - ); - continue; - } - - $values = []; - $values['description'] = io_safe_input($graph_description); - $values['id_group'] = $graph_id_group; - $values['name'] = io_safe_input($graph_name); - $values['period'] = $graph_periodicity; - $values['stacked'] = $graph_type; - - $id_graph = db_process_sql_insert('tgraph', $values); - - if ($id_graph > 0) { - // Register created graph in tdemo_data. - $values = [ - 'item_id' => $id_graph, - 'table_name' => 'tgraph', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback graph creation if could not be registered in tdemo_data. - db_process_sql_delete('tgraph', ['id_graph' => $id_graph]); - - register_error( - DEMO_CUSTOM_GRAPH, - __('Uncaught error (source %s): could not create custom graph %s', $filename, $graph_name) - ); - - continue; - } - } else { - // Graph could not be created. Skip creation of graph. - register_error( - DEMO_CUSTOM_GRAPH, - __('Uncaught error (source %s): could not create custom graph %s', $filename, $graph_name) - ); - continue; - } - - if (count($graph_items) > 0) { - $item_access_idx = 1; - - while (1) { - $items_array = []; - foreach ($graph_items as $key => $value) { - $items_array[$key] = ($value[$item_access_idx] ?? null); - } - - $item_access_idx++; - - $test_empty_array = array_filter($items_array); - - if (empty($test_empty_array) === true) { - break; - } - - $item_values = []; - - if (isset($items_array['agent_name']) === false - || is_string($items_array['agent_name']) === false - || isset($items_array['module']) === false - || is_string($items_array['module']) === false - ) { - // Agent and module must be defined. Skip graph item creation. - register_error( - DEMO_CUSTOM_GRAPH, - __('Error in %s: one or more required fields (agent_name, module) were not found for custom graph item with index %d. Skipping creation of item with index %d', $filename, $item_access_idx, ($item_access_idx - 1)) - ); - continue; - } - - - $matched_agents = agents_get_agents( - ['nombre' => $items_array['agent_name']], - ['id_agente'], - 'AR', - [ - 'field' => 'nombre', - 'order' => 'ASC', - ], - false, - 0, - false, - false, - false - ); - $agent_id = $matched_agents[0]['id_agente']; - - if (!($agent_id > 0)) { - register_error( - DEMO_CUSTOM_GRAPH, - __('Error in %s: the specified agent does not exist in the system: %s. Skipping creation of item with index %d', $filename, $items_array['agent_name'], ($item_access_idx - 1)) - ); - continue; - } - - $module_row = modules_get_agentmodule_id(io_safe_input($items_array['module']), $agent_id); - - $module_id = $module_row['id_agente_modulo']; - - if (!($module_id > 0)) { - register_error( - DEMO_CUSTOM_GRAPH, - __('Error in %s: the specified agent module does not exist in the system: %s. Skipping creation of item with index %d', $filename, $items_array['module'], ($item_access_idx - 1)) - ); - continue; - } - - $item_values = [ - 'id_graph' => $id_graph, - 'id_agent_module' => $module_id, - 'weight' => 1, - ]; - - $created_graph_item_id = db_process_sql_insert('tgraph_source', $item_values); - - if ($created_graph_item_id > 0) { - // Register created demo item in tdemo_data. - $values = [ - 'item_id' => $created_graph_item_id, - 'table_name' => 'tgraph_source', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback demo item if could not be registered in tdemo_data. - db_process_sql_delete('tgraph_source', ['id_gs' => $created_graph_item_id]); - - register_error( - DEMO_CUSTOM_GRAPH, - __('Uncaught error (source %s): could not create custom graph item with index %d', $filename, ($item_access_idx - 1)) - ); - - continue; - } - } else { - register_error( - DEMO_CUSTOM_GRAPH, - __('Uncaught error (source %s): could not create custom graph item with index %d', $filename, ($item_access_idx - 1)) - ); - } - } - } - } + // Create custom graphs. + import_demo_prds(DEMO_CUSTOM_GRAPH, $parsed_ini['graphs'], $prd); update_progress($total_items_count, $cg_count, $cg_count); update_item_checked(DEMO_CUSTOM_GRAPH); @@ -1938,257 +999,7 @@ if ($action === 'create_demo_data') { $rep_count = count(($parsed_ini['reports'] ?? [])); if ($rep_count > 0) { // Create reports. - foreach ($parsed_ini['reports'] as $ini_report_data) { - $filename = $ini_report_data['filename']; - $report_data = $ini_report_data['report_data']; - $report_items = $ini_report_data['report_items']; - - // Check for mandatory fields. - if (isset($report_data['name']) === false - || is_string($report_data['name']) === false - || isset($report_data['group']) === false - || is_string($report_data['group']) === false - ) { - register_error( - DEMO_REPORT, - __('Error in %s: name and/or group is not specified or does not have a valid format. Skipping custom report creation', $filename) - ); - } - - $group_id = get_group_or_create_demo_group($report_data['group']); - - if ($group_id === false) { - // Could not create group. Skip report creation. - register_error( - DEMO_REPORT, - __('Error in %s: the specified group does not exist in the system and could not be created. Skipping service creation', $filename) - ); - continue; - } - - $report_values = []; - $report_values['id_group'] = $group_id; - $report_values['name'] = io_safe_input($report_data['name']); - $report_values['description'] = io_safe_input($report_data['description']); - - $created_report_id = db_process_sql_insert('treport', $report_values); - - if ($created_report_id > 0) { - // Register created graph in tdemo_data. - $values = [ - 'item_id' => $created_report_id, - 'table_name' => 'treport', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback report creation if could not be registered in tdemo_data. - db_process_sql_delete('treport', ['id_report' => $created_report_id]); - - register_error( - DEMO_REPORT, - __('Uncaught error (source %s): could not create custom report %s', $filename, $report_data['name']) - ); - - continue; - } - } else { - // Report could not be created. Skip creation of map. - register_error( - DEMO_REPORT, - __('Uncaught error (source %s): could not create custom report %s', $filename, $report_data['name']) - ); - continue; - } - - if (count($report_items) > 0) { - $item_access_idx = 1; - - while (1) { - $items_array = []; - foreach ($report_items as $key => $value) { - $items_array[$key] = ($value[$item_access_idx] ?? null); - } - - $item_access_idx++; - - $test_empty_array = array_filter($items_array); - - if (empty($test_empty_array) === true) { - break; - } - - if (isset($items_array['name']) === false - || is_string($items_array['name']) === false - || isset($items_array['type']) === false - || is_string($items_array['type']) === false - ) { - // All report items must have a type. - register_error( - DEMO_REPORT, - __('Error in %s: all custom report items must have the following required fields: name, type. Skipping creation of item with index %d', $filename, ($item_access_idx - 1)) - ); - continue; - } - - $item_values = []; - - $item_values['id_report'] = $created_report_id; - $item_values['name'] = io_safe_input($items_array['name']); - $item_values['type'] = $items_array['type']; - - if (isset($items_array['agent_name']) === true) { - if (isset($items_array['module']) === false - || is_string($items_array['module']) === false - ) { - continue; - } - - $matched_agents = agents_get_agents( - ['nombre' => $items_array['agent_name']], - ['id_agente'], - 'AR', - [ - 'field' => 'nombre', - 'order' => 'ASC', - ], - false, - 0, - false, - false, - false - ); - - $matched_agent = $matched_agents[0]['id_agente']; - if (isset($matched_agent) === true && $matched_agent > 0) { - $item_values['id_agent'] = $matched_agent; - } else { - // Skip report item creation if agent does not exist. - register_error( - DEMO_REPORT, - __('Error in %s: the specified agent does not exist in the system: %s. Skipping creation of item with index %d', $filename, $items_array['agent_name'], ($item_access_idx - 1)) - ); - continue; - } - } - - if (isset($items_array['module']) === true) { - if (is_string($items_array['module']) === false) { - // Module wrong data type read. Skip. - continue; - } - - if ($item_values['id_agent'] > 0) { - $module_id = db_get_value_sql('SELECT id_agente_modulo FROM tagente_modulo WHERE nombre = "'.io_safe_input($items_array['module']).'" AND id_agente = '.$item_values['id_agent']); - - if ($module_id > 0) { - $item_values['id_agent_module'] = $module_id; - } else { - // Skip report item creation if agent module does not exist. - register_error( - DEMO_REPORT, - __('Error in %s: the specified agent module does not exist in the system: %s. Skipping creation of item with index %d', $filename, $items_array['module'], ($item_access_idx - 1)) - ); - continue; - } - } else { - continue; - } - } - - if (isset($items_array['graph_name']) === true && is_string($items_array['graph_name']) === true) { - $id_custom_graph = reset(custom_graphs_search('', $items_array['graph_name']))['id_graph']; - - if ($id_custom_graph > 0) { - $item_values['id_gs'] = $id_custom_graph; - } else { - // Skip report item creation if specified custom graph does not exist. - register_error( - DEMO_REPORT, - __('Error in %s: the specified custom graph does not exist in the system: %s. Skipping creation of item with index %d', $filename, $items_array['graph_name'], ($item_access_idx - 1)) - ); - continue; - } - } - - if ($items_array['type'] === 'simple_graph') { - $item_values['style'] = '{"show_in_same_row":0,"hide_notinit_agents":0,"priority_mode":1,"dyn_height":"250","percentil":0,"fullscale":0,"image_threshold":0,"label":""}'; - } - - if ($items_array['type'] === 'custom_graph') { - $item_values['style'] = '{"show_in_same_row":0,"hide_notinit_agents":0,"priority_mode":"1","dyn_height":"250"}'; - } - - $item_values['period'] = (isset($items_array['periodicity']) === true) ? $items_array['periodicity'] : 300; - - $created_report_item_id = db_process_sql_insert('treport_content', $item_values); - - if ($created_report_item_id > 0) { - // Register created demo item in tdemo_data. - $values = [ - 'item_id' => $created_report_item_id, - 'table_name' => 'treport_content', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback report item if could not be registered in tdemo_data. - db_process_sql_delete('treport_content', ['id_rc' => $created_report_item_id]); - - register_error( - DEMO_REPORT, - __('Uncaught error (source %s): could not create custom report item with index %d', $filename, ($item_access_idx - 1)) - ); - - continue; - } - - if ($items_array['type'] === 'SLA') { - $sla_values = [ - 'id_report_content' => $created_report_item_id, - 'id_agent_module' => $item_values['id_agent_module'], - 'sla_limit' => 95, - ]; - - $created_report_content_sla_id = db_process_sql_insert('treport_content_sla_combined', $sla_values); - - if ($created_report_content_sla_id > 0) { - // Register created demo item in tdemo_data. - $values = [ - 'item_id' => $created_report_content_sla_id, - 'table_name' => 'treport_content_sla_combined', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback report item if could not be registered in tdemo_data. - db_process_sql_delete('treport_content_sla_combined', ['id' => $created_report_content_sla_id]); - - register_error( - DEMO_REPORT, - __('Uncaught error (source %s): could not create custom report item with index %d', $filename, ($item_access_idx - 1)) - ); - - continue; - } - } else { - register_error( - DEMO_REPORT, - __('Uncaught error (source %s): could not create custom report item with index %d', $filename, ($item_access_idx - 1)) - ); - - continue; - } - } - } else { - register_error( - DEMO_REPORT, - __('Uncaught error (source %s): could not create custom report item with index %d', $filename, ($item_access_idx - 1)) - ); - } - } - } - } + import_demo_prds(DEMO_REPORT, $parsed_ini['reports'], $prd); update_progress($total_items_count, $rep_count, $rep_count); update_item_checked(DEMO_REPORT); @@ -2199,620 +1010,7 @@ if ($action === 'create_demo_data') { $vc_count = count(($parsed_ini['visual_consoles'] ?? [])); if ($vc_count > 0) { // Create visual consoles. - foreach ($parsed_ini['visual_consoles'] as $ini_data) { - $filename = $ini_data['filename']; - $data = $ini_data['visual_console_data']; - $items = $ini_data['visual_console_items']; - - // Check for mandatory fields. - if (isset($data['name']) === false - || isset($data['group']) === false - ) { - // Name and group fields must be specified for vc. - register_error( - DEMO_VISUAL_CONSOLE, - __('Error in %s: name and/or group is not specified or does not have a valid format. Skipping visual console creation', $filename) - ); - continue; - } - - $id_group = get_group_or_create_demo_group($data['group']); - - if ($id_group === false) { - // Group could not be created. Skip dashboard creation. - register_error( - DEMO_VISUAL_CONSOLE, - __('Error in %s: the specified group does not exist in the system and could not be created. Skipping visual console creation', $filename) - ); - continue; - } - - $insert_values = []; - - $insert_values['name'] = io_safe_input($data['name']); - $insert_values['id_group'] = $id_group; - $insert_values['background'] = (isset($data['background']) === true) ? $data['background'] : 'None.png'; - $insert_values['background_color'] = (isset($data['background_color']) === true) ? $data['background_color'] : '#ffffff'; - $insert_values['width'] = (isset($data['width']) === true) ? $data['width'] : 1024; - $insert_values['height'] = (isset($data['height']) === true) ? $data['height'] : 768; - - $created_id = db_process_sql_insert('tlayout', $insert_values); - - if ($created_id > 0) { - // Register created item in tdemo_data. - $values = [ - 'item_id' => $created_id, - 'table_name' => 'tlayout', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback demo item creation if could not be registered in tdemo_data. - db_process_sql_delete('tlayout', ['id' => $created_id]); - - register_error( - DEMO_VISUAL_CONSOLE, - __('Uncaught error (source %s): could not create visual console %s', $filename, $insert_values['name']) - ); - - continue; - } - } else { - // VC could not be created. Skip creation of item. - register_error( - DEMO_VISUAL_CONSOLE, - __('Uncaught error (source %s): could not create visual console %s', $filename, $insert_values['name']) - ); - continue; - } - - if (count($items) > 0) { - $item_access_idx = 1; - while (1) { - $items_array = []; - foreach ($items as $key => $value) { - $items_array[$key] = ($value[$item_access_idx] ?? null); - } - - $item_access_idx++; - - $test_empty_array = array_filter($items_array); - - if (empty($test_empty_array) === true) { - break; - } - - if (isset($items_array['type']) === false) { - // All visual console items must have a type. - register_error( - DEMO_VISUAL_CONSOLE, - __('Error in %s: all visual console items must have the following required fields: type. Skipping creation of item with index %d', $filename, ($item_access_idx - 1)) - ); - continue; - } - - // Map used types. - $types = [ - 'static_image' => 0, - 'module_graph' => 1, - 'custom_graph' => 1, - 'value' => 2, - 'percentile' => 3, - 'label' => 4, - 'icon' => 5, - 'bubble' => 9, - 'box' => 12, - 'event_history' => 14, - 'circular_progress_bar' => 15, - 'circular_progress_bar_int' => 16, - 'color_cloud' => 20, - 'odometer' => 22, - 'basic_chart' => 23, - ]; - - $value_process_types = [ - 'max' => 6, - 'min' => 7, - 'avg' => 8, - ]; - - // Get ID of item type. Skip if it does not exist. - if (isset($types[$items_array['type']]) === false) { - register_error( - DEMO_VISUAL_CONSOLE, - __('Error in %s: the specified type is not a valid one. It must be one of the following values: static_image, module_graph, custom_graph, value, label, icon. Skipping creation of item with index %d', $filename, ($item_access_idx - 1)) - ); - continue; - } - - $element_values = []; - - $element_values['type'] = $types[$items_array['type']]; - if ($items_array['type'] == 'value') { - if (isset($items_array['process']) === true && isset($value_process_types[$items_array['process']])) { - $element_values['type'] = $value_process_types[$items_array['process']]; - - if (isset($items_array['interval']) === true) { - $element_values['period'] = $items_array['interval']; - } - } - } - - $element_values['id_layout'] = $created_id; - - if ($items_array['type'] === 'static_image') { - if (isset($items_array['image']) === false - || is_string($items_array['image']) === false - ) { - // The above fields are required for this item. - register_error( - DEMO_VISUAL_CONSOLE, - __('Error in %s: image field must be specified for static image item type. Skipping creation of item with index %d', $filename, ($item_access_idx - 1)) - ); - continue; - } - - $element_values['image'] = $items_array['image']; - - if (isset($items_array['agent_name']) === true) { - $matched_agents = agents_get_agents( - ['nombre' => $items_array['agent_name']], - ['id_agente'], - 'AR', - [ - 'field' => 'nombre', - 'order' => 'ASC', - ], - false, - 0, - false, - false, - false - ); - $agent_id = $matched_agents[0]['id_agente']; - - if (!($agent_id > 0)) { - continue; - } - - $element_values['id_agent'] = $agent_id; - - if (isset($items_array['module']) === true) { - $module_row = modules_get_agentmodule_id(io_safe_input($items_array['module']), $agent_id); - - $module_id = $module_row['id_agente_modulo']; - - if (!($module_id > 0)) { - continue; - } - - $element_values['id_agente_modulo'] = $module_id; - } - } - - if (isset($items_array['visual_console']) === true) { - $id_vc = db_get_value('id', 'tlayout', 'name', $items_array['visual_console']); - - if (!($id_vc > 0)) { - continue; - } - - $element_values['id_layout_linked'] = $id_vc; - } - } - - if ($items_array['type'] === 'module_graph') { - if (isset($items_array['agent_name']) === true) { - $matched_agents = agents_get_agents( - ['nombre' => $items_array['agent_name']], - ['id_agente'], - 'AR', - [ - 'field' => 'nombre', - 'order' => 'ASC', - ], - false, - 0, - false, - false, - false - ); - $agent_id = $matched_agents[0]['id_agente']; - - if (!($agent_id > 0)) { - continue; - } - - $element_values['id_agent'] = $agent_id; - - if (isset($items_array['module']) === true) { - $module_row = modules_get_agentmodule_id(io_safe_input($items_array['module']), $agent_id); - - $module_id = $module_row['id_agente_modulo']; - - if (!($module_id > 0)) { - continue; - } - - $element_values['id_agente_modulo'] = $module_id; - } - } - - if (isset($items_array['interval']) === true) { - $element_values['period'] = $items_array['interval']; - } - - if (isset($items_array['graph_type']) === true) { - $element_values['type_graph'] = $items_array['graph_type']; - } - - if (isset($items_array['image']) === true) { - $element_values['image'] = $items_array['image']; - } - } - - if ($items_array['type'] === 'custom_graph') { - if (isset($items_array['graph_name']) === true - && is_string($items_array['graph_name']) === true - ) { - $id_custom_graph = reset(custom_graphs_search('', $items_array['graph_name']))['id_graph']; - - if ($id_custom_graph > 0) { - $element_values['id_custom_graph'] = $id_custom_graph; - } else { - continue; - } - } - - if (isset($items_array['interval']) === true) { - $element_values['period'] = $items_array['interval']; - } - - if (isset($items_array['image']) === true) { - $element_values['image'] = $items_array['image']; - } - } - - if ($items_array['type'] === 'basic_chart') { - if (isset($items_array['agent_name']) === true) { - $matched_agents = agents_get_agents( - ['nombre' => $items_array['agent_name']], - ['id_agente'], - 'AR', - [ - 'field' => 'nombre', - 'order' => 'ASC', - ], - false, - 0, - false, - false, - false - ); - $agent_id = $matched_agents[0]['id_agente']; - - if (!($agent_id > 0)) { - continue; - } - - $element_values['id_agent'] = $agent_id; - - if (isset($items_array['module']) === true) { - $module_row = modules_get_agentmodule_id(io_safe_input($items_array['module']), $agent_id); - - $module_id = $module_row['id_agente_modulo']; - - if (!($module_id > 0)) { - continue; - } - - $element_values['id_agente_modulo'] = $module_id; - } - } - - if (isset($items_array['interval']) === true) { - $element_values['period'] = $items_array['interval']; - } - } - - if ($items_array['type'] === 'event_history') { - if (isset($items_array['agent_name']) === true) { - $matched_agents = agents_get_agents( - ['nombre' => $items_array['agent_name']], - ['id_agente'], - 'AR', - [ - 'field' => 'nombre', - 'order' => 'ASC', - ], - false, - 0, - false, - false, - false - ); - $agent_id = $matched_agents[0]['id_agente']; - - if (!($agent_id > 0)) { - continue; - } - - $element_values['id_agent'] = $agent_id; - - if (isset($items_array['module']) === true) { - $module_row = modules_get_agentmodule_id(io_safe_input($items_array['module']), $agent_id); - - $module_id = $module_row['id_agente_modulo']; - - if (!($module_id > 0)) { - continue; - } - - $element_values['id_agente_modulo'] = $module_id; - } - } - - if (isset($items_array['interval']) === true) { - $element_values['period'] = $items_array['interval']; - } - } - - if ($items_array['type'] === 'odometer') { - if (isset($items_array['agent_name']) === true) { - $matched_agents = agents_get_agents( - ['nombre' => $items_array['agent_name']], - ['id_agente'], - 'AR', - [ - 'field' => 'nombre', - 'order' => 'ASC', - ], - false, - 0, - false, - false, - false - ); - $agent_id = $matched_agents[0]['id_agente']; - - if (!($agent_id > 0)) { - continue; - } - - $element_values['id_agent'] = $agent_id; - - if (isset($items_array['module']) === true) { - $module_row = modules_get_agentmodule_id(io_safe_input($items_array['module']), $agent_id); - - $module_id = $module_row['id_agente_modulo']; - - if (!($module_id > 0)) { - continue; - } - - $element_values['id_agente_modulo'] = $module_id; - } - } - } - - if ($items_array['type'] === 'color_cloud') { - if (isset($items_array['agent_name']) === true) { - $matched_agents = agents_get_agents( - ['nombre' => $items_array['agent_name']], - ['id_agente'], - 'AR', - [ - 'field' => 'nombre', - 'order' => 'ASC', - ], - false, - 0, - false, - false, - false - ); - $agent_id = $matched_agents[0]['id_agente']; - - if (!($agent_id > 0)) { - continue; - } - - $element_values['id_agent'] = $agent_id; - - if (isset($items_array['module']) === true) { - $module_row = modules_get_agentmodule_id(io_safe_input($items_array['module']), $agent_id); - - $module_id = $module_row['id_agente_modulo']; - - if (!($module_id > 0)) { - continue; - } - - $element_values['id_agente_modulo'] = $module_id; - } - } - } - - if ($items_array['type'] === 'box') { - if (isset($items_array['border_color']) === true) { - $element_values['border_color'] = $items_array['border_color']; - } - - if (isset($items_array['fill_color']) === true) { - $element_values['fill_color'] = $items_array['fill_color']; - } - } - - if ($items_array['type'] === 'icon') { - if (isset($items_array['image']) === false - || is_string($items_array['image']) === false - ) { - // The above fields are required for this item. - register_error( - DEMO_VISUAL_CONSOLE, - __('Error in %s: image field must be specified for icon item type. Skipping creation of item with index %d', $filename, ($item_access_idx - 1)) - ); - continue; - } - - $element_values['image'] = $items_array['image']; - - if (isset($items_array['visual_console']) === true) { - $id_vc = db_get_value('id', 'tlayout', 'name', $items_array['visual_console']); - - if (!($id_vc > 0)) { - continue; - } - - $element_values['id_layout_linked'] = $id_vc; - } - } - - if ($items_array['type'] === 'value') { - if (isset($items_array['agent_name']) === true) { - $matched_agents = agents_get_agents( - ['nombre' => $items_array['agent_name']], - ['id_agente'], - 'AR', - [ - 'field' => 'nombre', - 'order' => 'ASC', - ], - false, - 0, - false, - false, - false - ); - $agent_id = $matched_agents[0]['id_agente']; - - if (!($agent_id > 0)) { - continue; - } - - $element_values['id_agent'] = $agent_id; - - if (isset($items_array['module']) === true) { - $module_row = modules_get_agentmodule_id(io_safe_input($items_array['module']), $agent_id); - - $module_id = $module_row['id_agente_modulo']; - - if (!($module_id > 0)) { - continue; - } - - $element_values['id_agente_modulo'] = $module_id; - } - } - } - - if (isset($items_array['label']) === true) { - $element_values['label'] = io_safe_input($items_array['label']); - } - - if (isset($items_array['label_position']) === true) { - $element_values['label_position'] = $items_array['label_position']; - } - - if (isset($items_array['x']) === true) { - $element_values['pos_x'] = $items_array['x']; - } - - if (isset($items_array['y']) === true) { - $element_values['pos_y'] = $items_array['y']; - } - - if (isset($items_array['width']) === true) { - $element_values['width'] = $items_array['width']; - } - - if (isset($items_array['height']) === true) { - $element_values['height'] = $items_array['height']; - } - - $element_values['show_on_top'] = (isset($items_array['show_on_top']) === true && $items_array['show_on_top'] === true) ? 1 : 0; - - // Check here percentile items as height is used for max value - if ($items_array['type'] === 'percentile' || $items_array['type'] === 'bubble' || $items_array['type'] === 'circular_progress_bar' || $items_array['type'] === 'circular_progress_bar_int') { - if (isset($items_array['agent_name']) === true) { - $matched_agents = agents_get_agents( - ['nombre' => $items_array['agent_name']], - ['id_agente'], - 'AR', - [ - 'field' => 'nombre', - 'order' => 'ASC', - ], - false, - 0, - false, - false, - false - ); - $agent_id = $matched_agents[0]['id_agente']; - - if (!($agent_id > 0)) { - continue; - } - - $element_values['id_agent'] = $agent_id; - - if (isset($items_array['module']) === true) { - $module_row = modules_get_agentmodule_id(io_safe_input($items_array['module']), $agent_id); - - $module_id = $module_row['id_agente_modulo']; - - if (!($module_id > 0)) { - continue; - } - - $element_values['id_agente_modulo'] = $module_id; - } - } - - $element_values['border_width'] = 0; - if (isset($items_array['min']) === true) { - $element_values['border_width'] = $items_array['min']; - } - - $element_values['height'] = 100; - if (isset($items_array['max']) === true) { - $element_values['height'] = $items_array['max']; - } - - $element_values['image'] = 'percent'; - } - - $id = db_process_sql_insert('tlayout_data', $element_values); - - if ($id > 0) { - // Register created demo item in tdemo_data. - $values = [ - 'item_id' => $id, - 'table_name' => 'tlayout_data', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback demo item if could not be registered in tdemo_data. - db_process_sql_delete('tlayout_data', ['id' => $id]); - - register_error( - DEMO_VISUAL_CONSOLE, - __('Uncaught error (source %s): could not create visual console item with index %d', $filename, ($item_access_idx - 1)) - ); - - continue; - } - } else { - register_error( - DEMO_VISUAL_CONSOLE, - __('Uncaught error (source %s): could not create visual console item with index %d', $filename, ($item_access_idx - 1)) - ); - } - } - } - } + import_demo_prds(DEMO_VISUAL_CONSOLE, $parsed_ini['visual_consoles'], $prd); update_progress($total_items_count, $vc_count, $vc_count); update_item_checked(DEMO_VISUAL_CONSOLE); @@ -2823,402 +1021,7 @@ if ($action === 'create_demo_data') { $dashboards_count = count(($parsed_ini['dashboards'] ?? [])); if ($dashboards_count > 0) { // Create dashboards. - foreach ($parsed_ini['dashboards'] as $ini_data) { - $data = $ini_data['dashboard_data']; - $items = $ini_data['dashboard_items']; - - // Check for mandatory fields. - if (isset($data['name']) === false - || isset($data['group']) === false - ) { - // Name and group fields must be specified for dashbaord. - continue; - } - - $id_group = get_group_or_create_demo_group($data['group']); - - if ($id_group === false) { - // Group could not be created. Skip dashboard creation. - continue; - } - - $insert_values = []; - - $insert_values['name'] = io_safe_input($data['name']); - $insert_values['id_group'] = $id_group; - - $created_id = db_process_sql_insert('tdashboard', $insert_values); - - if ($created_id > 0) { - // Register created item in tdemo_data. - $values = [ - 'item_id' => $created_id, - 'table_name' => 'tdashboard', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback demo item creation if could not be registered in tdemo_data. - db_process_sql_delete('tdashboard', ['id' => $created_id]); - continue; - } - } else { - // Dashboard could not be created. Skip creation of item. - continue; - } - - if (count($items) > 0) { - $item_access_idx = 1; - $order = -1; - while (1) { - $items_array = []; - foreach ($items as $key => $value) { - $items_array[$key] = ($value[$item_access_idx] ?? null); - } - - $item_access_idx++; - - $test_empty_array = array_filter($items_array); - - if (empty($test_empty_array) === true) { - break; - } - - if (isset($items_array['type']) === false || isset($items_array['title']) === false) { - // All dashboard widgets must have a type and a title. - continue; - } - - // Get ID of widget type. Skip if it does not exist. - $type_id = db_get_value('id', 'twidget', 'unique_name', $items_array['type']); - - if (!($type_id > 0)) { - continue; - } - - $title = io_safe_input($items_array['title']); - $element_values = []; - - if ($items_array['type'] === 'single_graph') { - if (isset($items_array['agent_name']) === false - || isset($items_array['module']) === false - ) { - // The above fields are required for this item. - continue; - } - - $matched_agents = agents_get_agents( - ['nombre' => $items_array['agent_name']], - ['id_agente'], - 'AR', - [ - 'field' => 'nombre', - 'order' => 'ASC', - ], - false, - 0, - false, - false, - false - ); - $agent_id = $matched_agents[0]['id_agente']; - - if (!($agent_id > 0)) { - continue; - } - - $module_row = modules_get_agentmodule_id(io_safe_input($items_array['module']), $agent_id); - - $module_id = $module_row['id_agente_modulo']; - - if (!($module_id > 0)) { - continue; - } - - $options_data = [ - 'title' => $title, - 'background' => '#ffffff', - 'agentId' => "$agent_id", - 'metaconsoleId' => 0, - 'moduleId' => "$module_id", - 'period' => (isset($items_array['interval']) === true) ? $items_array['interval'] : '86400', - 'showLegend' => 1, - 'projection_switch' => false, - 'period_projection' => '300', - ]; - - $order++; - } - - if ($items_array['type'] === 'custom_graph') { - if (isset($items_array['graph_name']) === false - || isset($items_array['graph_type']) === false - ) { - // The above fields are required for this item. - continue; - } - - // Try to get graph and skip if not exists. - $id_graph = db_get_value('id_graph', 'tgraph', 'name', io_safe_input($items_array['graph_name'])); - - if (!($id_graph > 0)) { - continue; - } - - $graph_types = [ - 'line' => 2, - 'area' => 0, - 's_line' => 3, - 's_area' => 1, - 'h_bars' => 6, - 'v_bars' => 7, - 'gauge' => 5, - 'pie' => 8, - ]; - - if (isset($graph_types[$items_array['graph_type']]) === true) { - $graph_type_id = $items_array['graph_type']; - } else { - // Specified graph type is not a valid one. - continue; - } - - $options_data = [ - 'title' => $title, - 'background' => '#ffffff', - 'id_graph' => $id_graph, - 'type' => $graph_type_id, - 'period' => (isset($items_array['interval']) === true) ? $items_array['interval'] : 86400, - 'showLegend' => 1, - ]; - - $order++; - } - - if ($items_array['type'] === 'reports') { - if (isset($items_array['report_name']) === false) { - // The above fields are required for this item. - continue; - } - - $id_report = reports_get_reports(['name' => io_safe_input($items_array['report_name'])], ['id_report'])[0]['id_report']; - - if (!($id_report > 0)) { - continue; - } - - $options_data = [ - 'title' => $title, - 'background' => '#ffffff', - 'reportId' => $id_report, - ]; - - $order++; - } - - if ($items_array['type'] === 'network_map') { - if (isset($items_array['map_name']) === false) { - // The above fields are required for this item. - continue; - } - - $id_map = db_get_value('id', 'tmap', 'name', io_safe_input($items_array['map_name'])); - - if (!($id_map > 0)) { - continue; - } - - $options_data = [ - 'title' => $title, - 'background' => '#ffffff', - 'networkmapId' => "$id_map", - 'xOffset' => '0', - 'yOffset' => '0', - 'zoomLevel' => 0.5, - ]; - - $order++; - } - - if ($items_array['type'] === 'service_map') { - if (isset($items_array['service_name']) === false) { - // The above fields are required for this item. - continue; - } - - $services = services_get_services(['name' => io_safe_input($items_array['service_name'])]); - - $service_id = $services[0]['id']; - - if (!($service_id > 0)) { - continue; - } - - $options_data = [ - 'title' => $title, - 'background' => '#ffffff', - 'serviceId' => "$service_id", - 'sunburst' => (isset($items_array['show_sunburst']) === true && $items_array['show_sunburst'] === true) ? 1 : 0, - ]; - - $order++; - } - - if ($items_array['type'] === 'system_group_status') { - $options_data = [ - 'title' => $title, - 'background' => '#ffffff', - 'groupId' => ['0'], - 'status' => ['4,1,0,2'], - 'sunburst' => false, - ]; - - $order++; - } - - if ($items_array['type'] === 'graph_module_histogram') { - if (isset($items_array['agent_name']) === false - || isset($items_array['module']) === false - ) { - // The above fields are required for this item. - continue; - } - - $matched_agents = agents_get_agents( - ['nombre' => $items_array['agent_name']], - ['id_agente'], - 'AR', - [ - 'field' => 'nombre', - 'order' => 'ASC', - ], - false, - 0, - false, - false, - false - ); - $agent_id = $matched_agents[0]['id_agente']; - - if (!($agent_id > 0)) { - continue; - } - - $module_row = modules_get_agentmodule_id(io_safe_input($items_array['module']), $agent_id); - - $module_id = $module_row['id_agente_modulo']; - - if (!($module_id > 0)) { - continue; - } - - $options_data = [ - 'title' => $title, - 'background' => '#ffffff', - 'agentId' => "$agent_id", - 'metaconsoleId' => 0, - 'moduleId' => "$module_id", - 'period' => (isset($items_array['interval']) === true) ? $items_array['interval'] : '86400', - 'sizeLabel' => 30, - ]; - - $order++; - } - - if ($items_array['type'] === 'events_list') { - $options_data = [ - 'title' => $title, - 'background' => '#ffffff', - 'eventType' => 0, - 'maxHours' => 8, - 'limit' => 20, - 'eventStatus' => -1, - 'severity' => -1, - 'groupId' => [''], - 'tagsId' => [''], - 'groupRecursion' => 0, - 'customFilter' => -1, - 'columns_events_widget' => [ - 'mini_severity,evento,estado,agent_name,timestamp', - '', - ], - ]; - - $order++; - } - - if ($items_array['type'] === 'top_n_events_by_group') { - $options_data = [ - 'title' => $title, - 'background' => '#ffffff', - 'amountShow' => 10, - 'maxHours' => 8, - 'groupId' => ['0'], - 'legendPosition' => 'bottom', - 'show_total_data' => 0, - ]; - - $order++; - } - - if ($items_array['type'] === 'top_n') { - $options_data = [ - 'title' => $title, - 'background' => '#ffffff', - 'agent' => (isset($items_array['agent_name']) === true) ? $items_array['agent_name'] : '.*', - 'module' => (isset($items_array['module']) === true) ? $items_array['module'] : '.*', - 'period' => (isset($items_array['interval']) === true) ? $items_array['interval'] : '86400', - 'quantity' => '10', - 'order' => '2', - 'display' => '0', - 'type_graph' => 'bar_vertical', - 'legend' => 'agent_module', - ]; - - $order++; - } - - $item_x = $items_array['x']; - $item_y = $items_array['y']; - $item_width = $items_array['width']; - $item_height = $items_array['height']; - - $position_data = [ - 'x' => (isset($items_array['x']) === true) ? "$item_x" : '0', - 'y' => (isset($items_array['y']) === true) ? "$item_y" : '0', - 'width' => (isset($items_array['width']) === true) ? "$item_width" : '4', - 'height' => (isset($items_array['height']) === true) ? "$item_height" : '4', - ]; - - $element_values = [ - 'position' => json_encode($position_data), - 'options' => json_encode($options_data), - 'order' => $order, - 'id_dashboard' => $created_id, - 'id_widget' => $type_id, - 'prop_width' => $items_array['width'], - 'prop_height' => $items_array['height'], - ]; - - $id = db_process_sql_insert('twidget_dashboard', $element_values); - - if ($id > 0) { - // Register created demo item in tdemo_data. - $values = [ - 'item_id' => $id, - 'table_name' => 'twidget_dashboard', - ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); - - if ($result === false) { - // Rollback demo item if could not be registered in tdemo_data. - db_process_sql_delete('twidget_dashboard', ['id' => $id]); - continue; - } - } - } - } - } + import_demo_prds(DEMO_DASHBOARD, $parsed_ini['dashboards'], $prd); update_progress($total_items_count, $dashboards_count, $dashboards_count); update_item_checked(DEMO_DASHBOARD); @@ -3367,71 +1170,77 @@ if ($action === 'cleanup_demo_data') { } ); - $items_delete_id_buffer = []; + $items_delete_id_bfr = []; foreach ($inventory_module_items as $item) { - $items_delete_id_buffer[] = $item['item_id']; + $items_delete_id_bfr[] = $item['item_id']; } - $in_clause = implode(',', $items_delete_id_buffer); - // Delete from tagente_datos_inventory. + $in_clause = implode(',', $items_delete_id_bfr); + // Delete data from tagente_datos_inventory given inventory module id. db_process_sql('DELETE FROM tagente_datos_inventory where id_agent_module_inventory IN ('.$in_clause.')'); - - $items_delete_id_buffer = []; + $items_delete_id_bfr = []; foreach ($module_items as $item) { - $items_delete_id_buffer[] = $item['item_id']; + $items_delete_id_bfr[] = $item['item_id']; } - $in_clause = implode(',', $items_delete_id_buffer); - // Delete from tagente_datos. + $in_clause = implode(',', $items_delete_id_bfr); + // Delete data from tagente_datos give agent module id. db_process_sql('DELETE FROM tagente_datos where id_agente_modulo IN ('.$in_clause.')'); - $items_delete_id_buffer = []; - - $table_id_field_dict = [ - 'tconfig_os' => 'id_os', - 'tagente' => 'id_agente', - 'tgrupo' => 'id_grupo', - 'tagente_modulo' => 'id_agente_modulo', - 'tmodule_inventory' => 'id_module_inventory', - 'tagent_module_inventory' => 'id_agent_module_inventory', - 'tgraph' => 'id_graph', - 'tmap' => 'id', - 'treport' => 'id_report', - 'treport_content' => 'id_rc', - 'treport_content_sla_combined' => 'id', - 'tservice' => 'id', - 'tservice_element' => 'id', - 'ttrap' => 'id_trap', - 'titem' => 'id', - 'tgraph_source' => 'id_gs', - 'twidget_dashboard' => 'id', - 'tdashboard' => 'id', - 'tlayout' => 'id', - 'tlayout_data' => 'id', - 'tagente_estado' => 'id_agente_estado', - 'trel_item' => 'id', - 'tplugin' => 'id', - 'tgis_data_status' => 'tagente_id_agente', - 'tgis_map' => 'id_tgis_map', - 'tgis_map_layer' => 'id_tmap_layer', - ]; + $items_delete_id_bfr = []; + $demo_items_delete_ids_bfr = []; foreach ($demo_items as $item) { - $items_delete_id_buffer[$item['table_name']][] = $item['item_id']; + $item_value_array = json_decode((string) $item['item_id'], true); + + if (is_array($item_value_array) === true) { + // Database items to delete per table. + $items_delete_id_bfr[$item['table_name']][] = $item_value_array; + $demo_items_delete_ids_bfr[$item['table_name']][] = $item['id']; + } } - foreach ($items_delete_id_buffer as $table_name => $ids_array) { + foreach ($items_delete_id_bfr as $table_name => $ids_per_table) { $all_success = true; - $in_clause = implode(',', $ids_array); - $table_id_field = $table_id_field_dict[$table_name]; - $all_success = db_process_sql('DELETE FROM '.$table_name.' WHERE '.$table_id_field.' IN ('.$in_clause.')'); + $where_array = []; + + foreach ($ids_per_table as $ids_array) { + foreach ($ids_array as $field_name => $item_id) { + if (isset($where_array[$field_name]) === false) { + $where_array[$field_name] = []; + } + + $where_array[$field_name][] = '"'.$item_id.'"'; + } + } + + $where_str = ''; + + $in_fields = implode(',', array_keys($where_array)); + + if (count($where_array) > 1) { + $pairs_array = createPairsFromArrays($where_array); + $in_ftd_pairs = array_map( + function ($inner_array) { + return '('.implode(',', $inner_array).')'; + }, + $pairs_array + ); + $where_str = '`('.$in_fields.')` IN ('.implode(',', $in_ftd_pairs).')'; + } else { + $where_str = '`'.$in_fields.'` IN ('.implode(',', reset($where_array)).')'; + } + + $all_success = db_process_sql('DELETE FROM '.$table_name.' WHERE '.$where_str); if ($all_success !== false) { - // Delete tdemo_data registers if there were no errors when deleting the environment demo items. - db_process_sql('DELETE FROM tdemo_data WHERE table_name="'.$table_name.'" AND item_id IN ('.$in_clause.')'); + $demo_items_delete_in_values = implode(',', $demo_items_delete_ids_bfr[$table_name]); + + // Delete tdemo_data registers belonging to current table. + db_process_sql('DELETE FROM tdemo_data WHERE table_name="'.$table_name.'" AND id IN ('.$demo_items_delete_in_values.')'); } } @@ -3439,6 +1248,7 @@ if ($action === 'cleanup_demo_data') { return; } + if ($action === 'get_progress') { $operation = (string) get_parameter('operation'); @@ -3732,3 +1542,35 @@ function register_error( config_update_value('demo_data_load_status', json_encode($current_load_data_arr)); } + + +/** + * AUXILIARY FUNCTION: Import PRD files. + * + * @param integer $item_id Item id. + * @param array $parsed_ini Parsed PRD files. + * @param object $prd Prd object. + * + * @return void + */ +function import_demo_prds($item_id, $parsed_ini, $prd) { + foreach ($parsed_ini as $ini_data) { + $filename = $ini_data['filename']; + $data = $ini_data['data']; + $result = $prd->importPrd($data); + if ($result['status'] === true) { + foreach ($result['items'] as $item) { + // Register created items in tdemo_data. + $values = [ + 'item_id' => json_encode($item[1]), + 'table_name' => $item[0], + ]; + $result = (bool) db_process_sql_insert('tdemo_data', $values); + } + } else { + foreach ($result['errors'] as $error) { + register_error($item_id, '['.$filename.'] '.$error); + } + } + } +} diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index 7c1638f8fa..ae8eebe27a 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -6942,3 +6942,32 @@ function get_defined_translation($string) } } } + + +function createPairsFromArrays(...$arrays) +{ + $resultArray = []; + + // Check if all arrays have the same length. + $lengths = array_map('count', $arrays); + + if (count(array_unique($lengths)) === 1) { + $count = $lengths[0]; + + for ($i = 0; $i < $count; $i++) { + // Build pairs and add to the result array. + $pair = array_map( + function ($array) use ($i) { + return $array[$i]; + }, + $arrays + ); + + $resultArray[] = $pair; + } + + return $resultArray; + } else { + return []; + } +} diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 12e1b2c474..5b9521dd4c 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -13530,23 +13530,39 @@ tr.shown td.details-control { animation: animate 1.2s linear infinite; margin: auto; } -.loader-small span { + +.loader-mini { + position: relative; + width: 30px; + height: 30px; + border-radius: 100%; + background: linear-gradient(#c0ccdc, #ffffff); + animation: animate 1.2s linear infinite; + margin: auto; +} + +.loader-small span, +.loader-mini span { position: absolute; width: 100%; height: 100%; border-radius: 100%; background: linear-gradient(#c0ccdc, #ffffff); } -.loader-small span:nth-child(1) { +.loader-small span:nth-child(1), +.loader-mini span:nth-child(1) { filter: blur(1px); } -.loader-small span:nth-child(2) { +.loader-small span:nth-child(2), +.loader-mini span:nth-child(2) { filter: blur(2px); } -.loader-small span:nth-child(3) { +.loader-small span:nth-child(3), +.loader-mini span:nth-child(3) { filter: blur(3px); } -.loader-small span:nth-child(4) { +.loader-small span:nth-child(4), +.loader-mini span:nth-child(4) { filter: blur(4px); } .loader-small:after { @@ -13561,6 +13577,18 @@ tr.shown td.details-control { border-radius: 50%; } +.loader-mini:after { + content: ""; + position: absolute; + top: 5px; + left: 5px; + right: 10px; + bottom: 10px; + background: white; + border: solid white 10px; + border-radius: 50%; +} + @keyframes animate { 0% { transform: rotate(0deg); From ecfef0da29205614a685d645f18d7440a0109a4e Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Fri, 9 Feb 2024 18:48:32 +0100 Subject: [PATCH 4/7] several changes --- pandora_console/extras/mr/68.sql | 2 +- .../include/ajax/demo_data.ajax.php | 35 ++++++++++--------- pandora_console/include/functions.php | 9 ++++- pandora_console/pandoradb.sql | 2 +- 4 files changed, 28 insertions(+), 20 deletions(-) diff --git a/pandora_console/extras/mr/68.sql b/pandora_console/extras/mr/68.sql index 07e6bdbf20..2373b80215 100644 --- a/pandora_console/extras/mr/68.sql +++ b/pandora_console/extras/mr/68.sql @@ -10,7 +10,7 @@ ALTER TABLE `tusuario` CHANGE COLUMN `metaconsole_data_section` `metaconsole_dat ALTER TABLE `tmensajes` ADD COLUMN `icon_notification` VARCHAR(250) NULL DEFAULT NULL AFTER `url`; -ALTER TABLE `tdemo_data` MODIFY `item_id` TEXT; +ALTER TABLE `tdemo_data` MODIFY `item_id` TEXT NOT NULL DEFAULT ''; UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_os": "',`item_id`,'"}') WHERE `table_name` = "tconfig_os" AND CAST(`item_id` AS UNSIGNED) != 0; UPDATE `tdemo_data` SET `item_id` = CONCAT('{"id_agente": "',`item_id`,'"}') WHERE `table_name` = "tagente" AND CAST(`item_id` AS UNSIGNED) != 0; diff --git a/pandora_console/include/ajax/demo_data.ajax.php b/pandora_console/include/ajax/demo_data.ajax.php index e598d5989d..d6ce2ab97a 100644 --- a/pandora_console/include/ajax/demo_data.ajax.php +++ b/pandora_console/include/ajax/demo_data.ajax.php @@ -214,10 +214,10 @@ if ($action === 'create_demo_data') { $max_agents_to_limit = ($total_agents_to_create - ($agent_created_total + $iter_agents_to_create)); } - $modules_data = $ini_agent_data['modules']; - $inventory = $ini_agent_data['inventory']; - $inventory_values = $ini_agent_data['inventory_values']; - $traps = $ini_agent_data['traps']; + $modules_data = $ini_agent_data['data']['modules']; + $inventory = $ini_agent_data['data']['inventory']; + $inventory_values = $ini_agent_data['data']['inventory_values']; + $traps = $ini_agent_data['data']['traps']; $address_network = $agent_data['address_network']; @@ -263,7 +263,7 @@ if ($action === 'create_demo_data') { if ($id_os > 0) { // Register created OS in tdemo_data. $values = [ - 'item_id' => $id_os, + 'item_id' => json_encode(['id_os' => $id_os]), 'table_name' => 'tconfig_os', ]; $result = (bool) db_process_sql_insert('tdemo_data', $values); @@ -351,7 +351,7 @@ if ($action === 'create_demo_data') { if ($created_agent_id > 0) { // Register created demo item in tdemo_data. $values = [ - 'item_id' => $created_agent_id, + 'item_id' => json_encode(['id_agente' => $created_agent_id]), 'table_name' => 'tagente', ]; $result = (bool) db_process_sql_insert('tdemo_data', $values); @@ -394,7 +394,7 @@ if ($action === 'create_demo_data') { if ($result !== false) { $values = [ - 'item_id' => $created_agent_id, + 'item_id' => json_encode(['tagente_id_agente' => $created_agent_id]), 'table_name' => 'tgis_data_status', ]; $result = (bool) db_process_sql_insert('tdemo_data', $values); @@ -484,7 +484,7 @@ if ($action === 'create_demo_data') { if ($created_mod_id > 0) { // Register created demo item in tdemo_data. $values = [ - 'item_id' => $created_mod_id, + 'item_id' => json_encode(['id_agente_modulo' => $created_mod_id]), 'table_name' => 'tagente_modulo', ]; @@ -584,7 +584,7 @@ if ($action === 'create_demo_data') { if ($update_status_res !== false) { // Register created demo item in tdemo_data. $values = [ - 'item_id' => $status_id, + 'item_id' => json_encode(['id_agente_estado' => $status_id]), 'table_name' => 'tagente_estado', ]; @@ -672,7 +672,7 @@ if ($action === 'create_demo_data') { if ($created_inventory_mod_id > 0) { // Register created demo item in tdemo_data. $values = [ - 'item_id' => $created_inventory_mod_id, + 'item_id' => json_encode(['id_module_inventory' => $created_inventory_mod_id]), 'table_name' => 'tmodule_inventory', ]; $result = (bool) db_process_sql_insert('tdemo_data', $values); @@ -739,7 +739,7 @@ if ($action === 'create_demo_data') { if ($created_module_inventory_id > 0) { // Register created demo item in tdemo_data. $values = [ - 'item_id' => $created_module_inventory_id, + 'item_id' => json_encode(['id_agent_module_inventory' => $created_module_inventory_id]), 'table_name' => 'tagent_module_inventory', ]; $result = (bool) db_process_sql_insert('tdemo_data', $values); @@ -1083,7 +1083,7 @@ if ($action === 'create_demo_data') { if ($created_plugin_id > 0) { // Register created item in tdemo_data. $values = [ - 'item_id' => $created_plugin_id, + 'item_id' => json_encode(['id' => $created_plugin_id]), 'table_name' => 'tplugin', ]; $result = (bool) db_process_sql_insert('tdemo_data', $values); @@ -1122,7 +1122,7 @@ if ($action === 'create_demo_data') { if ($id_plugin_module > 0) { // Register created item in tdemo_data. $values = [ - 'item_id' => $id_plugin_module, + 'item_id' => json_encode(['id_agente_modulo' => $id_plugin_module]), 'table_name' => 'tagente_modulo', ]; $result = (bool) db_process_sql_insert('tdemo_data', $values); @@ -1222,7 +1222,8 @@ if ($action === 'cleanup_demo_data') { $in_fields = implode(',', array_keys($where_array)); if (count($where_array) > 1) { - $pairs_array = createPairsFromArrays($where_array); + $pairs_array = createPairsFromArrays(array_values($where_array)); + $in_ftd_pairs = array_map( function ($inner_array) { return '('.implode(',', $inner_array).')'; @@ -1361,7 +1362,7 @@ function get_group_or_create_demo_group($name) if ($id_group > 0) { // Register created group in tdemo_data. $values = [ - 'item_id' => $id_group, + 'item_id' => json_encode(['id_grupo' => $id_group]), 'table_name' => 'tgrupo', ]; $result = (bool) db_process_sql_insert('tdemo_data', $values); @@ -1548,8 +1549,8 @@ function register_error( * AUXILIARY FUNCTION: Import PRD files. * * @param integer $item_id Item id. - * @param array $parsed_ini Parsed PRD files. - * @param object $prd Prd object. + * @param array $parsed_ini Parsed PRD files. + * @param object $prd Prd object. * * @return void */ diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index ae8eebe27a..65cf79ab62 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -6944,7 +6944,14 @@ function get_defined_translation($string) } -function createPairsFromArrays(...$arrays) +/** + * Merge any number of arrays by pairs of elements at the same index. + * + * @param array $arrays Arrays. + * + * @return array + */ +function createPairsFromArrays($arrays) { $resultArray = []; diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 0c2f58120c..3037b7f1a4 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -4561,7 +4561,7 @@ PRIMARY KEY (`id`) -- --------------------------------------------------------------------- CREATE TABLE IF NOT EXISTS `tdemo_data` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, - `item_id` INT UNSIGNED NULL DEFAULT NULL, + `item_id` TEXT NOT NULL DEFAULT '', `table_name` VARCHAR(64) NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; From 405f15f9f00c3a53255a767bab114006d50bbce2 Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Mon, 12 Feb 2024 13:52:45 +0100 Subject: [PATCH 5/7] minor fixes --- pandora_console/godmode/setup/demo.php | 49 -------- .../include/ajax/demo_data.ajax.php | 116 ++---------------- 2 files changed, 11 insertions(+), 154 deletions(-) diff --git a/pandora_console/godmode/setup/demo.php b/pandora_console/godmode/setup/demo.php index c39ef516e7..789c334dcb 100644 --- a/pandora_console/godmode/setup/demo.php +++ b/pandora_console/godmode/setup/demo.php @@ -368,26 +368,6 @@ if ($display_loading === true || $running_create === true || $running_delete === true ) ); - - - - /* - $table_adv->data['row4'][] = html_print_label_input_block( - __('Services agent name').ui_print_help_tip(__('If not set, %s will be used as the default agent', 'demo-global-agent-1'), true), - html_print_input_text( - 'service_agent_name', - $service_agent_name, - '', - 50, - 255, - true, - false, - false, - '', - 'w300px' - ) - ); - */ } $table_adv->data['row5'][] = html_print_label_input_block( @@ -450,24 +430,6 @@ if ($display_loading === true || $running_create === true || $running_delete === ) ); - /* - $table_adv->data['row11'][] = html_print_label_input_block( - __('Demo data plugin agent'), - html_print_input_text( - 'plugin_agent', - $plugin_agent, - '', - 50, - 255, - true, - false, - false, - '', - 'w300px' - ) - ); - */ - $table_adv->data['row12'][] = html_print_label_input_block( __('Traps target IP').ui_print_help_tip(__('All demo traps are generated using version 1'), true), html_print_input_text( @@ -576,12 +538,10 @@ if ($display_loading === true || $running_create === true || $running_delete === true ); - // echo ''; echo ''; } else { // Summary data. @@ -696,15 +656,6 @@ if ($display_loading === true || $running_create === true || $running_delete ===
      '; - - - - - // echo '
      '; - //echo ''.__('Active demo data summary').''; - // html_print_table($table_summary); - //echo '
      '; - echo $table_mkup; html_print_input_hidden('delete_data', 1); diff --git a/pandora_console/include/ajax/demo_data.ajax.php b/pandora_console/include/ajax/demo_data.ajax.php index d6ce2ab97a..57e6cbc906 100644 --- a/pandora_console/include/ajax/demo_data.ajax.php +++ b/pandora_console/include/ajax/demo_data.ajax.php @@ -113,29 +113,12 @@ if ($action === 'create_demo_data') { foreach ($files as $file) { $parsed_ini_data = parse_ini_file($directory_path.'/'.$file, true, INI_SCANNER_TYPED); - /*$data = parse_ini_file($directory_path.'/'.$file, true, INI_SCANNER_TYPED); - if ($data !== false) { - $msg = $prd->importPrd($data); - } else { - $msg = [ - 'status' => false, - 'items' => [], - 'errors' => ['Unexpected error: Unable to parse PRD file.'], - ]; - } - - $parsed_ini[$directory][] = array_merge( - ['filename' => $file], - $msg - );*/ - if ($parsed_ini_data !== false) { $parsed_ini[$directory][] = [ 'filename' => $file, 'data' => $parsed_ini_data, ]; } else { - //__('Unexpected error: Unable to parse PRD file.'); return; } } @@ -167,8 +150,7 @@ if ($action === 'create_demo_data') { $agent_created_total = 0; $agent_data_values_buffer = []; - // TRAPS HISTORY: Removed due to performance issues - // $agent_traps_values_buffer = []; + // TRAPS HISTORY: Removed due to performance issues. if ($total_agents_to_create > 0 && $agents_to_create > 0) { while ($agent_created_total < ($total_agents_to_create - 1)) { if (count($parsed_ini['agents']) === 0) { @@ -378,7 +360,7 @@ if ($action === 'create_demo_data') { continue; } - // Register GIS data + // Register GIS data. $values = [ 'tagente_id_agente' => $created_agent_id, 'current_longitude' => $longitude, @@ -774,83 +756,6 @@ if ($action === 'create_demo_data') { $utimestamp = time(); - - // TRAPS HISTORY: Removed due to performance issues - /* - for ($p = 0; $p < $back_periods; $p++) { - $trap_access_idx = 1; - - while (1) { - $traps_array = []; - - foreach ($traps as $key => $value) { - $traps_array[$key] = ($value[$trap_access_idx] ?? null); - } - - $trap_access_idx++; - $test_empty_array = array_filter($traps_array); - - if (empty($test_empty_array) === true) { - break; - } - - if (isset($traps_array['oid']) === false || is_string($traps_array['oid']) === false - || isset($traps_array['value']) === false || is_string($traps_array['value']) === false - || isset($traps_array['snmp_type']) === false || is_string($traps_array['snmp_type']) === false - || isset($traps_array['chance_percent']) === false || is_string($traps_array['chance_percent']) === false - ) { - register_error( - DEMO_AGENT, - __('Error in %s: all traps must have the following required fields: oid, value, snmp_type, chance_percent. Skipping creation of item with index %d', $filename, ($trap_access_idx - 1)), - true - ); - continue; - } - - $create_trap = false; - - $trap_creation_prob = (int) $traps_array['chance_percent']; - - if ($trap_creation_prob > 0) { - $randomNumber = rand(1, 100); - if ($randomNumber <= $trap_creation_prob) { - $create_trap = true; - } - } - - if ($create_trap === false) { - continue; - } - - $parsed = explode(';', $traps_array['value']); - - $data = ''; - if ((string) $parsed[0] === 'RANDOM') { - $data = rand($parsed[1], $parsed[2]); - } - - $values = [ - 'oid' => $traps_array['oid'], - 'source' => $host_address, - 'value' => $data, - 'type' => $traps_array['snmp_type'], - 'timestamp' => $current_date_time, - 'utimestamp' => $utimestamp, - ]; - - // Buffer history traps for later bulk insertion (performance reasons). - $agent_traps_values_buffer[] = $values; - } - - if ($adv_options_is_enabled === false - || ($adv_options_is_enabled === true && $history_is_enabled === true) - ) { - $date_time->sub(new DateInterval("PT{$interval}S")); - $current_date_time = $date_time->format('Y-m-d H:i:s'); - $utimestamp -= $interval; - } - } - */ } update_progress($total_items_count, $total_agents_to_create, $iter_agents_created); @@ -865,8 +770,7 @@ if ($action === 'create_demo_data') { } $agent_data_values_buffer_chunks = array_chunk($agent_data_values_buffer, 100000); - // TRAPS HISTORY: Removed due to performance issues - // $agent_traps_values_buffer_chunks = array_chunk($agent_traps_values_buffer, 100000); + // TRAPS HISTORY: Removed due to performance issues. foreach ($agent_data_values_buffer_chunks as $chunk) { // Bulk inserts (insert batches of up to 100,000 as a performance limit). mysql_db_process_sql_insert_multiple( @@ -967,7 +871,7 @@ if ($action === 'create_demo_data') { $gis_count = count(($parsed_ini['gis_maps'] ?? [])); if ($gis_count > 0) { - // Enable GIS features + // Enable GIS features. $token = 'activate_gis'; $activate_gis = db_get_value_filter('value', 'tconfig', ['token' => $token]); if ($activate_gis === false) { @@ -1230,7 +1134,7 @@ if ($action === 'cleanup_demo_data') { }, $pairs_array ); - $where_str = '`('.$in_fields.')` IN ('.implode(',', $in_ftd_pairs).')'; + $where_str = '('.$in_fields.') IN ('.implode(',', $in_ftd_pairs).')'; } else { $where_str = '`'.$in_fields.'` IN ('.implode(',', reset($where_array)).')'; } @@ -1548,13 +1452,14 @@ function register_error( /** * AUXILIARY FUNCTION: Import PRD files. * - * @param integer $item_id Item id. + * @param integer $item_id Item id. * @param array $parsed_ini Parsed PRD files. - * @param object $prd Prd object. + * @param object $prd Prd object. * * @return void */ -function import_demo_prds($item_id, $parsed_ini, $prd) { +function import_demo_prds($item_id, $parsed_ini, $prd) +{ foreach ($parsed_ini as $ini_data) { $filename = $ini_data['filename']; $data = $ini_data['data']; @@ -1566,7 +1471,8 @@ function import_demo_prds($item_id, $parsed_ini, $prd) { 'item_id' => json_encode($item[1]), 'table_name' => $item[0], ]; - $result = (bool) db_process_sql_insert('tdemo_data', $values); + + db_process_sql_insert('tdemo_data', $values); } } else { foreach ($result['errors'] as $error) { From e293bd6ca36f7a5d8d8ca677acc0f1accaeb528e Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Wed, 14 Feb 2024 10:10:39 +0100 Subject: [PATCH 6/7] changed prd --- .../demodata/dashboards/1-dashboard.prd | 132 +++++++++--------- 1 file changed, 66 insertions(+), 66 deletions(-) diff --git a/pandora_console/extras/demodata/dashboards/1-dashboard.prd b/pandora_console/extras/demodata/dashboards/1-dashboard.prd index ab8679e2aa..e4494a8dbb 100644 --- a/pandora_console/extras/demodata/dashboards/1-dashboard.prd +++ b/pandora_console/extras/demodata/dashboards/1-dashboard.prd @@ -5,79 +5,79 @@ name="Demo dashboard" [tdashboard] -id[3]="3" -name[3]="Demo dashboard" -id_user[3]="" -id_group[3]="{\"tgrupo\":{\"nombre\":\"Demo dashboard\"}}" -active[3]="0" -cells[3]="0" -cells_slideshow[3]="0" -date_range[3]="0" -date_from[3]="0" -date_to[3]="0" +id[14]="14" +name[14]="Demo dashboard" +id_user[14]="" +id_group[14]="0" +active[14]="0" +cells[14]="7" +cells_slideshow[14]="0" +date_range[14]="0" +date_from[14]="0" +date_to[14]="0" [twidget_dashboard] -id[18]="18" -position[18]="{\"x\":\"0\",\"y\":\"0\",\"width\":\"5\",\"height\":\"4\"}" -options[18]="{\"title\":\"Groups status\",\"background\":\"#ffffff\",\"groupId\":[\"0\"],\"status\":[\"4,1,0,2\"],\"sunburst\":false}" -order[18]="0" -id_dashboard[18]="3" -id_widget[18]="{\"twidget\":{\"unique_name\":\"system_group_status\"}}" -prop_width[18]="5" -prop_height[18]="4" +id[55]="55" +position[55]="{\"x\":\"0\",\"y\":\"0\",\"width\":\"5\",\"height\":\"4\"}" +options[55]="{\"title\":\"Groups status\",\"background\":\"#ffffff\",\"groupId\":[\"0\"],\"status\":[\"4,1,0,2\"],\"sunburst\":false}" +order[55]="0" +id_dashboard[55]="14" +id_widget[55]="{\"twidget\":{\"unique_name\":\"system_group_status\"}}" +prop_width[55]="5" +prop_height[55]="4" -id[19]="19" -position[19]="{\"x\":\"5\",\"y\":\"0\",\"width\":\"7\",\"height\":\"6\"}" -options[19]="{\"title\":\"Network map\",\"background\":\"#ffffff\",\"networkmapId\":\"3\",\"xOffset\":\"0\",\"yOffset\":\"0\",\"zoomLevel\":0.5}" -order[19]="1" -id_dashboard[19]="3" -id_widget[19]="{\"twidget\":{\"unique_name\":\"network_map\"}}" -prop_width[19]="7" -prop_height[19]="6" +id[56]="56" +position[56]="{\"x\":\"5\",\"y\":\"0\",\"width\":\"7\",\"height\":\"6\"}" +options[56]="{\"title\":\"Network map\",\"background\":\"#ffffff\",\"networkmapId\":{\"tmap\":{\"name\":\"Demo sunburst network map\"}},\"xOffset\":\"0\",\"yOffset\":\"0\",\"zoomLevel\":0.5}" +order[56]="1" +id_dashboard[56]="14" +id_widget[56]="{\"twidget\":{\"unique_name\":\"network_map\"}}" +prop_width[56]="7" +prop_height[56]="6" -id[20]="20" -position[20]="{\"x\":\"0\",\"y\":\"4\",\"width\":\"5\",\"height\":\"2\"}" -options[20]="{\"title\":\"Module histogram\",\"background\":\"#ffffff\",\"agentId\":\"3\",\"metaconsoleId\":0,\"moduleId\":\"124\",\"period\":\"86400\",\"sizeLabel\":30}" -order[20]="2" -id_dashboard[20]="3" -id_widget[20]="{\"twidget\":{\"unique_name\":\"graph_module_histogram\"}}" -prop_width[20]="5" -prop_height[20]="2" +id[57]="57" +position[57]="{\"x\":\"0\",\"y\":\"4\",\"width\":\"5\",\"height\":\"2\"}" +options[57]="{\"title\":\"Module histogram\",\"background\":\"#ffffff\",\"id_group\":\"\",\"label\":\"\",\"agentId\":{\"tagente\":{\"nombre\":\"demo-global-agent-1\"}},\"metaconsoleId\":\"0\",\"moduleId\":\"{\\"tagente_modulo\\":{\\"nombre\\":\\"Host Alive\\",\\"id_agente\\":{\\"tagente\\":{\\"nombre\\":\\"demo-global-agent-1\\"}}}}\",\"period\":\"86400\",\"sizeLabel\":\"30\"}" +order[57]="2" +id_dashboard[57]="14" +id_widget[57]="{\"twidget\":{\"unique_name\":\"graph_module_histogram\"}}" +prop_width[57]="5" +prop_height[57]="2" -id[21]="21" -position[21]="{\"x\":\"0\",\"y\":\"6\",\"width\":\"12\",\"height\":\"5\"}" -options[21]="{\"title\":\"List of latest events\",\"background\":\"#ffffff\",\"eventType\":0,\"maxHours\":8,\"limit\":20,\"eventStatus\":-1,\"severity\":-1,\"groupId\":[\"\"],\"tagsId\":[\"\"],\"groupRecursion\":0,\"customFilter\":-1,\"columns_events_widget\":[\"mini_severity,evento,estado,agent_name,timestamp\",\"\"]}" -order[21]="3" -id_dashboard[21]="3" -id_widget[21]="{\"twidget\":{\"unique_name\":\"events_list\"}}" -prop_width[21]="12" -prop_height[21]="5" +id[58]="58" +position[58]="{\"x\":\"0\",\"y\":\"6\",\"width\":\"12\",\"height\":\"5\"}" +options[58]="{\"title\":\"List of latest events\",\"background\":\"#ffffff\",\"eventType\":0,\"maxHours\":8,\"limit\":20,\"eventStatus\":-1,\"severity\":-1,\"groupId\":[\"\"],\"tagsId\":[\"\"],\"groupRecursion\":0,\"customFilter\":-1,\"columns_events_widget\":[\"mini_severity,evento,estado,agent_name,timestamp\",\"\"]}" +order[58]="3" +id_dashboard[58]="14" +id_widget[58]="{\"twidget\":{\"unique_name\":\"events_list\"}}" +prop_width[58]="12" +prop_height[58]="5" -id[22]="22" -position[22]="{\"x\":\"6\",\"y\":\"11\",\"width\":\"6\",\"height\":\"8\"}" -options[22]="{\"title\":\"Top N events by agent\",\"background\":\"#ffffff\",\"amountShow\":10,\"maxHours\":8,\"groupId\":[\"0\"],\"legendPosition\":\"bottom\",\"show_total_data\":0}" -order[22]="4" -id_dashboard[22]="3" -id_widget[22]="{\"twidget\":{\"unique_name\":\"top_n_events_by_group\"}}" -prop_width[22]="6" -prop_height[22]="8" +id[59]="59" +position[59]="{\"x\":\"6\",\"y\":\"11\",\"width\":\"6\",\"height\":\"8\"}" +options[59]="{\"title\":\"Top N events by agent\",\"background\":\"#ffffff\",\"amountShow\":10,\"maxHours\":8,\"groupId\":[\"0\"],\"legendPosition\":\"bottom\",\"show_total_data\":0}" +order[59]="5" +id_dashboard[59]="14" +id_widget[59]="{\"twidget\":{\"unique_name\":\"top_n_events_by_group\"}}" +prop_width[59]="6" +prop_height[59]="8" -id[23]="23" -position[23]="{\"x\":\"0\",\"y\":\"11\",\"width\":\"6\",\"height\":\"4\"}" -options[23]="{\"title\":\"Top N of agent modules\",\"background\":\"#ffffff\",\"agent\":\"cisco-.*\",\"module\":\".*ifOutOctets\",\"period\":\"86400\",\"quantity\":\"10\",\"order\":\"2\",\"display\":\"0\",\"type_graph\":\"bar_vertical\",\"legend\":\"agent_module\"}" -order[23]="5" -id_dashboard[23]="3" -id_widget[23]="{\"twidget\":{\"unique_name\":\"top_n\"}}" -prop_width[23]="6" -prop_height[23]="4" +id[60]="60" +position[60]="{\"x\":\"0\",\"y\":\"11\",\"width\":\"6\",\"height\":\"4\"}" +options[60]="{\"title\":\"Top N of agent modules\",\"background\":\"#ffffff\",\"agent\":\"cisco-.*\",\"module\":\".*ifOutOctets\",\"period\":\"86400\",\"quantity\":\"10\",\"order\":\"2\",\"display\":\"0\",\"type_graph\":\"bar_vertical\",\"legend\":\"agent_module\"}" +order[60]="4" +id_dashboard[60]="14" +id_widget[60]="{\"twidget\":{\"unique_name\":\"top_n\"}}" +prop_width[60]="6" +prop_height[60]="4" -id[24]="24" -position[24]="{\"x\":\"0\",\"y\":\"15\",\"width\":\"6\",\"height\":\"4\"}" -options[24]="{\"title\":\"Top N of agent modules\",\"background\":\"#ffffff\",\"agent\":\"cisco-.*\",\"module\":\".*ifInOctets\",\"period\":\"86400\",\"quantity\":\"10\",\"order\":\"2\",\"display\":\"0\",\"type_graph\":\"bar_vertical\",\"legend\":\"agent_module\"}" -order[24]="6" -id_dashboard[24]="3" -id_widget[24]="{\"twidget\":{\"unique_name\":\"top_n\"}}" -prop_width[24]="6" -prop_height[24]="4" +id[61]="61" +position[61]="{\"x\":\"0\",\"y\":\"15\",\"width\":\"6\",\"height\":\"4\"}" +options[61]="{\"title\":\"Top N of agent modules\",\"background\":\"#ffffff\",\"agent\":\"cisco-.*\",\"module\":\".*ifInOctets\",\"period\":\"86400\",\"quantity\":\"10\",\"order\":\"2\",\"display\":\"0\",\"type_graph\":\"bar_vertical\",\"legend\":\"agent_module\"}" +order[61]="6" +id_dashboard[61]="14" +id_widget[61]="{\"twidget\":{\"unique_name\":\"top_n\"}}" +prop_width[61]="6" +prop_height[61]="4" From e1419d29faa1d2ee17dfd10c1a7f0a1000db5555 Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Fri, 1 Mar 2024 13:10:07 +0100 Subject: [PATCH 7/7] removed debug change --- pandora_console/views/tacticalView/view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/views/tacticalView/view.php b/pandora_console/views/tacticalView/view.php index 78cfbe4416..1534d334a2 100644 --- a/pandora_console/views/tacticalView/view.php +++ b/pandora_console/views/tacticalView/view.php @@ -9,7 +9,7 @@
      - + title; ?>