Added the alert macros _groupcustomid_.
This commit is contained in:
parent
50ea76e463
commit
42781e0bee
|
@ -42,6 +42,7 @@ Besides the defined module macros, the following macros are available:
|
||||||
<li>_target_port_ : Port number of the target of the module.</li>
|
<li>_target_port_ : Port number of the target of the module.</li>
|
||||||
<li>_plugin_parameters_ : Plug-in Parameters of the module.</li>
|
<li>_plugin_parameters_ : Plug-in Parameters of the module.</li>
|
||||||
<li>_groupcontact_ : Group contact information. Configured when the group is created.</li>
|
<li>_groupcontact_ : Group contact information. Configured when the group is created.</li>
|
||||||
|
<li>_groupcustomid_: Group custom ID. </li>
|
||||||
<li>_groupother_ : Other information about the group. Configured when the group is created.</li>
|
<li>_groupother_ : Other information about the group. Configured when the group is created.</li>
|
||||||
<li>_name_tag_ : Names of the tags associated to the module.</li>
|
<li>_name_tag_ : Names of the tags associated to the module.</li>
|
||||||
<li>_email_tag_ : Emails associated to the module tags.</li>
|
<li>_email_tag_ : Emails associated to the module tags.</li>
|
||||||
|
|
|
@ -42,6 +42,7 @@ Además de las macros de módulo definidas, las siguientes macros están disponi
|
||||||
<li>_target_ip_ : Dirección IP del objetivo del módulo.</li>
|
<li>_target_ip_ : Dirección IP del objetivo del módulo.</li>
|
||||||
<li>_target_port_ : Puerto del objetivo del módulo.</li>
|
<li>_target_port_ : Puerto del objetivo del módulo.</li>
|
||||||
<li>_groupcontact_ : Información de contacto del grupo. Se configura al crear el grupo.</li>
|
<li>_groupcontact_ : Información de contacto del grupo. Se configura al crear el grupo.</li>
|
||||||
|
<li>_groupcustomid_ : ID personalizado del grupo. </li>
|
||||||
<li>_groupother_ : Otra información sobre el grupo. Se configura al crear el grupo.</li>
|
<li>_groupother_ : Otra información sobre el grupo. Se configura al crear el grupo.</li>
|
||||||
<li>_name_tag_ : Nombre de los tags asociados al módulo.</li>
|
<li>_name_tag_ : Nombre de los tags asociados al módulo.</li>
|
||||||
<li>_email_tag_ : Emails asociados a los tags de módulos.</li>
|
<li>_email_tag_ : Emails asociados a los tags de módulos.</li>
|
||||||
|
|
|
@ -44,6 +44,7 @@
|
||||||
<li>_target_port_ : モジュールの対象ポート</li>
|
<li>_target_port_ : モジュールの対象ポート</li>
|
||||||
<li>_plugin_parameters_ : モジュールのプラグインパラメータ</li>
|
<li>_plugin_parameters_ : モジュールのプラグインパラメータ</li>
|
||||||
<li>_groupcontact_ : グループコンタクト情報。グループの作成時に設定されます。</li>
|
<li>_groupcontact_ : グループコンタクト情報。グループの作成時に設定されます。</li>
|
||||||
|
<li>_groupcustomid_: グループカスタムID</li>
|
||||||
<li>_groupother_ : グループに関するその他情報。グループの作成時に設定されます。</li>
|
<li>_groupother_ : グループに関するその他情報。グループの作成時に設定されます。</li>
|
||||||
<li>_name_tag_ : モジュールに関連付けられたタグの名前。</li>
|
<li>_name_tag_ : モジュールに関連付けられたタグの名前。</li>
|
||||||
<li>_email_tag_ : モジュールタグに関連付けられた Email。</li>
|
<li>_email_tag_ : モジュールタグに関連付けられた Email。</li>
|
||||||
|
|
|
@ -851,6 +851,7 @@ sub pandora_execute_action ($$$$$$$$$;$) {
|
||||||
_alert_critical_instructions_ => $alert->{'critical_instructions'},
|
_alert_critical_instructions_ => $alert->{'critical_instructions'},
|
||||||
_alert_warning_instructions_ => $alert->{'warning_instructions'},
|
_alert_warning_instructions_ => $alert->{'warning_instructions'},
|
||||||
_groupcontact_ => (defined ($group)) ? $group->{'contact'} : '',
|
_groupcontact_ => (defined ($group)) ? $group->{'contact'} : '',
|
||||||
|
_groupcustomid_ => (defined ($group)) ? $group->{'custom_id'} : '',
|
||||||
_groupother_ => (defined ($group)) ? $group->{'other'} : '',
|
_groupother_ => (defined ($group)) ? $group->{'other'} : '',
|
||||||
_module_ => (defined ($module)) ? $module->{'nombre'} : '',
|
_module_ => (defined ($module)) ? $module->{'nombre'} : '',
|
||||||
_modulecustomid_ => (defined ($module)) ? $module->{'custom_id'} : '',
|
_modulecustomid_ => (defined ($module)) ? $module->{'custom_id'} : '',
|
||||||
|
|
Loading…
Reference in New Issue