From 450c94f92fd4f970c9dd662bedcc541073058beb Mon Sep 17 00:00:00 2001 From: sheetalm Date: Wed, 4 Apr 2018 15:06:18 +0530 Subject: Activity Spec - Logging changes Resolved review comments 1 Add logback.xml 2 Configure LoggingRequestFilter in beans-services.xml 3 Remove unwanted LoggingFilter from web.xml Change-Id: I00d2c168458ad60517fc9dd4389c2125bc63bc25 Issue-ID: SDC-1048 Signed-off-by: sheetalm --- .../activity-spec-assembly/logback.xml | 173 +++++++++++++++++++++ 1 file changed, 173 insertions(+) create mode 100644 services/activity-spec/activity-spec-web/activity-spec-assembly/logback.xml (limited to 'services/activity-spec/activity-spec-web/activity-spec-assembly/logback.xml') diff --git a/services/activity-spec/activity-spec-web/activity-spec-assembly/logback.xml b/services/activity-spec/activity-spec-web/activity-spec-assembly/logback.xml new file mode 100644 index 0000000000..949510aac9 --- /dev/null +++ b/services/activity-spec/activity-spec-web/activity-spec-assembly/logback.xml @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + ${log.location}/error.log + + + INFO + + + + + AUDIT + + NEUTRAL + DENY + + + + + METRICS + + NEUTRAL + DENY + + + + ${log.location}/error.log.%i + + 1 + 10 + + + + 20MB + + + + + %d{yyyy-MM-dd'T'HH:mm:ss.SSSXXX}|%X{RequestId}|%thread||%X{ServiceName}|%X{PartnerName}|%X{TargetEntity}|%X{TargetServiceName}|%level||%X{ErrorCode}|%X{ErrorDescription}|%msg%n + + + + + + + + ${log.location}/debug.log + + + DEBUG + ACCEPT + DENY + + + + ${log.location}/debug.log.%i + + 1 + 10 + + + + 20MB + + + + + %d{yyyy-MM-dd'T'HH:mm:ss.SSSXXX}|%X{RequestId}|%msg%n + + + + + + + + + + + + ${log.location}/audit.log + + + + AUDIT + + DENY + ACCEPT + + + + ${log.location}/audit.log.%i + + 1 + 10 + + + + 20MB + + + + + %X{BeginTimestamp}|%X{EndTimestamp}|%X{RequestId}|%X{ServiceInstanceId}|%thread||%X{ServiceName}|%X{PartnerName}|%X{StatusCode}|%X{ResponseCode}|%X{ResponseDescription}|%X{InstanceId}|%level||%X{ServerIpAddress}|%X{ElapsedTime}|%X{Server}|%X{ClientIpAddress}||||||||%msg%n + + + + + + + ${log.location}/metrics.log + + + + METRICS + + DENY + ACCEPT + + + + ${log.location}/metrics.log.%i + + 1 + 10 + + + + 20MB + + + + + %X{BeginTimestamp}|%X{EndTimestamp}|%X{RequestId}|%X{ServiceInstanceId}|%thread||%X{ServiceName}|%X{TargetEntity}|%X{TargetServiceName}|%X{StatusCode}|%X{ResponseCode}|%X{ResponseDescription}|%X{InstanceId}|%level||%X{ServerIpAddress}|%X{ElapsedTime}|%X{Server}|%X{ClientIpAddress}||||||||||%msg%n + + + + + + + + + + + + \ No newline at end of file -- cgit 1.2.3-korg