-2

I have been looking to find if there is an alternate way to monitor warning/errors that are in logs. Currently I am using the logs to know the error code which keeps on changing for every update. Is there an alternate way to know them?

Justin Bertram
  • 29,372
  • 4
  • 21
  • 43
kavyaS
  • 1
  • What do you mean that the error code "keeps on changing for every update?" Which error code are you referring to? What updates are you making? Please clarify. – Justin Bertram May 26 '21 at 14:19
  • the log message format keeps on changing to write e regular expression and read the logs.I am trying to find a way other than logs can we get the same info through other system exposed parameters. – kavyaS May 27 '21 at 06:52
  • In what way does the log message format keep on changing? Can you give a concrete example? – Justin Bertram May 27 '21 at 13:20

1 Answers1

1

Apache ActiveMQ Artemis uses the JBoss Logging framework to do its logging and is configurable via the logging.properties, see the documentation.

You could use a custom handler to intercept warning/errors.