blob: d1c712a985dc0e25fb501dee1f6dd49185a531cb [file] [log] [blame]
Zack Williams30c01f92017-02-19 23:38:52 -07001################################################################################
2#
3# Licensed to the Apache Software Foundation (ASF) under one or more
4# contributor license agreements. See the NOTICE file distributed with
5# this work for additional information regarding copyright ownership.
6# The ASF licenses this file to You under the Apache License, Version 2.0
7# (the "License"); you may not use this file except in compliance with
8# the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18################################################################################
19
20# Root logger
Zack Williamsc989f262017-05-11 13:02:59 -070021log4j.rootLogger={{ onos_log_level }}, out, logstash, osgi:*
Zack Williams30c01f92017-02-19 23:38:52 -070022log4j.throwableRenderer=org.apache.log4j.OsgiThrowableRenderer
23
24# CONSOLE appender not used by default
25log4j.appender.stdout=org.apache.log4j.ConsoleAppender
26log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
27log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n
28
29# logstash log4j appender
30log4j.appender.logstash=org.apache.log4j.net.SocketAppender
Zack Williams30c01f92017-02-19 23:38:52 -070031log4j.appender.logstash.Port={{ log4j_port }}
32log4j.appender.logstash.RemoteHost={{ logging_host }}
33log4j.appender.logstash.ReconnectionDelay=5000
34log4j.appender.logstash.Application=onoscord
35
36# File appender
37log4j.appender.out=org.apache.log4j.RollingFileAppender
38log4j.appender.out.layout=org.apache.log4j.PatternLayout
39log4j.appender.out.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n
40log4j.appender.out.file=${karaf.data}/log/karaf.log
41log4j.appender.out.append=true
42log4j.appender.out.maxFileSize=10MB
43log4j.appender.out.maxBackupIndex=10
44
45# Sift appender
46log4j.appender.sift=org.apache.log4j.sift.MDCSiftingAppender
47log4j.appender.sift.key=bundle.name
48log4j.appender.sift.default=karaf
49log4j.appender.sift.appender=org.apache.log4j.FileAppender
50log4j.appender.sift.appender.layout=org.apache.log4j.PatternLayout
51log4j.appender.sift.appender.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %m%n
52log4j.appender.sift.appender.file=${karaf.data}/log/$\\{bundle.name\\}.log
53log4j.appender.sift.appender.append=true
54