fbcfd258f557310a9a63320341af15615cb6e119
[aai/traversal.git] / aai-traversal / ajsc-shared-config / etc / localhost-access-logback.xml
1 <!--
2
3     ============LICENSE_START=======================================================
4     org.onap.aai
5     ================================================================================
6     Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7     ================================================================================
8     Licensed under the Apache License, Version 2.0 (the "License");
9     you may not use this file except in compliance with the License.
10     You may obtain a copy of the License at
11
12        http://www.apache.org/licenses/LICENSE-2.0
13
14     Unless required by applicable law or agreed to in writing, software
15     distributed under the License is distributed on an "AS IS" BASIS,
16     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17     See the License for the specific language governing permissions and
18     limitations under the License.
19     ============LICENSE_END=========================================================
20
21     ECOMP is a trademark and service mark of AT&T Intellectual Property.
22
23 -->
24 <configuration>
25         <appender name="ACCESS"
26                 class="ch.qos.logback.core.rolling.RollingFileAppender">
27                 <file>${AJSC_HOME}/logs/ajsc-jetty/localhost_access.log</file>
28                 <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
29                         <fileNamePattern>${AJSC_HOME}/logs/ajsc-jetty/localhost_access.log.%d{yyyy-MM-dd}
30                         </fileNamePattern>
31                 </rollingPolicy>
32                 <encoder class="org.onap.aai.logging.CustomLogPatternLayoutEncoder">
33                         <Pattern>%a %u %z [%t] "%m %U%q" %s %b %y %i{X-TransactionId} %i{X-FromAppId} %i{X-Forwarded-For} %i{X-AAI-SSL-Client-CN} %i{X-AAI-SSL-Client-OU} %i{X-AAI-SSL-Client-O} %i{X-AAI-SSL-Client-L} %i{X-AAI-SSL-Client-ST} %i{X-AAI-SSL-Client-C} %i{X-AAI-SSL-Client-NotBefore} %i{X-AAI-SSL-Client-NotAfter} %i{X-AAI-SSL-Client-DN} %D</Pattern>
34                 </encoder>
35         </appender>
36         <appender-ref ref="ACCESS" />
37 </configuration>
38
39 <!-- 
40 %a - Remote IP address
41 %A - Local IP address
42 %b - Bytes sent, excluding HTTP headers, or '-' if no bytes were sent
43 %B - Bytes sent, excluding HTTP headers
44 %h - Remote host name
45 %H - Request protocol
46 %l - Remote logical username from identd (always returns '-')
47 %m - Request method
48 %p - Local port
49 %q - Query string (prepended with a '?' if it exists, otherwise an empty string
50 %r - First line of the request
51 %s - HTTP status code of the response
52 %S - User session ID
53 %t - Date and time, in Common Log Format format
54 %u - Remote user that was authenticated
55 %U - Requested URL path
56 %v - Local server name
57 %I - current request thread name (can compare later with stacktraces)
58
59 %z - Custom pattern that parses the cert for the subject
60 %y - Custom pattern determines rest or dme2
61  -->