[AAI] Reintegrate AAI OOM charts in main repo
[oom.git] / kubernetes / aai / components / aai-graphadmin / resources / config / localhost-access-logback.xml
1 <!--
2
3     ============LICENSE_START=======================================================
4     org.onap.aai
5     ================================================================================
6     Copyright © 2018 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 -->
22 <configuration>
23         <property name="AJSC_HOME" value="${AJSC_HOME:-.}" />
24         <appender name="ACCESS"
25                 class="ch.qos.logback.core.rolling.RollingFileAppender">
26                 <file>${AJSC_HOME}/logs/ajsc-jetty/localhost_access.log</file>
27                 <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
28                         <fileNamePattern>${AJSC_HOME}/logs/ajsc-jetty/localhost_access.log.%d{yyyy-MM-dd}
29                         </fileNamePattern>
30                 </rollingPolicy>
31                 <encoder class="org.onap.aai.logging.CustomLogPatternLayoutEncoder">
32                         <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>
33                 </encoder>
34         </appender>
35         <appender-ref ref="ACCESS" />
36 </configuration>
37
38 <!-- 
39 %a - Remote IP address
40 %A - Local IP address
41 %b - Bytes sent, excluding HTTP headers, or '-' if no bytes were sent
42 %B - Bytes sent, excluding HTTP headers
43 %h - Remote host name
44 %H - Request protocol
45 %l - Remote logical username from identd (always returns '-')
46 %m - Request method
47 %p - Local port
48 %q - Query string (prepended with a '?' if it exists, otherwise an empty string
49 %r - First line of the request
50 %s - HTTP status code of the response
51 %S - User session ID
52 %t - Date and time, in Common Log Format format
53 %u - Remote user that was authenticated
54 %U - Requested URL path
55 %v - Local server name
56 %I - current request thread name (can compare later with stacktraces)
57
58 %z - Custom pattern that parses the cert for the subject
59 %y - Custom pattern determines rest or dme2
60  -->