mirror of
https://github.com/apache/activemq-artemis.git
synced 2025-02-08 02:59:14 +00:00
The Audit log allows user to log some important actions, such as ones performed via management APIs or clients, like queue management, sending messages, etc. The log tries to record who (the user if any) doing what (like deleting a queue) with arguments (if any) and timestamps. By default the audit log is disabled. Through configuration can be easily turned on.
81 lines
3.3 KiB
Properties
81 lines
3.3 KiB
Properties
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership.
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
# (the "License"); you may not use this file except in compliance with
|
|
# the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
# Additional logger names to configure (root logger is always configured)
|
|
# Root logger option
|
|
loggers=org.jboss.logging,org.apache.activemq.artemis.core.server,org.apache.activemq.artemis.utils,org.apache.activemq.artemis.journal,org.apache.activemq.artemis.jms,org.apache.activemq.artemis.ra,org.apache.activemq.artemis.tests.unit,org.apache.activemq.artemis.tests.integration,org.apache.activemq.artemis.jms.tests,org.apache.activemq.audit
|
|
|
|
# Root logger level
|
|
logger.level=INFO
|
|
# ActiveMQ Artemis logger levels
|
|
logger.org.apache.activemq.artemis.core.server.level=INFO
|
|
logger.org.apache.activemq.artemis.journal.level=INFO
|
|
logger.org.apache.activemq.artemis.utils.level=INFO
|
|
logger.org.apache.activemq.artemis.jms.level=INFO
|
|
logger.org.apache.activemq.artemis.ra.level=INFO
|
|
logger.org.apache.activemq.artemis.tests.unit.level=INFO
|
|
logger.org.apache.activemq.artemis.tests.integration.level=INFO
|
|
logger.org.apache.activemq.artemis.jms.tests.level=INFO
|
|
|
|
# Root logger handlers
|
|
logger.handlers=CONSOLE,TEST
|
|
#logger.handlers=CONSOLE,FILE
|
|
|
|
# to enable audit change the level to INFO
|
|
logger.org.apache.activemq.audit.level=ERROR
|
|
logger.org.apache.activemq.audit.handlers=AUDIT_FILE
|
|
logger.org.apache.activemq.audit.useParentHandlers=false
|
|
|
|
# Console handler configuration
|
|
handler.CONSOLE=org.jboss.logmanager.handlers.ConsoleHandler
|
|
handler.CONSOLE.properties=autoFlush
|
|
handler.CONSOLE.level=FINE
|
|
handler.CONSOLE.autoFlush=true
|
|
handler.CONSOLE.formatter=PATTERN
|
|
|
|
# File handler configuration
|
|
handler.FILE=org.jboss.logmanager.handlers.FileHandler
|
|
handler.FILE.level=FINE
|
|
handler.FILE.properties=autoFlush,fileName
|
|
handler.FILE.autoFlush=true
|
|
handler.FILE.fileName=target/activemq.log
|
|
handler.FILE.formatter=PATTERN
|
|
|
|
# Console handler configuration
|
|
handler.TEST=org.apache.activemq.artemis.logs.AssertionLoggerHandler
|
|
handler.TEST.level=TRACE
|
|
handler.TEST.formatter=PATTERN
|
|
|
|
# Formatter pattern configuration
|
|
formatter.PATTERN=org.jboss.logmanager.formatters.PatternFormatter
|
|
formatter.PATTERN.properties=pattern
|
|
formatter.PATTERN.pattern=[%t] %d{HH:mm:ss,SSS} %-5p [%c] %s%E%n
|
|
|
|
#Audit logger
|
|
handler.AUDIT_FILE=org.jboss.logmanager.handlers.PeriodicRotatingFileHandler
|
|
handler.AUDIT_FILE.level=INFO
|
|
handler.AUDIT_FILE.properties=suffix,append,autoFlush,fileName
|
|
handler.AUDIT_FILE.suffix=.yyyy-MM-dd
|
|
handler.AUDIT_FILE.append=true
|
|
handler.AUDIT_FILE.autoFlush=true
|
|
handler.AUDIT_FILE.fileName=target/audit.log
|
|
handler.AUDIT_FILE.formatter=AUDIT_PATTERN
|
|
|
|
formatter.AUDIT_PATTERN=org.jboss.logmanager.formatters.PatternFormatter
|
|
formatter.AUDIT_PATTERN.properties=pattern
|
|
formatter.AUDIT_PATTERN.pattern=%d [AUDIT](%t) %s%E%n
|