NEWBIE: Sample INSTALL class fails at runtime????

2004-06-17 Thread David Kramer
OK so I have searched all over the web for this and Im seeing some very strange behavior within this error. I installed the jar file, and set the classpath variable, Im doing this via a shell script within profile.d on a RH9.0 box. When I echo the classpath I see the jar, when I compile the sampl

Re: How to use SMTPAppender for info messages

2004-06-17 Thread Jen
SMTPAppender has a EvaluatorClass param, you can define your own to include info. I think default is error and up. --- Marc Guillemot <[EMAIL PROTECTED]> wrote: > Hi, > > I'd like to use a SMTPAppender to send info messages > (these are not > errors but informations about the lifecycle of the >

RE: DBAppender throughput limits

2004-06-17 Thread Ceki Gülcü
If you can afford to throw away the events, a CountingFilter would solve this in a snap. CountingFilter does not exist. You'd have to write it. Here is a recipe: 1) Attach the counting filter to DBAppender (or any appender for that matter) 2) Have CountingFilter count the number of incoming events

RE: DBAppender throughput limits

2004-06-17 Thread Scott Deboy
I'd first look to see if there are other ways of addressing the issue. Maybe asyncAppender alone would help. A custom filter (which performed a wait when evaluating the event), in combination with asyncAppender, might work. Don't forget that asyncAppender uses a bounded buffer. -Original Me