From 329cafad4999ac325cb01768d2dd67767e21e65b Mon Sep 17 00:00:00 2001
From: "marcos.alconada"
Date: Wed, 11 Sep 2019 10:04:18 +0200
Subject: [PATCH 01/16] fixed fixed error on stop_downtime
---
pandora_server/util/pandora_manage.pl | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 98cca10392..8243053c37 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -4818,6 +4818,25 @@ sub cli_stop_downtime () {
my $current_time = time;
my $downtime_date_to = get_db_value ($dbh, 'SELECT date_to FROM tplanned_downtime WHERE id=?', $downtime_id);
+ my $type_execution = get_db_value ($dbh, 'SELECT type_execution FROM tplanned_downtime WHERE id=?', $downtime_id);
+
+ if($type_execution eq 'periodically'){
+
+ my $downtime_running = get_db_value ($dbh, 'SELECT executed FROM tplanned_downtime WHERE id=?', $downtime_id);
+ if($downtime_running == 1){
+ print_log "[INFO] Planned_downtime '$downtime_name' can't be stopped\n\n";
+ exit;
+ }
+ }
+
+
+
+ if($current_time >= $downtime_date_to) {
+ print_log "[INFO] Planned_downtime '$downtime_name' is already stopped\n\n";
+ exit;
+ }
+
+
if($current_time >= $downtime_date_to) {
print_log "[INFO] Planned_downtime '$downtime_name' is already stopped\n\n";
exit;
From d2b7ec7a6f7200f22cb9830ba6eefa575bdaf9d1 Mon Sep 17 00:00:00 2001
From: "marcos.alconada"
Date: Wed, 11 Sep 2019 10:06:08 +0200
Subject: [PATCH 02/16] deleted duplicated code
---
pandora_server/util/pandora_manage.pl | 8 --------
1 file changed, 8 deletions(-)
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index 8243053c37..d0a6d890cd 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -4829,14 +4829,6 @@ sub cli_stop_downtime () {
}
}
-
-
- if($current_time >= $downtime_date_to) {
- print_log "[INFO] Planned_downtime '$downtime_name' is already stopped\n\n";
- exit;
- }
-
-
if($current_time >= $downtime_date_to) {
print_log "[INFO] Planned_downtime '$downtime_name' is already stopped\n\n";
exit;
From 64e69da924f70785c256e2ade191d52750bba3fe Mon Sep 17 00:00:00 2001
From: "marcos.alconada"
Date: Wed, 11 Sep 2019 11:41:14 +0200
Subject: [PATCH 03/16] simplify code
---
pandora_server/util/pandora_manage.pl | 13 +++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index d0a6d890cd..c1a87d6454 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -4818,17 +4818,14 @@ sub cli_stop_downtime () {
my $current_time = time;
my $downtime_date_to = get_db_value ($dbh, 'SELECT date_to FROM tplanned_downtime WHERE id=?', $downtime_id);
- my $type_execution = get_db_value ($dbh, 'SELECT type_execution FROM tplanned_downtime WHERE id=?', $downtime_id);
-
- if($type_execution eq 'periodically'){
+ my $data = get_db_single_row ($dbh, 'SELECT type_execution, executed FROM tplanned_downtime WHERE id=?', $downtime_id);
- my $downtime_running = get_db_value ($dbh, 'SELECT executed FROM tplanned_downtime WHERE id=?', $downtime_id);
- if($downtime_running == 1){
- print_log "[INFO] Planned_downtime '$downtime_name' can't be stopped\n\n";
+ if( $data->{'type_execution'} eq 'periodically' && $data->{'executed'} == 1){
+ print_log "[ERROR] Planned_downtime '$downtime_name' cannot be stopped.\n";
+ print_log "[INFO] Periodical and running planned downtime cannot be stopped.\n\n";
exit;
- }
}
-
+
if($current_time >= $downtime_date_to) {
print_log "[INFO] Planned_downtime '$downtime_name' is already stopped\n\n";
exit;
From 47b61a20255165376045b2c6e87a63a38594bd0e Mon Sep 17 00:00:00 2001
From: "marcos.alconada"
Date: Wed, 11 Sep 2019 12:36:15 +0200
Subject: [PATCH 04/16] refactor --stop_downtime
---
pandora_server/util/pandora_manage.pl | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl
index c1a87d6454..3bd8012dfe 100755
--- a/pandora_server/util/pandora_manage.pl
+++ b/pandora_server/util/pandora_manage.pl
@@ -4816,9 +4816,8 @@ sub cli_stop_downtime () {
exist_check($downtime_id,'planned downtime',$downtime_id);
my $current_time = time;
- my $downtime_date_to = get_db_value ($dbh, 'SELECT date_to FROM tplanned_downtime WHERE id=?', $downtime_id);
- my $data = get_db_single_row ($dbh, 'SELECT type_execution, executed FROM tplanned_downtime WHERE id=?', $downtime_id);
+ my $data = get_db_single_row ($dbh, 'SELECT date_to, type_execution, executed FROM tplanned_downtime WHERE id=?', $downtime_id);
if( $data->{'type_execution'} eq 'periodically' && $data->{'executed'} == 1){
print_log "[ERROR] Planned_downtime '$downtime_name' cannot be stopped.\n";
@@ -4826,7 +4825,7 @@ sub cli_stop_downtime () {
exit;
}
- if($current_time >= $downtime_date_to) {
+ if($current_time >= $data->{'date_to'}) {
print_log "[INFO] Planned_downtime '$downtime_name' is already stopped\n\n";
exit;
}
From dd2ace99e12f8b976a4f4f658f2ada8dd91b3c71 Mon Sep 17 00:00:00 2001
From: Tatiana Llorente
Date: Fri, 11 Oct 2019 13:51:52 +0200
Subject: [PATCH 05/16] Check permissions to reset a network map - #4728
---
.../include/class/NetworkMap.class.php | 10 ++++++++
.../functions_pandora_networkmap.js | 23 +++++++++++++++++--
2 files changed, 31 insertions(+), 2 deletions(-)
diff --git a/pandora_console/include/class/NetworkMap.class.php b/pandora_console/include/class/NetworkMap.class.php
index 0011167308..505d057665 100644
--- a/pandora_console/include/class/NetworkMap.class.php
+++ b/pandora_console/include/class/NetworkMap.class.php
@@ -2642,8 +2642,17 @@ class NetworkMap
*/
public function loadMapData()
{
+ global $config;
+
$networkmap = $this->map;
+ // ACL.
+ $networkmap_write = check_acl(
+ $config['id_user'],
+ $networkmap['id_group'],
+ 'MW'
+ );
+
$simulate = false;
if (isset($networkmap['__simulated']) === false) {
$networkmap['filter'] = json_decode(
@@ -2711,6 +2720,7 @@ class NetworkMap
$output .= 'var networkmap_center = [ '.$networkmap['center_x'].', '.$networkmap['center_y']."];\n";
$output .= 'var networkmap_dimensions = [ '.$networkmap['width'].', '.$networkmap['height']."];\n";
$output .= 'var enterprise_installed = '.((int) enterprise_installed()).";\n";
+ $output .= 'var networkmap_write = '.$networkmap_write.";\n";
$output .= 'var node_radius = '.$networkmap['filter']['node_radius'].";\n";
$output .= 'var networkmap_holding_area_dimensions = '.json_encode($networkmap['filter']['holding_area']).";\n";
$output .= "var networkmap = {'nodes': [], 'links': []};\n";
diff --git a/pandora_console/include/javascript/functions_pandora_networkmap.js b/pandora_console/include/javascript/functions_pandora_networkmap.js
index e5a0b87f7e..5d3477dca1 100644
--- a/pandora_console/include/javascript/functions_pandora_networkmap.js
+++ b/pandora_console/include/javascript/functions_pandora_networkmap.js
@@ -14,6 +14,7 @@
/* global holding_area_dimensions */
/* global networkmap_id */
/* global enterprise_installed */
+/* global networkmap_write */
/* global force */
/* global layer_graph_nodes */
/* global layer_graph_links */
@@ -2087,7 +2088,12 @@ function show_menu(item, data) {
icon: "add_node",
disabled: function() {
if (enterprise_installed) {
- return false;
+ // Check if user can write network maps.
+ if (networkmap_write) {
+ return false;
+ } else {
+ return true;
+ }
} else {
return true;
}
@@ -2099,6 +2105,14 @@ function show_menu(item, data) {
items_list["center"] = {
name: set_center_menu,
icon: "center",
+ disabled: function() {
+ // Check if user can write network maps.
+ if (networkmap_write) {
+ return false;
+ } else {
+ return true;
+ }
+ },
callback: function(key, options) {
set_center(networkmap_id);
}
@@ -2136,7 +2150,12 @@ function show_menu(item, data) {
icon: "restart_map",
disabled: function() {
if (enterprise_installed) {
- return false;
+ // Check if user can write network maps.
+ if (networkmap_write) {
+ return false;
+ } else {
+ return true;
+ }
} else {
return true;
}
From 30caad5a6c2d296cc0ade118bbfa8dc55541dc70 Mon Sep 17 00:00:00 2001
From: Tatiana Llorente
Date: Tue, 15 Oct 2019 16:50:05 +0200
Subject: [PATCH 06/16] Added column cache_expiration in tlayout_template_data
in MR, migrate, and pandoradb.sql - #4810
---
pandora_console/extras/mr/33.sql | 5 +++++
.../extras/pandoradb_migrate_6.0_to_7.0.mysql.sql | 1 +
pandora_console/pandoradb.sql | 1 +
3 files changed, 7 insertions(+)
create mode 100644 pandora_console/extras/mr/33.sql
diff --git a/pandora_console/extras/mr/33.sql b/pandora_console/extras/mr/33.sql
new file mode 100644
index 0000000000..31af5570e4
--- /dev/null
+++ b/pandora_console/extras/mr/33.sql
@@ -0,0 +1,5 @@
+START TRANSACTION;
+
+ALTER TABLE `tlayout_template_data` ADD COLUMN `cache_expiration` INTEGER UNSIGNED NOT NULL DEFAULT 0;
+
+COMMIT;
diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql
index 6476e79e2b..d7e416c951 100644
--- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql
+++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql
@@ -1907,6 +1907,7 @@ CREATE TABLE IF NOT EXISTS `tlayout_template_data` (
`linked_layout_status_as_service_warning` FLOAT(20, 3) NOT NULL default 0,
`linked_layout_status_as_service_critical` FLOAT(20, 3) NOT NULL default 0,
`linked_layout_node_id` INT(10) NOT NULL default 0,
+ `cache_expiration` INTEGER UNSIGNED NOT NULL default 0,
PRIMARY KEY(`id`),
FOREIGN KEY (`id_layout_template`) REFERENCES tlayout_template(`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET=utf8;
diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql
index 3786c4dad3..3b11dccb4d 100644
--- a/pandora_console/pandoradb.sql
+++ b/pandora_console/pandoradb.sql
@@ -3522,6 +3522,7 @@ CREATE TABLE IF NOT EXISTS `tlayout_template_data` (
`time_format` varchar(60) NOT NULL default "time",
`timezone` varchar(60) NOT NULL default "Europe/Madrid",
`show_last_value` tinyint(1) UNSIGNED NULL default '0',
+ `cache_expiration` INTEGER UNSIGNED NOT NULL default 0,
PRIMARY KEY(`id`),
FOREIGN KEY (`id_layout_template`) REFERENCES tlayout_template(`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET=utf8;
From 7c39f3680ecfb74b60a94744b25b7aa3e8d4e705 Mon Sep 17 00:00:00 2001
From: Jose Gonzalez
Date: Tue, 22 Oct 2019 11:54:27 +0200
Subject: [PATCH 07/16] Added feature sample_agent
---
.../FreeBSD/pandora_server.conf.new | 9 ++
pandora_server/NetBSD/pandora_server.conf.new | 9 ++
pandora_server/bin/pandora_server | 8 ++
pandora_server/conf/pandora_server.conf.new | 9 ++
.../conf/pandora_server.conf.windows | 9 ++
pandora_server/lib/PandoraFMS/Config.pm | 14 ++-
pandora_server/lib/PandoraFMS/Core.pm | 87 ++++++++++++++++++-
7 files changed, 143 insertions(+), 2 deletions(-)
diff --git a/pandora_server/FreeBSD/pandora_server.conf.new b/pandora_server/FreeBSD/pandora_server.conf.new
index 93d9abbc75..01ff859fa5 100644
--- a/pandora_server/FreeBSD/pandora_server.conf.new
+++ b/pandora_server/FreeBSD/pandora_server.conf.new
@@ -348,6 +348,15 @@ self_monitoring 1
# Self monitoring interval (in seconds).
self_monitoring_interval 300
+# Pandora Sample Agent. If enabled, every 10 minutes, this embedded agent
+# will make sample data. Disabled by default.
+
+sample_agent 0
+
+# Pandora Sample Agent interval (in seconds).
+
+sample_agent_interval 600
+
# Update parent from the agent xml
#update_parent 1
diff --git a/pandora_server/NetBSD/pandora_server.conf.new b/pandora_server/NetBSD/pandora_server.conf.new
index 5f38a678da..66743aee36 100644
--- a/pandora_server/NetBSD/pandora_server.conf.new
+++ b/pandora_server/NetBSD/pandora_server.conf.new
@@ -340,6 +340,15 @@ restart_delay 60
self_monitoring 1
+# Pandora Sample Agent. If enabled, every 10 minutes, this embedded agent
+# will make sample data. Disabled by default.
+
+sample_agent 0
+
+# Pandora Sample Agent interval (in seconds).
+
+sample_agent_interval 600
+
# Update parent from the agent xml
#update_parent 1
diff --git a/pandora_server/bin/pandora_server b/pandora_server/bin/pandora_server
index a367eb7bca..d91b523da6 100755
--- a/pandora_server/bin/pandora_server
+++ b/pandora_server/bin/pandora_server
@@ -382,6 +382,14 @@ sub pandora_server_tasks ($) {
pandora_self_monitoring ($pa_config, $dbh);
}
+ # Pandora sample agent
+ if (defined($pa_config->{"sample_agent"})
+ && $pa_config->{"sample_agent"} == 1
+ && !is_metaconsole($pa_config)
+ && $counter % $pa_config->{"sample_agent_interval"} == 0) {
+ pandora_sample_agent ($pa_config);
+ }
+
# Avoid counter overflow
if ($counter >= ~0){
$counter = 0;
diff --git a/pandora_server/conf/pandora_server.conf.new b/pandora_server/conf/pandora_server.conf.new
index 3aa61de07f..7722f22962 100644
--- a/pandora_server/conf/pandora_server.conf.new
+++ b/pandora_server/conf/pandora_server.conf.new
@@ -376,6 +376,15 @@ self_monitoring 1
# Self monitoring interval (in seconds).
self_monitoring_interval 300
+# Pandora Sample Agent. If enabled, every 10 minutes, this embedded agent
+# will make sample data. Disabled by default.
+
+sample_agent 0
+
+# Pandora Sample Agent interval (in seconds).
+
+sample_agent_interval 600
+
# Update parent from the agent xml
#update_parent 1
diff --git a/pandora_server/conf/pandora_server.conf.windows b/pandora_server/conf/pandora_server.conf.windows
index c7c5db64b4..a7232e459c 100644
--- a/pandora_server/conf/pandora_server.conf.windows
+++ b/pandora_server/conf/pandora_server.conf.windows
@@ -330,6 +330,15 @@ restart_delay 60
# Self monitoring interval (in seconds).
#self_monitoring_interval 300
+# Pandora Sample Agent. If enabled, every 10 minutes, this embedded agent
+# will make sample data. Disabled by default.
+
+sample_agent 0
+
+# Pandora Sample Agent interval (in seconds).
+
+sample_agent_interval 600
+
# Update parent from the agent xml
#update_parent 1
diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm
index bedb8b7e70..7b5d6496c2 100644
--- a/pandora_server/lib/PandoraFMS/Config.pm
+++ b/pandora_server/lib/PandoraFMS/Config.pm
@@ -79,7 +79,7 @@ sub help_screen {
sub pandora_init {
my $pa_config = $_[0];
my $init_string = $_[1];
- print "\n$init_string $pandora_version Build $pandora_build Copyright (c) 2004-2018 " . pandora_get_initial_copyright_notice() . "\n";
+ print "\n$init_string $pandora_version Build $pandora_build Copyright (c) 2004-20".substr($pandora_build,0,2)." " . pandora_get_initial_copyright_notice() . "\n";
print "This program is OpenSource, licensed under the terms of GPL License version 2.\n";
print "You can download latest versions and documentation at official web page.\n\n";
@@ -397,6 +397,12 @@ sub pandora_load_config {
# Self monitoring interval
$pa_config->{'self_monitoring_interval'} = 300; # 5.1SP1
+ # Sample Agent
+ $pa_config->{'sample_agent'} = 0;
+
+ # Sample agent interval
+ $pa_config->{'sample_agent_interval'} = 600;
+
# Process XML data files as a stack
$pa_config->{"dataserver_lifo"} = 0; # 5.0
@@ -946,6 +952,12 @@ sub pandora_load_config {
elsif ($parametro =~ m/^self_monitoring_interval\s+([0-9]*)/i) {
$pa_config->{'self_monitoring_interval'} = clean_blank($1);
}
+ elsif ($parametro =~ m/^sample_agent\s+([0-1])/i) {
+ $pa_config->{'sample_agent'} = clean_blank($1);
+ }
+ elsif ($parametro =~ m/^sample_agent_interval\s+([0-9]*)/i) {
+ $pa_config->{'sample_agent_interval'} = clean_blank($1);
+ }
elsif ($parametro =~ m/^update_parent\s+([0-1])/i) {
$pa_config->{'update_parent'} = clean_blank($1);
}
diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm
index ae67d5ca70..280bdb2158 100644
--- a/pandora_server/lib/PandoraFMS/Core.pm
+++ b/pandora_server/lib/PandoraFMS/Core.pm
@@ -100,6 +100,8 @@ Exported Functions:
=item * C
+=item * C
+
=back
=head1 METHODS
@@ -122,6 +124,7 @@ use threads::shared;
use JSON qw(decode_json encode_json);
use MIME::Base64;
use Text::ParseWords;
+use Math::Trig; # Math functions
# Debugging
#use Data::Dumper;
@@ -247,6 +250,7 @@ our @EXPORT = qw(
pandora_group_statistics
pandora_server_statistics
pandora_self_monitoring
+ pandora_sample_agent
pandora_process_policy_queue
subst_alert_macros
subst_column_macros
@@ -5114,7 +5118,7 @@ sub pandora_self_monitoring ($$) {
my $timezone_offset = 0; # PENDING (TODO) !
my $utimestamp = time ();
my $timestamp = strftime ("%Y-%m-%d %H:%M:%S", localtime());
-
+ logger($pa_config, "Self monitoring activated.", 1);
my $xml_output = "";
$xml_output = "{'version'} . "' agent_name='".$pa_config->{'servername'} . "' agent_alias='".$pa_config->{'servername'} . "' interval='".$pa_config->{"self_monitoring_interval"}."' timestamp='".$timestamp."' >";
@@ -5235,6 +5239,87 @@ sub pandora_self_monitoring ($$) {
print XMLFILE $xml_output;
close (XMLFILE);
}
+##########################################################################
+=head2 C<< xml_module_template (I<$module_name>, I<$module_type>, I<$module_data>) >>
+
+Module template for sample agent
+
+=cut
+##########################################################################
+sub xml_module_template ($$$) {
+ my ($module_name, $module_type, $module_data) = @_;
+ my $output = "\n";
+
+ $module_name = "" if $module_name =~ /[\s+.]+/;
+ $module_data = "" if $module_data =~ /[\s+.]+/;
+
+ $output .= "\t".$module_name."\n";
+ $output .= "\t".$module_type."\n";
+ $output .= "\t".$module_data."\n";
+ $output .= "\n";
+
+ return $output;
+}
+##########################################################################
+=head2 C<< pandora_sample_agent (I<$pa_config>) >>
+
+Pandora agent for make sample data
+
+=cut
+##########################################################################
+sub pandora_sample_agent ($) {
+
+ my ($pa_config) = @_;
+ logger($pa_config, "Sample agent activated.", 1);
+ my $utimestamp = time ();
+ my $timestamp = strftime ("%Y-%m-%d %H:%M:%S", localtime());
+
+ # First line
+ my $xml_output = "{'version'} . "' agent_name='".$pa_config->{'servername'} . "' agent_alias='".$pa_config->{'servername'} . "' interval='".$pa_config->{"self_monitoring_interval"}."' timestamp='".$timestamp."' >";
+ # Boolean_True -> generic_proc siempre a 1
+ $xml_output .= xml_module_template ("Siempre a uno", "generic_proc","1");
+ # Boolean_MostlyTrue -> generic_proc un 80% de veces a 1
+ my $sample_boolean_mostly_true = 1;
+ $sample_boolean_mostly_true = 0 if rand(9) > 7;
+ $xml_output .= xml_module_template ("Boolean mostly true", "generic_proc",$sample_boolean_mostly_true);
+ # Boolean_MostlyFalse -> generic_proc un 80% de veces a 1
+ my $sample_boolean_mostly_false = 0;
+ $sample_boolean_mostly_false = 1 if rand(9) > 7;
+ $xml_output .= xml_module_template ("Siempre a uno", "generic_proc", $sample_boolean_mostly_false);
+ # Boolean_False -> generic_proc siempre a 0
+ $xml_output .= xml_module_template ("Siempre_false", "generic_proc","0");
+ # Data_Series_Scatter -> Valores random de 0 a 100
+ $xml_output .= xml_module_template ("Random_integer_values", "generic_data",int(rand(100)));
+ # Data_Series_Curve -> Valores en curvas senoidales o similares de 0 a 100
+ # (utilizar funcion matemática que use timestamp actual, para no tener que
+ # guardar valores anteriores)
+ my $b = 1;
+ my $sample_serie_curve = 1 + cos(deg2rad($b));
+ $b = $b + rand(20)/10;
+ $b = 0 if ($b > 180);
+ $sample_serie_curve = $sample_serie_curve * $b * 10;
+ $sample_serie_curve =~ s/\,/\./g;
+ $xml_output .= xml_module_template ("Random text", "generic_string", $sample_serie_curve);
+ # Text -> generic_string > Con una cadena de texto aleatorio de
+ # 10 caracteres, idealmente con espacios y caracteres ascii
+ # basicos (letras).
+ # String with 10 random characters
+ my $sample_random_text = "";
+ my @characters = ('a'..'z','A'..'Z');
+ for (1...10){
+ $sample_random_text .= $characters[int(rand(@characters))];
+ }
+ $xml_output .= xml_module_template ("Random text", "generic_string", $sample_random_text);
+ # End of xml
+ $xml_output .= "";
+ # File definition
+ my $filename = $pa_config->{"incomingdir"}."/".$pa_config->{'servername'}.".sample.".$utimestamp.".data";
+ # Opening, Writing and closing of XML
+ open (my $xmlfile, ">", $filename) or die "[FATAL] Could not open sample XML file for deploying monitorization at '$filename'";
+ print $xmlfile $xml_output;
+ close ($xmlfile);
+
+}
##########################################################################
=head2 C<< set_master (I<$pa_config>, I<$dbh>) >>
From 305dfa441d77031a73accdd8de5bdd2c7592bbc2 Mon Sep 17 00:00:00 2001
From: Jose Gonzalez
Date: Tue, 22 Oct 2019 14:03:24 +0200
Subject: [PATCH 08/16] Minor fix applied
---
pandora_server/lib/PandoraFMS/Core.pm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm
index 280bdb2158..7d03d5da07 100644
--- a/pandora_server/lib/PandoraFMS/Core.pm
+++ b/pandora_server/lib/PandoraFMS/Core.pm
@@ -5273,9 +5273,10 @@ sub pandora_sample_agent ($) {
logger($pa_config, "Sample agent activated.", 1);
my $utimestamp = time ();
my $timestamp = strftime ("%Y-%m-%d %H:%M:%S", localtime());
-
# First line
- my $xml_output = "{'version'} . "' agent_name='".$pa_config->{'servername'} . "' agent_alias='".$pa_config->{'servername'} . "' interval='".$pa_config->{"self_monitoring_interval"}."' timestamp='".$timestamp."' >";
+ my $xml_output = "\n";
+ # Header
+ $xml_output = "\n";
# Boolean_True -> generic_proc siempre a 1
$xml_output .= xml_module_template ("Siempre a uno", "generic_proc","1");
# Boolean_MostlyTrue -> generic_proc un 80% de veces a 1
@@ -5312,7 +5313,7 @@ sub pandora_sample_agent ($) {
$xml_output .= xml_module_template ("Random text", "generic_string", $sample_random_text);
# End of xml
$xml_output .= "";
- # File definition
+ # File path definition
my $filename = $pa_config->{"incomingdir"}."/".$pa_config->{'servername'}.".sample.".$utimestamp.".data";
# Opening, Writing and closing of XML
open (my $xmlfile, ">", $filename) or die "[FATAL] Could not open sample XML file for deploying monitorization at '$filename'";
From 33d26144f137d75d5f4992d192de72af861445c7 Mon Sep 17 00:00:00 2001
From: Luis Calvo
Date: Tue, 22 Oct 2019 16:00:01 +0200
Subject: [PATCH 09/16] Fixed planned downtime acl
---
.../general/firts_task/planned_downtime.php | 2 +-
.../agentes/planned_downtime.editor.php | 8 +++----
.../godmode/agentes/planned_downtime.list.php | 22 +++++++++----------
3 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/pandora_console/general/firts_task/planned_downtime.php b/pandora_console/general/firts_task/planned_downtime.php
index dcd98fdebb..21bfb4b083 100644
--- a/pandora_console/general/firts_task/planned_downtime.php
+++ b/pandora_console/general/firts_task/planned_downtime.php
@@ -33,7 +33,7 @@ ui_require_css_file('firts_task');
);
?>
-
diff --git a/pandora_console/godmode/agentes/planned_downtime.editor.php b/pandora_console/godmode/agentes/planned_downtime.editor.php
index eef8d5fbdf..ebf64a87c1 100644
--- a/pandora_console/godmode/agentes/planned_downtime.editor.php
+++ b/pandora_console/godmode/agentes/planned_downtime.editor.php
@@ -827,7 +827,7 @@ $table->data[5][1] = "
';
-echo '