docker build: use OSS `log4j2.properties` (#878)
with Elasticsearch there were two flavours of the docker build: one for
the OSS build and one with X-Pack. accordingly, there were two
`log4j2.properties` files for the two cases and the `build.gradle`
picked up the correct one depending on the build.
commit 83e87f7e54
removed all non-OSS functionality from the build but
with that it also removed the logic which so far copied over the OSS
version of `log4j2.properties`.
what the diff doesn't show properly here is that `log4j2.properties` has
been deleted and `oss/log4j2.properties` has been moved into its place
without any changes to it.
this fixes #868
Signed-off-by: Ralph Ursprung <Ralph.Ursprung@avaloq.com>
This commit is contained in:
parent
c1250c963d
commit
0079fde645
|
@ -19,16 +19,15 @@ appender.rolling.layout.type_name = server
|
||||||
rootLogger.level = info
|
rootLogger.level = info
|
||||||
rootLogger.appenderRef.rolling.ref = rolling
|
rootLogger.appenderRef.rolling.ref = rolling
|
||||||
|
|
||||||
|
appender.header_warning.type = HeaderWarningAppender
|
||||||
|
appender.header_warning.name = header_warning
|
||||||
|
|
||||||
appender.deprecation_rolling.type = Console
|
appender.deprecation_rolling.type = Console
|
||||||
appender.deprecation_rolling.name = deprecation_rolling
|
appender.deprecation_rolling.name = deprecation_rolling
|
||||||
appender.deprecation_rolling.layout.type = OpenSearchJsonLayout
|
appender.deprecation_rolling.layout.type = OpenSearchJsonLayout
|
||||||
appender.deprecation_rolling.layout.type_name = deprecation
|
appender.deprecation_rolling.layout.type_name = deprecation
|
||||||
appender.deprecation_rolling.layout.opensearchmessagefields=x-opaque-id
|
|
||||||
appender.deprecation_rolling.filter.rate_limit.type = RateLimitingFilter
|
appender.deprecation_rolling.filter.rate_limit.type = RateLimitingFilter
|
||||||
|
|
||||||
appender.header_warning.type = HeaderWarningAppender
|
|
||||||
appender.header_warning.name = header_warning
|
|
||||||
|
|
||||||
logger.deprecation.name = org.opensearch.deprecation
|
logger.deprecation.name = org.opensearch.deprecation
|
||||||
logger.deprecation.level = deprecation
|
logger.deprecation.level = deprecation
|
||||||
logger.deprecation.appenderRef.deprecation_rolling.ref = deprecation_rolling
|
logger.deprecation.appenderRef.deprecation_rolling.ref = deprecation_rolling
|
||||||
|
@ -39,7 +38,6 @@ appender.index_search_slowlog_rolling.type = Console
|
||||||
appender.index_search_slowlog_rolling.name = index_search_slowlog_rolling
|
appender.index_search_slowlog_rolling.name = index_search_slowlog_rolling
|
||||||
appender.index_search_slowlog_rolling.layout.type = OpenSearchJsonLayout
|
appender.index_search_slowlog_rolling.layout.type = OpenSearchJsonLayout
|
||||||
appender.index_search_slowlog_rolling.layout.type_name = index_search_slowlog
|
appender.index_search_slowlog_rolling.layout.type_name = index_search_slowlog
|
||||||
appender.index_search_slowlog_rolling.layout.opensearchmessagefields=message,took,took_millis,total_hits,stats,search_type,total_shards,source,id
|
|
||||||
|
|
||||||
logger.index_search_slowlog_rolling.name = index.search.slowlog
|
logger.index_search_slowlog_rolling.name = index.search.slowlog
|
||||||
logger.index_search_slowlog_rolling.level = trace
|
logger.index_search_slowlog_rolling.level = trace
|
||||||
|
@ -50,88 +48,8 @@ appender.index_indexing_slowlog_rolling.type = Console
|
||||||
appender.index_indexing_slowlog_rolling.name = index_indexing_slowlog_rolling
|
appender.index_indexing_slowlog_rolling.name = index_indexing_slowlog_rolling
|
||||||
appender.index_indexing_slowlog_rolling.layout.type = OpenSearchJsonLayout
|
appender.index_indexing_slowlog_rolling.layout.type = OpenSearchJsonLayout
|
||||||
appender.index_indexing_slowlog_rolling.layout.type_name = index_indexing_slowlog
|
appender.index_indexing_slowlog_rolling.layout.type_name = index_indexing_slowlog
|
||||||
appender.index_indexing_slowlog_rolling.layout.opensearchmessagefields=message,took,took_millis,doc_type,id,routing,source
|
|
||||||
|
|
||||||
logger.index_indexing_slowlog.name = index.indexing.slowlog.index
|
logger.index_indexing_slowlog.name = index.indexing.slowlog.index
|
||||||
logger.index_indexing_slowlog.level = trace
|
logger.index_indexing_slowlog.level = trace
|
||||||
logger.index_indexing_slowlog.appenderRef.index_indexing_slowlog_rolling.ref = index_indexing_slowlog_rolling
|
logger.index_indexing_slowlog.appenderRef.index_indexing_slowlog_rolling.ref = index_indexing_slowlog_rolling
|
||||||
logger.index_indexing_slowlog.additivity = false
|
logger.index_indexing_slowlog.additivity = false
|
||||||
|
|
||||||
appender.audit_rolling.type = Console
|
|
||||||
appender.audit_rolling.name = audit_rolling
|
|
||||||
appender.audit_rolling.layout.type = PatternLayout
|
|
||||||
appender.audit_rolling.layout.pattern = {\
|
|
||||||
"type":"audit", \
|
|
||||||
"timestamp":"%d{yyyy-MM-dd'T'HH:mm:ss,SSSZ}"\
|
|
||||||
%varsNotEmpty{, "node.name":"%enc{%map{node.name}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "node.id":"%enc{%map{node.id}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "host.name":"%enc{%map{host.name}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "host.ip":"%enc{%map{host.ip}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "event.type":"%enc{%map{event.type}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "event.action":"%enc{%map{event.action}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "authentication.type":"%enc{%map{authentication.type}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "user.name":"%enc{%map{user.name}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "user.run_by.name":"%enc{%map{user.run_by.name}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "user.run_as.name":"%enc{%map{user.run_as.name}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "user.realm":"%enc{%map{user.realm}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "user.run_by.realm":"%enc{%map{user.run_by.realm}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "user.run_as.realm":"%enc{%map{user.run_as.realm}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "user.roles":%map{user.roles}}\
|
|
||||||
%varsNotEmpty{, "apikey.id":"%enc{%map{apikey.id}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "apikey.name":"%enc{%map{apikey.name}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "origin.type":"%enc{%map{origin.type}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "origin.address":"%enc{%map{origin.address}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "realm":"%enc{%map{realm}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "url.path":"%enc{%map{url.path}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "url.query":"%enc{%map{url.query}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "request.method":"%enc{%map{request.method}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "request.body":"%enc{%map{request.body}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "request.id":"%enc{%map{request.id}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "action":"%enc{%map{action}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "request.name":"%enc{%map{request.name}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "indices":%map{indices}}\
|
|
||||||
%varsNotEmpty{, "opaque_id":"%enc{%map{opaque_id}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "x_forwarded_for":"%enc{%map{x_forwarded_for}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "transport.profile":"%enc{%map{transport.profile}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "rule":"%enc{%map{rule}}{JSON}"}\
|
|
||||||
%varsNotEmpty{, "event.category":"%enc{%map{event.category}}{JSON}"}\
|
|
||||||
}%n
|
|
||||||
# "node.name" node name from the `opensearch.yml` settings
|
|
||||||
# "node.id" node id which should not change between cluster restarts
|
|
||||||
# "host.name" unresolved hostname of the local node
|
|
||||||
# "host.ip" the local bound ip (i.e. the ip listening for connections)
|
|
||||||
# "event.type" a received REST request is translated into one or more transport requests. This indicates which processing layer generated the event "rest" or "transport" (internal)
|
|
||||||
# "event.action" the name of the audited event, eg. "authentication_failed", "access_granted", "run_as_granted", etc.
|
|
||||||
# "authentication.type" one of "realm", "api_key", "token", "anonymous" or "internal"
|
|
||||||
# "user.name" the subject name as authenticated by a realm
|
|
||||||
# "user.run_by.name" the original authenticated subject name that is impersonating another one.
|
|
||||||
# "user.run_as.name" if this "event.action" is of a run_as type, this is the subject name to be impersonated as.
|
|
||||||
# "user.realm" the name of the realm that authenticated "user.name"
|
|
||||||
# "user.run_by.realm" the realm name of the impersonating subject ("user.run_by.name")
|
|
||||||
# "user.run_as.realm" if this "event.action" is of a run_as type, this is the realm name the impersonated user is looked up from
|
|
||||||
# "user.roles" the roles array of the user; these are the roles that are granting privileges
|
|
||||||
# "apikey.id" this field is present if and only if the "authentication.type" is "api_key"
|
|
||||||
# "apikey.name" this field is present if and only if the "authentication.type" is "api_key"
|
|
||||||
# "origin.type" it is "rest" if the event is originating (is in relation to) a REST request; possible other values are "transport" and "ip_filter"
|
|
||||||
# "origin.address" the remote address and port of the first network hop, i.e. a REST proxy or another cluster node
|
|
||||||
# "realm" name of a realm that has generated an "authentication_failed" or an "authentication_successful"; the subject is not yet authenticated
|
|
||||||
# "url.path" the URI component between the port and the query string; it is percent (URL) encoded
|
|
||||||
# "url.query" the URI component after the path and before the fragment; it is percent (URL) encoded
|
|
||||||
# "request.method" the method of the HTTP request, i.e. one of GET, POST, PUT, DELETE, OPTIONS, HEAD, PATCH, TRACE, CONNECT
|
|
||||||
# "request.body" the content of the request body entity, JSON escaped
|
|
||||||
# "request.id" a synthentic identifier for the incoming request, this is unique per incoming request, and consistent across all audit events generated by that request
|
|
||||||
# "action" an action is the most granular operation that is authorized and this identifies it in a namespaced way (internal)
|
|
||||||
# "request.name" if the event is in connection to a transport message this is the name of the request class, similar to how rest requests are identified by the url path (internal)
|
|
||||||
# "indices" the array of indices that the "action" is acting upon
|
|
||||||
# "opaque_id" opaque value conveyed by the "X-Opaque-Id" request header
|
|
||||||
# "x_forwarded_for" the addresses from the "X-Forwarded-For" request header, as a verbatim string value (not an array)
|
|
||||||
# "transport.profile" name of the transport profile in case this is a "connection_granted" or "connection_denied" event
|
|
||||||
# "rule" name of the applied rule if the "origin.type" is "ip_filter"
|
|
||||||
# "event.category" fixed value "opensearch-audit"
|
|
||||||
|
|
||||||
logger.xmlsig.name = org.apache.xml.security.signature.XMLSignature
|
|
||||||
logger.xmlsig.level = error
|
|
||||||
logger.samlxml_decrypt.name = org.opensaml.xmlsec.encryption.support.Decrypter
|
|
||||||
logger.samlxml_decrypt.level = fatal
|
|
||||||
logger.saml2_decrypt.name = org.opensaml.saml.saml2.encryption.Decrypter
|
|
||||||
logger.saml2_decrypt.level = fatal
|
|
||||||
|
|
|
@ -1,55 +0,0 @@
|
||||||
#
|
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
|
||||||
#
|
|
||||||
# The OpenSearch Contributors require contributions made to
|
|
||||||
# this file be licensed under the Apache-2.0 license or a
|
|
||||||
# compatible open source license.
|
|
||||||
#
|
|
||||||
# Modifications Copyright OpenSearch Contributors. See
|
|
||||||
# GitHub history for details.
|
|
||||||
#
|
|
||||||
|
|
||||||
status = error
|
|
||||||
|
|
||||||
appender.rolling.type = Console
|
|
||||||
appender.rolling.name = rolling
|
|
||||||
appender.rolling.layout.type = OpenSearchJsonLayout
|
|
||||||
appender.rolling.layout.type_name = server
|
|
||||||
|
|
||||||
rootLogger.level = info
|
|
||||||
rootLogger.appenderRef.rolling.ref = rolling
|
|
||||||
|
|
||||||
appender.header_warning.type = HeaderWarningAppender
|
|
||||||
appender.header_warning.name = header_warning
|
|
||||||
|
|
||||||
appender.deprecation_rolling.type = Console
|
|
||||||
appender.deprecation_rolling.name = deprecation_rolling
|
|
||||||
appender.deprecation_rolling.layout.type = OpenSearchJsonLayout
|
|
||||||
appender.deprecation_rolling.layout.type_name = deprecation
|
|
||||||
appender.deprecation_rolling.filter.rate_limit.type = RateLimitingFilter
|
|
||||||
|
|
||||||
logger.deprecation.name = org.opensearch.deprecation
|
|
||||||
logger.deprecation.level = deprecation
|
|
||||||
logger.deprecation.appenderRef.deprecation_rolling.ref = deprecation_rolling
|
|
||||||
logger.deprecation.appenderRef.header_warning.ref = header_warning
|
|
||||||
logger.deprecation.additivity = false
|
|
||||||
|
|
||||||
appender.index_search_slowlog_rolling.type = Console
|
|
||||||
appender.index_search_slowlog_rolling.name = index_search_slowlog_rolling
|
|
||||||
appender.index_search_slowlog_rolling.layout.type = OpenSearchJsonLayout
|
|
||||||
appender.index_search_slowlog_rolling.layout.type_name = index_search_slowlog
|
|
||||||
|
|
||||||
logger.index_search_slowlog_rolling.name = index.search.slowlog
|
|
||||||
logger.index_search_slowlog_rolling.level = trace
|
|
||||||
logger.index_search_slowlog_rolling.appenderRef.index_search_slowlog_rolling.ref = index_search_slowlog_rolling
|
|
||||||
logger.index_search_slowlog_rolling.additivity = false
|
|
||||||
|
|
||||||
appender.index_indexing_slowlog_rolling.type = Console
|
|
||||||
appender.index_indexing_slowlog_rolling.name = index_indexing_slowlog_rolling
|
|
||||||
appender.index_indexing_slowlog_rolling.layout.type = OpenSearchJsonLayout
|
|
||||||
appender.index_indexing_slowlog_rolling.layout.type_name = index_indexing_slowlog
|
|
||||||
|
|
||||||
logger.index_indexing_slowlog.name = index.indexing.slowlog.index
|
|
||||||
logger.index_indexing_slowlog.level = trace
|
|
||||||
logger.index_indexing_slowlog.appenderRef.index_indexing_slowlog_rolling.ref = index_indexing_slowlog_rolling
|
|
||||||
logger.index_indexing_slowlog.additivity = false
|
|
Loading…
Reference in New Issue