Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

this interface is used by SMTPAppender class in log4j. It has a method which returns a status (if to trigger an email alert or not)

The problem is that i want to add somefunctionality to TriggeringEventEvaluator. this requires some extra fields to specify in config for TriggeringEventEvaluator.

How can I pass these fields from log4j config to TriggeringEventEvaluator. I know that log4j calls setter methods for fields but how can fields be specified for TriggeringEventEvaluator

share|improve this question

1 Answer

Define a TriggeringPolicy element inside the SMTPAppender element. The TriggeringPolicy element's class would be org.apache.log4j.rolling.FilterBasedTriggeringPolicy.

Inside the TriggeringPolicy element, define a 'filter' element whose class is org.apache.log4j.filter.ExpressionFilter.

You can then use any event field you want (and regexp support using the 'like' keyword) in order to filter events. The developer snapshot of Chainsaw has a pretty good tutorial on the expression syntax: http://people.apache.org/~sdeboy

Example:

<appender name="mail" class="org.apache.log4j.net.SMTPAppender">
  <param name="from"   value="[EMAIL PROTECTED]" />
  <param name="to" value="[EMAIL PROTECTED]" />
  <param name="subject" value="Test message" />
  <param name="SMTPHost" value="localhost"/>
  <param name="sendOnClose" value="true"/>
  <triggeringPolicy class="org.apache.log4j.rolling.FilterBasedTriggeringPolicy">
    <filter class="org.apache.log4j.filter.ExpressionFilter">
      <param name="Expression" value="( LOGGER ~= class1 &amp;&amp; MSG ~= test1 ) || ( logger ~= class2 &amp;&amp; MSG like 'TEST2' )"/>
    </filter>
  </triggeringPolicy>
  <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%-5p %c{2} - %m%n"/>
  </layout>
</appender>
share|improve this answer
how to specify these in property value format? – user777486 Jun 1 '11 at 12:55
can u explain a little more.. what I want to accomplish is that I want to set a max email limit that can be sent in a time interval. So max email limit and time frame should be specified in log4j config. And triggering evaluator should decide based on these parameters if it is ok to send mail or not. if limit for sending mail has been exceeded, triggeringevaluator should return false. is similar behaviour can be accomplished with triggering Policy, please help with little more explanation. – user777486 Jun 1 '11 at 13:08
Triggering policies can't be set in the properties file format I believe, just the xml format. You can write a custom TriggeringPolicy (which implements TriggeringEventEvaluator) which tracks whatever you want in the isTriggeringEvent implementation, returning true when appropriate (based on time, logging event count, etc). – Scott Jun 2 '11 at 17:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.