7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste# The contents of this file are subject to the terms of the Common Development and
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste# Distribution License (the License). You may not use this file except in compliance with the
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste# License.
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste#
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste# You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste# specific language governing permission and limitations under the License.
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste#
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste# When distributing Covered Software, include this CDDL Header Notice in each file and include
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste# the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste# Header, with the fields enclosed by brackets [] replaced by your own identifying
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste# information: "Portions copyright [year] [name of copyright owner]".
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste#
c299abfd457a72f3b93d443fe40ad36169e1c0a8Craig McDonnell# Copyright 2015-2016 ForgeRock AS.
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste########################################################################################################################
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste# Global configuration properties
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste########################################################################################################################
7cbae22b7560eefcf086863923459880aa87f014Jaco Joosteaudit-description=Audit Logging
7cbae22b7560eefcf086863923459880aa87f014Jaco Joostea001=Audit logging
7cbae22b7560eefcf086863923459880aa87f014Jaco Joostea001.help=Select to enable audit logging for OpenAM.
f1f35895dc6dc528d590c6077b0bbae248bc0fd8Jaco Joostea004=Field exclusion policies
f1f35895dc6dc528d590c6077b0bbae248bc0fd8Jaco Joostea004.help=A list of fields or values (JSON pointers) to exclude from the audit event.
f1f35895dc6dc528d590c6077b0bbae248bc0fd8Jaco Joostea004.help.txt=To specify a field or value within a field to be filtered out of the event, start the pointer with the event \
f1f35895dc6dc528d590c6077b0bbae248bc0fd8Jaco Jooste topic (access, activity, authentication or config) followed by the field name or the path to the value in the field. \
f1f35895dc6dc528d590c6077b0bbae248bc0fd8Jaco Jooste For example to filter out the userId field in an access event the pointer will be:<p>/access/userId</p> and to \
f1f35895dc6dc528d590c6077b0bbae248bc0fd8Jaco Jooste filter out the content-type value in the http.request.headers field the pointer will be:\
f1f35895dc6dc528d590c6077b0bbae248bc0fd8Jaco Jooste <p>/access/http/request/headers/content-type</p>Only values that are made up of JSON strings can be manipulated in \
f1f35895dc6dc528d590c6077b0bbae248bc0fd8Jaco Jooste this way.
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste
7cbae22b7560eefcf086863923459880aa87f014Jaco Joosteaudit.topic.access=Access
7cbae22b7560eefcf086863923459880aa87f014Jaco Joosteaudit.topic.activity=Activity
7cbae22b7560eefcf086863923459880aa87f014Jaco Joosteaudit.topic.authentication=Authentication
7cbae22b7560eefcf086863923459880aa87f014Jaco Joosteaudit.topic.config=Configuration
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste########################################################################################################################
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Jooste# Audit event handler translations
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste########################################################################################################################
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Joostehandler.name.csv=CSV
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Joostehandler.name.jdbc=JDBC
95ac3084c619fd042f83410e5436ec3f1c3da190Brian Baileyhandler.name.syslog=Syslog
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darleyhandler.name.elasticsearch=Elasticsearch
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joostehandler.name.jms=JMS
7cbae22b7560eefcf086863923459880aa87f014Jaco Jooste
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Jooste# Additions to handler properties. Other properties are stored in commons audit translation.properties.
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Joosteaudit.handlers.jdbc.databaseType.help=Select the database to use for logging audit events.
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Joosteaudit.handler.jdbc.oracle=Oracle
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Joosteaudit.handler.jdbc.mysql=MySQL
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Joosteaudit.handler.jdbc.other=Other
62639ee1329be2d687701dfa01fc006314440bf7Jaco Jooste
62639ee1329be2d687701dfa01fc006314440bf7Jaco Jooste# Event handler config table
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostesubconfig.section.header=Audit Event Handlers
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostesubconfig.table.column.name=Name
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostesubconfig.table.column.type=Type
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joosteservices.subconfig.table.title=Event Handler Instances
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joosteservices.subconfig.table.empty.message=There are no event handler instances.
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostelabel.items=Item(s)
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostebutton.new=New...
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostebutton.delete=Delete
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostebutton.cancel=Cancel
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostebutton.reset=Reset
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostebutton.save=Save
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostebutton.next=Next
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostebutton.add=Add...
62639ee1329be2d687701dfa01fc006314440bf7Jaco Jooste
62639ee1329be2d687701dfa01fc006314440bf7Jaco Jooste# Event handler config messages
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joosteevent.handler.message.deleted=Event handler has been deleted.
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joosteevent.handler.message.deleted.plural=Event handlers have been deleted.
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joosteevent.handler.selection.message=Select the event handler to create
62639ee1329be2d687701dfa01fc006314440bf7Jaco Jooste
62639ee1329be2d687701dfa01fc006314440bf7Jaco Jooste# Event handler config creation
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joosteevent.handler.page.title.add=Add Audit Event Handler
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joosteevent.handler.add.name=Event handler name
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joosteevent.handler.page.title.select=Select Audit Event Handler
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joosteevent.handler.page.title.edit=Edit Audit Event Handler - {0}
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joosteblank.header=
62639ee1329be2d687701dfa01fc006314440bf7Jaco Jooste
62639ee1329be2d687701dfa01fc006314440bf7Jaco Jooste# Inline messages
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostemessage.input.error=Invalid or Missing Input
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostemessage.missing.name=The name is missing or empty.
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostemessage.updated=Profile was updated.
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostemessage.error=Error
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostemessage.warning=Warning
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostemessage.information=Information
62639ee1329be2d687701dfa01fc006314440bf7Jaco Joostemessage.question=Question
d04cb187fca1113d2306bbd6157bbc7cad75db7bBrian Bailey
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Jooste########################################################################################################################
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Jooste# Common handler section properties
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Jooste########################################################################################################################
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Global.commonHandler=General Handler Configuration
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Global.commonHandlerPlugin=Audit Event Handler Factory
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Organization.commonHandler=General Handler Configuration
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Organization.commonHandlerPlugin=Audit Event Handler Factory
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Jooste
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Jooste########################################################################################################################
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Jooste# CSV handler section properties
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Jooste########################################################################################################################
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Joostesections.CSV=\
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley commonHandler \
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley csvConfig \
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley csvFileRotation \
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley csvFileRetention \
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley csvBuffering \
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley csvSecurity \
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley commonHandlerPlugin
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Global.csvConfig=CSV Configuration
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Global.csvFileRotation=File Rotation
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Global.csvFileRetention=File Retention
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Global.csvBuffering=Buffering
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Global.csvSecurity=Tamper Evident Configuration
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Organization.csvConfig=CSV Configuration
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Organization.csvFileRotation=File Rotation
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Organization.csvFileRetention=File Retention
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Organization.csvBuffering=Buffering
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Organization.csvSecurity=Tamper Evident Configuration
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Jooste
95ac3084c619fd042f83410e5436ec3f1c3da190Brian Bailey########################################################################################################################
95ac3084c619fd042f83410e5436ec3f1c3da190Brian Bailey# Syslog handler section properties
95ac3084c619fd042f83410e5436ec3f1c3da190Brian Bailey########################################################################################################################
95ac3084c619fd042f83410e5436ec3f1c3da190Brian Baileysections.Syslog=\
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley commonHandler \
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley sysLogConfig \
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley sysLogBuffering \
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley commonHandlerPlugin
95ac3084c619fd042f83410e5436ec3f1c3da190Brian Bailey
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Global.sysLogConfig=Syslog Configuration
51b400961df6c0ab31c46aa571b29ecbfc89b8c2Julian Kigwanasection.label.AuditService.Global.sysLogBuffering=Buffering
95ac3084c619fd042f83410e5436ec3f1c3da190Brian Bailey
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Organization.sysLogConfig=Syslog Configuration
51b400961df6c0ab31c46aa571b29ecbfc89b8c2Julian Kigwanasection.label.AuditService.Organization.sysLogBuffering=Buffering
95ac3084c619fd042f83410e5436ec3f1c3da190Brian Bailey
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Jooste########################################################################################################################
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Jooste# JDBC handler section properties
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Jooste########################################################################################################################
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Joostesections.JDBC=\
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley commonHandler \
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley jdbcDatabaseConfig \
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley jdbcBuffering \
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Riley commonHandlerPlugin
c423fd5d4f121413c5e72c134412b6ce5daa0dd9Jaco Jooste
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Global.jdbcDatabaseConfig=Database Configuration
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Global.jdbcBuffering=Buffering
11ddc496a78229c9c3e6f48a12f743e2d16d5180Jaco Jooste
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Organization.jdbcDatabaseConfig=Database Configuration
85bd3893466d6b3e7d2cc13c4c22955692a276f1Rich Rileysection.label.AuditService.Organization.jdbcBuffering=Buffering
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darley########################################################################################################################
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darley# Elasticsearch handler section properties
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darley########################################################################################################################
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darleysections.Elasticsearch=\
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darley commonHandler \
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darley elasticsearchConfig \
cefc5852a36a84f096c732412212ba15a7ea1d22James Darley elasticsearchAuthentication \
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darley elasticsearchBuffering \
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darley commonHandlerPlugin
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darley
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darleysection.label.AuditService.Global.elasticsearchConfig=Elasticsearch Configuration
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleysection.label.AuditService.Global.elasticsearchAuthentication=Authentication
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darleysection.label.AuditService.Global.elasticsearchBuffering=Buffering
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darley
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darleysection.label.AuditService.Organization.elasticsearchConfig=Elasticsearch Configuration
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleysection.label.AuditService.Organization.elasticsearchAuthentication=Authentication
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darleysection.label.AuditService.Organization.elasticsearchBuffering=Buffering
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darley
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Jooste########################################################################################################################
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Jooste# JMS handler section properties
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Jooste########################################################################################################################
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joostesections.JMS=\
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Jooste commonHandler \
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Jooste jmsConfiguration \
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Jooste batchEvents \
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Jooste commonHandlerPlugin
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Jooste
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joostesection.label.AuditService.Global.jmsConfiguration=JMS Configuration
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joostesection.label.AuditService.Global.batchEvents=Batch Events
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Jooste
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joostesection.label.AuditService.Organization.jmsConfiguration=JMS Configuration
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joostesection.label.AuditService.Organization.batchEvents=Batch Events
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Jooste
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoni########################################################################################################################
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoni# Splunk handler section properties
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoni########################################################################################################################
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantonisections.Splunk=\
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoni commonHandler \
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoni splunkConfig \
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoni splunkBuffering \
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoni commonHandlerPlugin
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoni
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantonisection.label.AuditService.Global.splunkConfig=Splunk Configuration
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantonisection.label.AuditService.Global.splunkBuffering=Buffering
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoni
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantonisection.label.AuditService.Organization.splunkConfig=Splunk Configuration
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantonisection.label.AuditService.Organization.splunkBuffering=Buffering
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoni
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoni
a0d2dd8bbfe00947bbd17788c78200234ccafda0David Luna########################################################################################################################
a0d2dd8bbfe00947bbd17788c78200234ccafda0David Luna# NOTE:
a0d2dd8bbfe00947bbd17788c78200234ccafda0David Luna# These properties were copied from commonAuditTranslation.properties in Common Audit.
a0d2dd8bbfe00947bbd17788c78200234ccafda0David Luna# Some of them were adjusted to include units. Consult this file before adding new properties.
a0d2dd8bbfe00947bbd17788c78200234ccafda0David Luna########################################################################################################################
a0d2dd8bbfe00947bbd17788c78200234ccafda0David Luna
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna# AuditService configuration
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.service.handlerForQueries=Query Handler
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.service.handlerForQueries.help=Handler for reading and querying
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.service.availableAuditEventHandlers=Available Handlers
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.service.availableAuditEventHandlers.help=List of available handler classes
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.service.filter.policies=Filter Policies
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.service.filter.policies.help=Create policies to filter parts of an audit event
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.service.filter.policies.include=List of inclusion policies
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.service.filter.policies.include.help=A list of fields (JSON pointers) to include in the audit event
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.service.filter.policies.exclude=List of exclusion policies
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.service.filter.policies.exclude.help=A list of fields (JSON pointers) to exclude from the audit event
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna# Configuration applicable to all handler types
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.all.name=Name
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.all.name.help=Name of the audit event handler
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.all.topics=Topics
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.all.topics.help=List of topics handled by an audit event handler
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.all.enabled=Enabled
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.all.enabled.help=Enables or disables an audit event handler
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna# CSV handler configuration
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.logDirectory=Log Directory
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.logDirectory.help=Directory in which to store audit log CSV files
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.formatting=CSV Output Formatting
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.formatting.quoteChar=Quote Character
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.formatting.quoteChar.help=Character to append and prepend to a CSV field
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.formatting.delimiterChar=Delimiter Character
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.formatting.delimiterChar.help=Character between CSV fields.
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.formatting.endOfLineSymbols=End of Line Symbols
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.formatting.endOfLineSymbols.help=Characters that mark the end of a line
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.security=CSV Tamper Evident Configuration
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.security.enabled=Is Enabled
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.security.enabled.help=Enables the CSV tamper evident feature
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.security.filename=Certificate Store Location
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.security.filename.help=Path to Java keystore
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.security.password=Certificate Store Password
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.security.password.help=Password for Java keystore
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.security.signatureInterval=Signature Interval
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.security.signatureInterval.help=Signature generation interval (seconds)
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.buffering=Buffering
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.buffering.help=Configuration for optional event buffering
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.buffering.enabled=Buffering Enabled
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.buffering.enabled.help=Enables or disables buffering
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.buffering.autoFlush=Flush Each Event Immediately
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.csv.buffering.autoFlush.help=Performance may be improved by writing all buffered events before flushing
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunahandler.factory=Factory Class Name
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunahandler.factory.help=The fully qualified class name of the factory responsible for creating the Audit Event \
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna Handler. The class must implement org.forgerock.openam.audit.AuditEventHandlerFactory.
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna# JDBC handler configuration
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.databaseType=Database Type
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.databaseType.help.txt=Identifies the database in use (MySQL, Oracle SQL)
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool=Connection Pool
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.driverClassName=JDBC Driver
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.driverClassName.help=Fully qualified JDBC driver class name
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.jdbcUrl=JDBC Database URL
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.jdbcUrl.help=Url of the JDBC database
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.username=Database Username
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.password=Database Password
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.autoCommit=Auto Commit
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.autoCommit.help=Enables or disables automatic committing of changes to the database
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.connectionTimeout=Connection Timeout (seconds)
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.connectionTimeout.help=Max wait time before failing the connection attempt
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.idleTimeout=Maximum Connection Idle Timeout (seconds)
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.idleTimeout.help=Max idle time before the connection is closed
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.maxLifetime=Maximum Connection Time (seconds)
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.maxLifetime.help=The maximum time a JDBC connection can be open
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.minIdle=Minimum Idle Connections
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.minIdle.help= Minimum number of idle connections in the connection pool
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.maxPoolSize=Maximum Connections
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.maxPoolSize.help=Maximum number of connections in the connection pool
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.poolName=Connection Pool Name
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.connectionPool.poolName.help=Name of the connection pool
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.tableMappings=Event to Database Schema Mappings
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.mapping.event=Audit Event Topic
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.mapping.table=Database Table
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.mapping.fieldToColumn=Field Mappings
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.mapping.fieldToColumn.help=Mapping of audit event topic fields to database table fields
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.buffering=Buffering
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.buffering.help=Configuration for optional event buffering
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.buffering.enabled=Buffering Enabled
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.buffering.enabled.help=Enables or disables audit event buffering
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.buffering.autoFlush=Flush Each Event Immediately
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.buffering.autoFlush.help=Performance may be improved by writing all buffered events before flushing
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.buffering.maxSize=Buffer Size (number of events)
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.buffering.maxSize.help=Size of the event buffer queue
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.buffering.maxSize.help.txt=Size of the queue where events are buffered before they are written to \
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna the database. This queue has to be big enough to store all incoming events that have not yet been written to the \
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna database. If the queue reaches capacity, the process will block until a write occurs.
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.buffering.writerThreads=Writer Threads
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.buffering.writerThreads.help=Number of threads used to write the buffered events
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.buffering.interval=Write Interval
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.buffering.interval.help=Interval at which buffered events are written to the database (seconds)
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.buffering.maxBatchedEvents=Max Batched Events
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.jdbc.buffering.maxBatchedEvents.help=Maximum number of batched statements the database can support per \
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna connection
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna# Syslog handler configuration
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.transportProtocol=Transport Protocol
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.host=Server hostname
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.host.help=Host name or IP address of receiving syslog server
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.port=Server port
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.port.help=Port number of receiving syslog server
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.connectTimeout=Connection timeout
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.connectTimeout.help=Timeout for connecting to syslog server (seconds)
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.facility=Facility
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.facility.help=Syslog facility value to apply to all events
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.severityFieldMappings=Map audit event field to Syslog Severity
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.severityFieldMappings.help=Defaults to INFORMATIONAL if no mapping is defined
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.severityFieldMapping.topic=Audit Event Topic
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.severityFieldMapping.field=Audit Event Field
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.severityFieldMapping.valueMappings=Value Mapping
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.severityFieldMapping.valueMappings.help=Mapping of event values to Syslog SEVERITY values
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.severityFieldMapping.valueMappings.help.txt=Syslog SEVERITY options: \
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna EMERGENCY: System is unusable\
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna ALERT: Action must be taken immediately\
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna CRITICAL: Critical conditions\
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna ERROR: Error conditions\
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna WARNING: Warning conditions\
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna NOTICE: Normal but significant conditions\
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna INFORMATIONAL: Informational messages\
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna DEBUG: Debug-level messages
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.buffering=Buffering
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.buffering.txt=Configuration for optional event buffering
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.buffering.enabled=Buffering Enabled
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.syslog.buffering.enabled.help=Enables or disables audit event buffering
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna# File rotation configuration
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.fileRotation=File Rotation
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.fileRotation.help=Configures audit file rotation
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.rotationFilePrefix=File Rotation Prefix
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.rotationFilePrefix.help=Prefix to prepend to audit files when rotating audit files
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.rotationTimes=Rotation Times
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.rotationTimes.help=Durations after midnight to trigger file rotation, in seconds.
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.rotationInterval=Rotation Interval
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.rotationInterval.help=Interval to trigger audit file rotations, in seconds. A negative or zero \
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna value disables this feature
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.rotationEnabled=Rotation Enabled
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.rotationEnabled.help=Enables and disables audit file rotation
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.rotationFileSuffix=File Rotation Suffix
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.rotationFileSuffix.help=Suffix to append to audit files when they are rotated. Suffix should \
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna be a timestamp
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.maxFileSize=Maximum File Size
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.maxFileSize.help=Maximum size, in bytes, which an audit file can grow to before rotation \
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna is triggered. A negative or zero value indicates this policy is disabled
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna# File retention configuration
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.fileRetention=File Retention
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.fileRetention.help=Configures audit file retention
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.maxNumberOfHistoryFiles=Maximum Number of Historical Files
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.maxNumberOfHistoryFiles.help=Maximum number of backup audit files allowed. A value of -1 \
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna disables pruning of old history files
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.maxDiskSpaceToUse=Maximum Disk Space
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.maxDiskSpaceToUse.help=The maximum amount of disk space the audit files can occupy, in bytes. \
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Luna A negative or zero value indicates this policy is disabled
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.minFreeSpaceRequired=Minimum Free Space Required
bef04a26027a0260575cf6d9b5e2c8cd589aec60David Lunaaudit.handlers.file.minFreeSpaceRequired.help=Minimum amount of disk space required, in bytes, on the system where \
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darley audit files are stored. A negative or zero value indicates this policy is disabled
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darley
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darley# Elasticsearch handler configuration
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleyaudit.handlers.elasticsearch.index=Elasticsearch Index
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleyaudit.handlers.elasticsearch.index.help=Elasticsearch index to which audit log messages will be written
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleyaudit.handlers.elasticsearch.hostname=Server Hostname
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleyaudit.handlers.elasticsearch.hostname.help=Host name or IP address of Elasticsearch server
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleyaudit.handlers.elasticsearch.port=Server Port
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleyaudit.handlers.elasticsearch.port.help=Port number of Elasticsearch server
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleyaudit.handlers.elasticsearch.ssl=SSL Enabled
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleyaudit.handlers.elasticsearch.ssl.help=Use HTTPS protocol for communication with Elasticsearch
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darleyaudit.handlers.elasticsearch.username=Username
155c05bbac47cd2c35bc51c930935fddcbcfd604James Darleyaudit.handlers.elasticsearch.password=Password
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleyaudit.handlers.elasticsearch.bufferingEnabled=Buffering Enabled
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleyaudit.handlers.elasticsearch.bufferingSize=Batch Size
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleyaudit.handlers.elasticsearch.bufferingSize.help=Number of audit log events to batch before submitting to Elasticsearch
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleyaudit.handlers.elasticsearch.bufferingMaxEvents=Queue Capacity
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleyaudit.handlers.elasticsearch.bufferingMaxEvents.help=Maximum number of audit logs in the batch queue; additional \
cefc5852a36a84f096c732412212ba15a7ea1d22James Darley events are dropped
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoniaudit.handlers.elasticsearch.bufferingWriteInterval=Write interval (in milliseconds)
cefc5852a36a84f096c732412212ba15a7ea1d22James Darleyaudit.handlers.elasticsearch.bufferingWriteInterval.help=Interval at which buffered events are written to Elasticsearch
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Jooste
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Jooste#JMS handler configuration
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.deliveryMode=Delivery Mode
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.deliveryMode.help=JMS mode to deliver the messages in, either PERSISTENT or NON_PERSISTENT
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.sessionMode=Session Mode
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.sessionMode.help=JMS session acknowledgement mode: AUTO, CLIENT, or DUPS_OK
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.batch=Batch Configuration Settings
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.batch.help=Batch configuration settings to be utilized if batch is enabled
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.publisher.batch.batchEnabled=Batch enabled
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.publisher.batch.batchEnabled.help=Boolean for batch delivery of audit events
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.publisher.batch.capacity=Capacity
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.publisher.batch.capacity.help=Maximum event count in the batch queue; additional events are dropped
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.publisher.batch.threadCount=Thread Count
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.publisher.batch.threadCount.help=Number of concurrent threads that pull events from the batch queue
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.publisher.batch.maxBatchedEvents=Max Batched
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.publisher.batch.maxBatchedEvents.help=Maximum number of events per batch
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.publisher.batch.insertTimeoutSec=Insert Timeout
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.publisher.batch.insertTimeoutSec.help=Waiting period (seconds) for available capacity, when a new event enters the queue
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.publisher.batch.pollTimeoutSec=Polling Timeout
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.publisher.batch.pollTimeoutSec.help=Worker thread waiting period (seconds) for the next event, before going idle
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.publisher.batch.shutdownTimeoutSec=Shutdown Timeout
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.publisher.batch.shutdownTimeoutSec.help=Application waiting period (seconds) for worker thread termination
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.jndi=JNDI Configuration Settings
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.jndi.help=JNDI initial context settings
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.jndi.contextProperties=JNDI Context Properties
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.jndi.contextProperties.help=Settings to populate the JNDI initial context with
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.jndi.topicName=JMS Topic Name
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.jndi.topicName.help=JNDI lookup name for the JMS topic
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.jndi.connectionFactoryName=JMS Connection Factory Name
c1294b91b94412bc057d660950ed0d3b3091bd38Jaco Joosteaudit.handlers.jms.jndi.connectionFactoryName.help=JNDI lookup name for the JMS connection factory
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoni
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoni#Splunk handler configuration
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoniaudit.handlers.splunk.authzToken=Authorization Token
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoniaudit.handlers.splunk.authzToken.help=Authorization token used to connect to Splunk HTTP Event Collector endpoint.
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoniaudit.handlers.splunk.hostname=Server Hostname
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoniaudit.handlers.splunk.hostname.help=Host name or IP address of Splunk server
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoniaudit.handlers.splunk.port=Server Port
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoniaudit.handlers.splunk.port.help=Port number of Splunk server
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoniaudit.handlers.splunk.ssl=SSL Enabled
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoniaudit.handlers.splunk.ssl.help=Use HTTPS protocol for communication with Splunk
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoniaudit.handlers.splunk.bufferingSize=Batch Size
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoniaudit.handlers.splunk.bufferingSize.help=Number of audit log events to batch before submitting to Splunk
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoniaudit.handlers.splunk.bufferingMaxEvents=Queue Capacity
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoniaudit.handlers.splunk.bufferingMaxEvents.help=Maximum number of audit logs in the batch queue; additional \
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoni events are dropped
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoniaudit.handlers.splunk.bufferingWriteInterval=Write interval (in milliseconds)
2f8cab1413091bd7ae919e8b35182cabaf187305Diego Colantoniaudit.handlers.splunk.bufferingWriteInterval.help=Interval at which buffered events are written to Splunk