blob: 1dab05a74ac51c0480d3d3126e6c9d0a3a860f55 [file] [log] [blame]
Andy Bavierf15d53a2018-03-07 17:34:30 -07001{{/* vim: set filetype=mustache: */}}
2{{/*
3Copyright 2018-present Open Networking Foundation
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16*/}}
17{{/*
18Expand the name of the chart.
19*/}}
20{{- define "onos.name" -}}
21{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
22{{- end -}}
23
24{{/*
25Create a default fully qualified app name.
26We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
27If release name contains chart name it will be used as a full name.
28*/}}
29{{- define "onos.fullname" -}}
30{{- if .Values.fullnameOverride -}}
31{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
32{{- else -}}
33{{- $name := default .Chart.Name .Values.nameOverride -}}
34{{- if contains $name .Release.Name -}}
35{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
36{{- else -}}
37{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
38{{- end -}}
39{{- end -}}
40{{- end -}}
41
42{{/*
43Create chart name and version as used by the chart label.
44*/}}
45{{- define "onos.chart" -}}
46{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
47{{- end -}}
Matteo Scandolo55ff1502018-09-06 15:15:01 -070048
49{{- define "onos.logCfg" -}}
50################################################################################
51#
52# Licensed to the Apache Software Foundation (ASF) under one or more
53# contributor license agreements. See the NOTICE file distributed with
54# this work for additional information regarding copyright ownership.
55# The ASF licenses this file to You under the Apache License, Version 2.0
56# (the "License"); you may not use this file except in compliance with
57# the License. You may obtain a copy of the License at
58#
59# http://www.apache.org/licenses/LICENSE-2.0
60#
61# Unless required by applicable law or agreed to in writing, software
62# distributed under the License is distributed on an "AS IS" BASIS,
63# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
64# See the License for the specific language governing permissions and
65# limitations under the License.
66#
67################################################################################
68
69# Root logger
Zack Williams7a506d22018-09-24 17:00:13 -070070log4j.rootLogger=INFO, out, json, osgi:*, stdout
Matteo Scandolo55ff1502018-09-06 15:15:01 -070071log4j.throwableRenderer=org.apache.log4j.OsgiThrowableRenderer
72
73# CONSOLE appender not used by default
74log4j.appender.stdout=org.apache.log4j.ConsoleAppender
75log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
76log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n
77
78# File appender
79log4j.appender.out=org.apache.log4j.RollingFileAppender
80log4j.appender.out.layout=org.apache.log4j.PatternLayout
81log4j.appender.out.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n
82log4j.appender.out.file=${karaf.data}/log/karaf.log
83log4j.appender.out.append=true
84log4j.appender.out.maxFileSize=10MB
85log4j.appender.out.maxBackupIndex=10
86
Zack Williams7a506d22018-09-24 17:00:13 -070087# JSON-ish appender (doesn't handle quotes in fields correctly)
88# docs: https://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/PatternLayout.html
89log4j.appender.json=org.apache.log4j.RollingFileAppender
90log4j.appender.json.layout=org.apache.log4j.PatternLayout
91log4j.appender.json.layout.ConversionPattern={"@timestamp":"%d{yyyy-MM-dd'T'HH:mm:ss.SSS'Z'}","levelname":"%p","threadName":"%t","category":"%c{1}","bundle.id":"%X{bundle.id}","bundle.name":"%X{bundle.name}","bundle.version":"%X{bundle.version}","message":"%m"}%n
92log4j.appender.json.file=${karaf.data}/log/karaf_json.log
93log4j.appender.json.append=true
94log4j.appender.json.maxFileSize=10MB
95log4j.appender.json.maxBackupIndex=10
96
97# Sift appender - one logfile per bundle ID
Matteo Scandolo55ff1502018-09-06 15:15:01 -070098log4j.appender.sift=org.apache.log4j.sift.MDCSiftingAppender
99log4j.appender.sift.key=bundle.name
100log4j.appender.sift.default=karaf
101log4j.appender.sift.appender=org.apache.log4j.FileAppender
102log4j.appender.sift.appender.layout=org.apache.log4j.PatternLayout
103log4j.appender.sift.appender.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %m%n
104log4j.appender.sift.appender.file=${karaf.data}/log/$\\{bundle.name\\}.log
105log4j.appender.sift.appender.append=true
106
107# Application logs
Matteo Scandolo02112a92018-09-06 15:26:59 -0700108{{ .Values.application_logs }}
109
Zack Williams7a506d22018-09-24 17:00:13 -0700110{{- end -}}