[
https://issues.apache.org/jira/browse/AMBARI-18423?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Yao Lei updated AMBARI-18423:
-----------------------------
Description:
Ambari now support creating/editing three kinds of alert dispatch targets by
web wizard, including EMAIL,SNMP,Custom SNMP.
If we want to create another kind of alert dispatch target ALERT_SCRIPT for
script-based alert dispatcher,we have to use command line to execute following
codes:
{code}
POST api/v1/alert_targets
{
"AlertTarget": {
"name": "syslogger",
"description": "Syslog Target",
"notification_type": "ALERT_SCRIPT",
"global": true
}
}
{code}
or
{code}
POST api/v1/alert_targets
{
"AlertTarget": {
"name": "syslogger",
"description": "Syslog Target",
"notification_type": "ALERT_SCRIPT",
"global": true,
"properties": {
"ambari.dispatch-property.script":
"com.mycompany.dispatch.syslog.script"
}
}
}
{code}
More details, please see
https://cwiki.apache.org/confluence/display/AMBARI/Creating+a+Script-based+Alert+Dispatcher+-+2.4.0
We should do this work by web wizard rather than command line, which will
lead to more convenience
We think it is really helpeful to use script-based alert dispatcher.
was:
Ambari now support creating/editing three kinds of alert dispatch targets by
web wizard, including EMAIL,SNMP,Custom SNMP.
If we want to create another kind of alert dispatch target (ALERT_SCRIPT) for
script-based alert dispatcher,we have to use command line to execute following
codes:
{code}
POST api/v1/alert_targets
{
"AlertTarget": {
"name": "syslogger",
"description": "Syslog Target",
"notification_type": "ALERT_SCRIPT",
"global": true
}
}
{code}
or
{code}
POST api/v1/alert_targets
{
"AlertTarget": {
"name": "syslogger",
"description": "Syslog Target",
"notification_type": "ALERT_SCRIPT",
"global": true,
"properties": {
"ambari.dispatch-property.script":
"com.mycompany.dispatch.syslog.script"
}
}
}
{code}
More details, please see
https://cwiki.apache.org/confluence/display/AMBARI/Creating+a+Script-based+Alert+Dispatcher+-+2.4.0
We should do this work by web wizard rather than command line, which will
lead to more convenience
We think it is really helpeful to use script-based alert dispatcher.
> Support creating/editing alert dispatch targets for script-based alert
> dispatchers by web wizard instead of command line
> ------------------------------------------------------------------------------------------------------------------------
>
> Key: AMBARI-18423
> URL: https://issues.apache.org/jira/browse/AMBARI-18423
> Project: Ambari
> Issue Type: Improvement
> Components: alerts, ambari-web
> Affects Versions: trunk
> Reporter: Yao Lei
> Priority: Minor
> Attachments: alert_script_target_1.png, alert_script_target_2.png,
> alert_script_target_3.png
>
>
> Ambari now support creating/editing three kinds of alert dispatch targets by
> web wizard, including EMAIL,SNMP,Custom SNMP.
> If we want to create another kind of alert dispatch target ALERT_SCRIPT for
> script-based alert dispatcher,we have to use command line to execute
> following codes:
> {code}
> POST api/v1/alert_targets
>
> {
> "AlertTarget": {
> "name": "syslogger",
> "description": "Syslog Target",
> "notification_type": "ALERT_SCRIPT",
> "global": true
> }
> }
> {code}
> or
> {code}
> POST api/v1/alert_targets
> {
> "AlertTarget": {
> "name": "syslogger",
> "description": "Syslog Target",
> "notification_type": "ALERT_SCRIPT",
> "global": true,
> "properties": {
> "ambari.dispatch-property.script":
> "com.mycompany.dispatch.syslog.script"
> }
> }
> }
> {code}
> More details, please see
> https://cwiki.apache.org/confluence/display/AMBARI/Creating+a+Script-based+Alert+Dispatcher+-+2.4.0
> We should do this work by web wizard rather than command line, which will
> lead to more convenience
> We think it is really helpeful to use script-based alert dispatcher.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)