You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ambari.apache.org by "Hudson (JIRA)" <ji...@apache.org> on 2015/03/27 23:24:55 UTC

[jira] [Commented] (AMBARI-10249) Add a Log Appender for Alert State Change Events

    [ https://issues.apache.org/jira/browse/AMBARI-10249?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14384806#comment-14384806 ] 

Hudson commented on AMBARI-10249:
---------------------------------

FAILURE: Integrated in Ambari-trunk-Commit #2134 (See [https://builds.apache.org/job/Ambari-trunk-Commit/2134/])
AMBARI-10249 - Add a Log Appender for Alert State Change Events (jonathanhurley) (jhurley: http://git-wip-us.apache.org/repos/asf?p=ambari.git&a=commit&h=4872d4e80aff3e80bc61f82d25c3af1672a6bd32)
* ambari-server/conf/windows/log4j.properties
* ambari-server/conf/unix/log4j.properties
* ambari-server/src/main/java/org/apache/ambari/server/events/listeners/alerts/AlertStateChangedListener.java
* ambari-server/conf/log4j.properties
* ambari-server/src/main/conf/log4j.properties


> Add a Log Appender for Alert State Change Events
> ------------------------------------------------
>
>                 Key: AMBARI-10249
>                 URL: https://issues.apache.org/jira/browse/AMBARI-10249
>             Project: Ambari
>          Issue Type: Bug
>          Components: ambari-server
>            Reporter: Jonathan Hurley
>            Assignee: Jonathan Hurley
>             Fix For: 2.1.0
>
>
> Currently there is no permanent audit trail for alert state change events. Although the history and notifications of an alert are kept in the database, a deletion of the alert definition will cascade to its children, thus removing the history. 
> Similar to {{ambari.config-changes.file}}, create a new logger that logs the following information:
> - Alert state changed events
> -- date, state, name, threshold values (if any), text, instance, label
> {code}
> ambari.alert-state-changes.file=ambari-alert-state-changes.log
> # Log config changes
> log4j.logger.alerts=INFO,alerts
> log4j.additivity.alerts=false
> log4j.appender.alerts=org.apache.log4j.FileAppender
> log4j.appender.alerts.File=${ambari.log.dir}/${ambari.alert-state-changes.file}
> log4j.appender.alerts.layout=org.apache.log4j.PatternLayout
> log4j.appender.alerts.layout.ConversionPattern=%d{ISO8601} %5p - %m%n
> private static final Logger alertLogger = LoggerFactory.getLogger("alerts");
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)