Fixes for the Oracl€.
This commit is contained in:
parent
745445d6d4
commit
8cf8a65bd3
|
@ -885,13 +885,16 @@ else
|
|||
<td>
|
||||
<?php
|
||||
html_print_select(array(), 'inventory_modules[]', '', $script = '', __('None'), 0, false, true, true, '', false, "min-width: 180px");
|
||||
|
||||
if (empty($inventory_modules)) {
|
||||
$array_inventory_modules = array(0 => 0);
|
||||
}
|
||||
else {
|
||||
$array_inventory_modules = implode(',', $inventory_modules);
|
||||
}
|
||||
html_print_input_hidden('inventory_modules_selected', $array_inventory_modules);
|
||||
$array_inventory_modules =
|
||||
implode(',', $inventory_modules);
|
||||
|
||||
html_print_input_hidden(
|
||||
'inventory_modules_selected',
|
||||
$array_inventory_modules);
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -2400,7 +2400,15 @@ function reporting_group_configuration($report, $content) {
|
|||
|
||||
|
||||
if ($content['id_group'] == 0) {
|
||||
switch ($config["dbtype"]) {
|
||||
case "mysql":
|
||||
case "postgresql":
|
||||
$sql = "SELECT * FROM tagente;";
|
||||
break;
|
||||
case "oracle":
|
||||
$sql = "SELECT * FROM tagente";
|
||||
break;
|
||||
}
|
||||
}
|
||||
else {
|
||||
$sql = "SELECT * FROM tagente WHERE id_grupo=" . $content['id_group'];
|
||||
|
@ -2700,11 +2708,27 @@ function reporting_alert_report_agent($report, $content) {
|
|||
array('id' => $alert['id_alert_template']));
|
||||
|
||||
|
||||
|
||||
switch ($config["dbtype"]) {
|
||||
case "mysql":
|
||||
case "postgresql":
|
||||
$actions = db_get_all_rows_sql('SELECT name
|
||||
FROM talert_actions
|
||||
WHERE id IN (SELECT id_alert_action
|
||||
FROM talert_template_module_actions
|
||||
WHERE id_alert_template_module = ' . $alert['id_alert_template'] . ');');
|
||||
break;
|
||||
case "oracle":
|
||||
$actions = db_get_all_rows_sql('SELECT name
|
||||
FROM talert_actions
|
||||
WHERE id IN (SELECT id_alert_action
|
||||
FROM talert_template_module_actions
|
||||
WHERE id_alert_template_module = ' . $alert['id_alert_template'] . ')');
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
if (!empty($actions)) {
|
||||
$row = db_get_row_sql('SELECT id_alert_action
|
||||
|
@ -2737,10 +2761,13 @@ function reporting_alert_report_agent($report, $content) {
|
|||
|
||||
$data_row['fired'] = array();
|
||||
$firedTimes = get_module_alert_fired(
|
||||
$content['id_agent_module'],
|
||||
$alert['id_agent_module'],
|
||||
$alert['id_alert_template'],
|
||||
(int) $content['period'],
|
||||
(int) $report["datetime"]);
|
||||
|
||||
|
||||
|
||||
if (empty($firedTimes)) {
|
||||
$firedTimes = array();
|
||||
}
|
||||
|
@ -2788,10 +2815,26 @@ function reporting_alert_report_module($report, $content) {
|
|||
$return["description"] = $content["description"];
|
||||
$return["date"] = reporting_get_date_text($report, $content);
|
||||
|
||||
$alerts = db_get_all_rows_sql('SELECT *, t1.id as id_alert_template_module
|
||||
switch ($config["dbtype"]) {
|
||||
case "mysql":
|
||||
case "postgresql":
|
||||
$alerts = db_get_all_rows_sql('
|
||||
SELECT *, t1.id as id_alert_template_module
|
||||
FROM talert_template_modules t1
|
||||
INNER JOIN talert_templates t2 ON t1.id_alert_template = t2.id
|
||||
INNER JOIN talert_templates t2
|
||||
ON t1.id_alert_template = t2.id
|
||||
WHERE id_agent_module = ' . $content['id_agent_module']);
|
||||
break;
|
||||
case "oracle":
|
||||
$alerts = db_get_all_rows_sql('
|
||||
SELECT t1.*, t2.*, t1.id as id_alert_template_module
|
||||
FROM talert_template_modules t1
|
||||
INNER JOIN talert_templates t2
|
||||
ON t1.id_alert_template = t2.id
|
||||
WHERE id_agent_module = ' . $content['id_agent_module']);
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
if ($alerts === false) {
|
||||
$alerts = array();
|
||||
|
@ -2805,11 +2848,26 @@ function reporting_alert_report_module($report, $content) {
|
|||
|
||||
$data_row['template'] = db_get_value_filter('name',
|
||||
'talert_templates', array('id' => $alert['id_alert_template']));
|
||||
|
||||
switch ($config["dbtype"]) {
|
||||
case "mysql":
|
||||
case "postgresql":
|
||||
$actions = db_get_all_rows_sql('SELECT name
|
||||
FROM talert_actions
|
||||
WHERE id IN (SELECT id_alert_action
|
||||
FROM talert_template_module_actions
|
||||
WHERE id_alert_template_module = ' . $alert['id_alert_template_module'] . ');');
|
||||
break;
|
||||
case "oracle":
|
||||
$actions = db_get_all_rows_sql('SELECT name
|
||||
FROM talert_actions
|
||||
WHERE id IN (SELECT id_alert_action
|
||||
FROM talert_template_module_actions
|
||||
WHERE id_alert_template_module = ' . $alert['id_alert_template_module'] . ')');
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
|
||||
if (!empty($actions)) {
|
||||
$row = db_get_row_sql('SELECT id_alert_action
|
||||
|
@ -2846,6 +2904,9 @@ function reporting_alert_report_module($report, $content) {
|
|||
$alert['id_alert_template_module'],
|
||||
(int) $content['period'],
|
||||
(int) $report["datetime"]);
|
||||
|
||||
|
||||
|
||||
if (empty($firedTimes)) {
|
||||
$firedTimes = array();
|
||||
}
|
||||
|
@ -4578,6 +4639,7 @@ function reporting_get_group_detailed_event ($id_group, $period = 0,
|
|||
$date = get_system_time ();
|
||||
}
|
||||
|
||||
$table = new stdClass();
|
||||
$table->width = '99%';
|
||||
|
||||
$table->align = array();
|
||||
|
@ -4704,17 +4766,7 @@ function reporting_get_module_detailed_event ($id_modules, $period = 0,
|
|||
$date = get_system_time ();
|
||||
}
|
||||
|
||||
$table->width = '99%';
|
||||
$table->data = array ();
|
||||
$table->head = array ();
|
||||
$table->head[0] = __('Status');
|
||||
$table->head[1] = __('Event name');
|
||||
$table->head[2] = __('Event type');
|
||||
$table->head[3] = __('Criticity');
|
||||
$table->head[4] = __('Count');
|
||||
$table->head[5] = __('Timestamp');
|
||||
$table->style[0] = 'text-align: center;';
|
||||
$table->style[4] = 'text-align: center;';
|
||||
|
||||
|
||||
$events = array ();
|
||||
|
||||
|
@ -4819,23 +4871,7 @@ function reporting_get_agents_detailed_event ($id_agents, $period = 0,
|
|||
$date = get_system_time ();
|
||||
}
|
||||
|
||||
$table->width = '99%';
|
||||
|
||||
$table->align = array();
|
||||
$table->align[0] = 'center';
|
||||
$table->align[1] = 'center';
|
||||
$table->align[3] = 'center';
|
||||
|
||||
$table->data = array ();
|
||||
|
||||
$table->head = array ();
|
||||
$table->head[0] = __('Status');
|
||||
$table->head[1] = __('Count');
|
||||
$table->head[2] = __('Name');
|
||||
$table->head[3] = __('Type');
|
||||
$table->head[4] = __('Criticity');
|
||||
$table->head[5] = __('Val. by');
|
||||
$table->head[6] = __('Timestamp');
|
||||
|
||||
$events = array ();
|
||||
|
||||
|
|
|
@ -476,6 +476,7 @@ function reporting_html_event_report_group($table, $item) {
|
|||
$table->data['events']['cell'] = $item['failed'];
|
||||
}
|
||||
else {
|
||||
$table1 = new stdClass();
|
||||
$table1->width = '99%';
|
||||
|
||||
$table1->align = array();
|
||||
|
@ -554,7 +555,7 @@ function reporting_html_event_report_group($table, $item) {
|
|||
|
||||
|
||||
if (!empty($item['chart']['by_agent'])) {
|
||||
$table1 = null;
|
||||
$table1 = new stdClass();
|
||||
$table1->width = '99%';
|
||||
$table1->head = array ();
|
||||
$table1->head[0] = __('Events by agent');
|
||||
|
@ -566,7 +567,7 @@ function reporting_html_event_report_group($table, $item) {
|
|||
}
|
||||
|
||||
if (!empty($item['chart']['by_user_validator'])) {
|
||||
$table1 = null;
|
||||
$table1 = new stdClass();
|
||||
$table1->width = '99%';
|
||||
$table1->head = array ();
|
||||
$table1->head[0] = __('Events by user validator');
|
||||
|
@ -578,7 +579,7 @@ function reporting_html_event_report_group($table, $item) {
|
|||
}
|
||||
|
||||
if (!empty($item['chart']['by_criticity'])) {
|
||||
$table1 = null;
|
||||
$table1 = new stdClass();
|
||||
$table1->width = '99%';
|
||||
$table1->head = array ();
|
||||
$table1->head[0] = __('Events by criticity');
|
||||
|
@ -590,7 +591,7 @@ function reporting_html_event_report_group($table, $item) {
|
|||
}
|
||||
|
||||
if (!empty($item['chart']['validated_vs_unvalidated'])) {
|
||||
$table1 = null;
|
||||
$table1 = new stdClass();
|
||||
$table1->width = '99%';
|
||||
$table1->head = array ();
|
||||
$table1->head[0] = __('Events validated vs unvalidated');
|
||||
|
@ -612,6 +613,7 @@ function reporting_html_event_report_module($table, $item) {
|
|||
$table->data['events']['cell'] = $item['failed'];
|
||||
}
|
||||
else {
|
||||
$table1 = new stdClass();
|
||||
$table1->width = '99%';
|
||||
$table1->data = array ();
|
||||
$table1->head = array ();
|
||||
|
@ -1074,6 +1076,7 @@ function reporting_html_group_report($table, $item) {
|
|||
function reporting_html_event_report_agent($table, $item) {
|
||||
global $config;
|
||||
|
||||
$table1 = new stdClass();
|
||||
$table1->width = '99%';
|
||||
|
||||
$table1->align = array();
|
||||
|
@ -1147,7 +1150,7 @@ function reporting_html_event_report_agent($table, $item) {
|
|||
$table->data['event_list']['cell'] = html_print_table($table1, true);
|
||||
|
||||
if (!empty($item['chart']['by_user_validator'])) {
|
||||
$table1 = null;
|
||||
$table1 = new stdClass();
|
||||
$table1->width = '99%';
|
||||
$table1->head = array ();
|
||||
$table1->head[0] = __('Events validated by user');
|
||||
|
@ -1159,7 +1162,7 @@ function reporting_html_event_report_agent($table, $item) {
|
|||
}
|
||||
|
||||
if (!empty($item['chart']['by_criticity'])) {
|
||||
$table1 = null;
|
||||
$table1 = new stdClass();
|
||||
$table1->width = '99%';
|
||||
$table1->head = array ();
|
||||
$table1->head[0] = __('Events by criticity');
|
||||
|
@ -1171,7 +1174,7 @@ function reporting_html_event_report_agent($table, $item) {
|
|||
}
|
||||
|
||||
if (!empty($item['chart']['validated_vs_unvalidated'])) {
|
||||
$table1 = null;
|
||||
$table1 = new stdClass();
|
||||
$table1->width = '99%';
|
||||
$table1->head = array ();
|
||||
$table1->head[0] = __('Amount events validated');
|
||||
|
@ -1208,11 +1211,13 @@ function reporting_html_database_serialized($table, $item) {
|
|||
|
||||
function reporting_html_group_configuration($table, $item) {
|
||||
|
||||
$table1 = new stdClass();
|
||||
$table1->width = '100%';
|
||||
$table1->head = array ();
|
||||
$table1->data = array ();
|
||||
$cell = "";
|
||||
foreach ($item['data'] as $agent) {
|
||||
$table2 = new stdClass();
|
||||
$table2->width = '100%';
|
||||
$table2->data = array ();
|
||||
reporting_html_agent_configuration($table2, array('data' => $agent));
|
||||
|
@ -1328,6 +1333,7 @@ function reporting_html_alert_report_agent($table, $item) {
|
|||
$table->colspan['alerts']['cell'] = 3;
|
||||
$table->cellstyle['alerts']['cell'] = 'text-align: left;';
|
||||
|
||||
$table1 = new stdClass();
|
||||
$table1->width = '99%';
|
||||
$table1->head = array ();
|
||||
$table1->head['module'] = __('Module');
|
||||
|
@ -1364,6 +1370,7 @@ function reporting_html_alert_report_module($table, $item) {
|
|||
$table->colspan['alerts']['cell'] = 3;
|
||||
$table->cellstyle['alerts']['cell'] = 'text-align: left;';
|
||||
|
||||
$table1 = new stdClass();
|
||||
$table1->width = '99%';
|
||||
$table1->head = array ();
|
||||
$table1->head['template'] = __('Template');
|
||||
|
@ -1451,6 +1458,7 @@ function reporting_html_agent_configuration(&$table, $item) {
|
|||
$table->colspan['agent']['cell'] = 3;
|
||||
$table->cellstyle['agent']['cell'] = 'text-align: left;';
|
||||
|
||||
$table1 = new stdClass();
|
||||
$table1->width = '99%';
|
||||
$table1->head = array ();
|
||||
$table1->head['name'] = __('Agent name');
|
||||
|
|
Loading…
Reference in New Issue