Skip to content

Commit

Permalink
GEODE-2644: Make AlertAppender optional and support log4j2.xml
Browse files Browse the repository at this point in the history
AlertAppender is now configured in log4j2.xml and it supports sessions
that correspond with Cache lifecycle. This allows Geode to pause and
resume AlertAppender without resorting to dynamically adding and
removing appenders.

List of changes:
* Change AlertAppender to be pausable and session-oriented
* Make AlertAppender support configuration from log4j2.xml
* Log4j2 Core dependency is now optional
* Internal Alerting interfaces allow Alerting service to be pluggable
* Reduce coupling between Alerting and the rest of Geode
* Greatly increase test coverage for Alerting
  • Loading branch information
kirklund committed Nov 16, 2018
1 parent 3e8b07c commit 5ae86bb
Show file tree
Hide file tree
Showing 49 changed files with 3,507 additions and 713 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.lang.annotation.Target;

@Documented
@Target({ElementType.CONSTRUCTOR, ElementType.METHOD})
@Target({ElementType.TYPE, ElementType.CONSTRUCTOR, ElementType.METHOD})
public @interface TestingOnly {

/** Optional description */
Expand Down
Loading

0 comments on commit 5ae86bb

Please sign in to comment.