-2

I wan't to be able to perform Asserts in production runtime, and send out crash reports (with CRITICAL or WARNING messages) through different channels. Emails being one of them.

As you can see, I wan't this library to be performing collection of most commonly required stats - like Stacktrace, Host details, configurations etc.

Guruprasad GV
  • 916
  • 13
  • 18
  • 1
    Some of the Java logging libraries can use e-mail as an appender. – PM 77-1 Apr 05 '16 at 02:19
  • However, I also want some constructs to collect required contextual data. This could both system related and application related. For application related contextual information - I am looking at a library that exposes some hooks which I can fill in. – Guruprasad GV Apr 05 '16 at 02:22
  • 1
    If you can come up with detailed requirements, you *might* get help on [Software Recommendations](http://softwarerecs.stackexchange.com/). – PM 77-1 Apr 05 '16 at 02:24

1 Answers1

1

Take a look at Spring Cloud Sleuth or something like a Redis appender to send to an ELK stack then use the ELK stack for your needs.

Redi Appender - Github Repo

Spring Cloud Sleuth Project

code
  • 4,073
  • 3
  • 27
  • 47