minor fixes and visual change in azure credentials
This commit is contained in:
parent
07edee619a
commit
0e3fd848f7
|
@ -590,6 +590,7 @@ define('DISCOVERY_APP_MYSQL', 4);
|
||||||
define('DISCOVERY_APP_ORACLE', 5);
|
define('DISCOVERY_APP_ORACLE', 5);
|
||||||
define('DISCOVERY_CLOUD_AWS_EC2', 6);
|
define('DISCOVERY_CLOUD_AWS_EC2', 6);
|
||||||
define('DISCOVERY_CLOUD_AWS_RDS', 7);
|
define('DISCOVERY_CLOUD_AWS_RDS', 7);
|
||||||
|
define('DISCOVERY_CLOUD_AZURE_COMPUTE', 8);
|
||||||
|
|
||||||
|
|
||||||
// Discovery types matching definition.
|
// Discovery types matching definition.
|
||||||
|
|
|
@ -362,7 +362,7 @@ function print_inputs($values=null)
|
||||||
'label' => $extra_1_label,
|
'label' => $extra_1_label,
|
||||||
'name' => 'extra_1',
|
'name' => 'extra_1',
|
||||||
'input_class' => 'flex-row',
|
'input_class' => 'flex-row',
|
||||||
'type' => 'password',
|
'type' => 'text',
|
||||||
'value' => $values['extra_1'],
|
'value' => $values['extra_1'],
|
||||||
'return' => true,
|
'return' => true,
|
||||||
]
|
]
|
||||||
|
@ -375,7 +375,7 @@ function print_inputs($values=null)
|
||||||
'label' => $extra_2_label,
|
'label' => $extra_2_label,
|
||||||
'name' => 'extra_2',
|
'name' => 'extra_2',
|
||||||
'input_class' => 'flex-row',
|
'input_class' => 'flex-row',
|
||||||
'type' => 'password',
|
'type' => 'text',
|
||||||
'value' => $values['extra_2'],
|
'value' => $values['extra_2'],
|
||||||
'return' => true,
|
'return' => true,
|
||||||
'display' => $extra2,
|
'display' => $extra2,
|
||||||
|
|
|
@ -70,7 +70,7 @@ if (is_ajax()) {
|
||||||
if ($id_agente > 0) {
|
if ($id_agente > 0) {
|
||||||
$last_contact = db_get_value_sql(
|
$last_contact = db_get_value_sql(
|
||||||
sprintf(
|
sprintf(
|
||||||
'SELECT intervalo - (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(IF(ultimo_contacto > ultimo_contacto_remoto, ultimo_contacto, ultimo_contacto_remoto)))
|
'SELECT format(intervalo,2) - (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(IF(ultimo_contacto > ultimo_contacto_remoto, ultimo_contacto, ultimo_contacto_remoto))) as "val"
|
||||||
FROM `tagente`
|
FROM `tagente`
|
||||||
WHERE id_agente = %d ',
|
WHERE id_agente = %d ',
|
||||||
$id_agente
|
$id_agente
|
||||||
|
|
Loading…
Reference in New Issue