-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Log Forwarding: enable Zookeeper logs
Change-Id: I20f9c009bf5b52c75647b6105754f71f4d7cbcd5
- Loading branch information
Showing
4 changed files
with
228 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[SERVICE] | ||
http_server On | ||
http_port 2020 | ||
log_level debug | ||
[INPUT] | ||
name tail | ||
tag ${K8S_NAMESPACE}.${K8S_NODENAME}.${K8S_PODNAME}.zookeeper | ||
path /watch/*.log | ||
path_key full_path | ||
refresh_interval 5 | ||
read_from_head True | ||
db /watch/zk_fluentbit.db | ||
[FILTER] | ||
name modify | ||
match * | ||
add namespace ${K8S_NAMESPACE} | ||
add nodeName ${K8S_NODENAME} | ||
add podName ${K8S_PODNAME} | ||
add ip ${K8S_PODIP} | ||
add labels_run zookeeper | ||
add component zookeeper | ||
{{- range .ExtraKeys }} | ||
add {{ .Key }} ${K8S_{{ .Value -}}} | ||
{{- end }} | ||
[OUTPUT] | ||
name stdout | ||
match * | ||
format json_lines | ||
[OUTPUT] | ||
name http | ||
match * | ||
uri /${K8S_NAMESPACE}.${K8S_NODENAME}.${K8S_PODNAME}.dib | ||
format json | ||
host {{ .FluentBitHTTPInputHost }} | ||
port {{ .FluentBitHTTPInputPort }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
<!-- | ||
Copyright 2022 The Apache Software Foundation | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
Define some default values that can be overridden by system properties | ||
--> | ||
<configuration> | ||
<!-- Uncomment this if you would like to expose Logback JMX beans --> | ||
<!--jmxConfigurator | ||
/--> | ||
|
||
<property name="zookeeper.console.threshold" value="INFO" /> | ||
|
||
<property name="zookeeper.log.dir" value="/var/log/" /> | ||
<property name="zookeeper.log.file" value="zookeeper.log" /> | ||
<property name="zookeeper.log.threshold" value="INFO" /> | ||
<property name="zookeeper.log.maxfilesize" value="256MB" /> | ||
<property name="zookeeper.log.maxbackupindex" value="2" /> | ||
|
||
<!-- | ||
console | ||
Add "console" to root logger if you want to use this | ||
--> | ||
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern>%d{ISO8601} [myid:%X{myid}] - %-5p [%t:%C{1}@%L] - %m%n</pattern> | ||
</encoder> | ||
<filter class="ch.qos.logback.classic.filter.ThresholdFilter"> | ||
<level>${zookeeper.console.threshold}</level> | ||
</filter> | ||
</appender> | ||
|
||
<!-- | ||
Add ROLLINGFILE to root logger to get log file output | ||
--> | ||
<appender name="ROLLINGFILE" class="ch.qos.logback.core.rolling.RollingFileAppender"> | ||
<File>${zookeeper.log.dir}/${zookeeper.log.file}</File> | ||
<encoder> | ||
<pattern>%d{ISO8601} [myid:%X{myid}] - %-5p [%t:%C{1}@%L] - %m%n</pattern> | ||
</encoder> | ||
<filter class="ch.qos.logback.classic.filter.ThresholdFilter"> | ||
<level>${zookeeper.log.threshold}</level> | ||
</filter> | ||
<rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy"> | ||
<maxIndex>${zookeeper.log.maxbackupindex}</maxIndex> | ||
<FileNamePattern>${zookeeper.log.dir}/${zookeeper.log.file}.%i</FileNamePattern> | ||
</rollingPolicy> | ||
<triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy"> | ||
<MaxFileSize>${zookeeper.log.maxfilesize}</MaxFileSize> | ||
</triggeringPolicy> | ||
</appender> | ||
|
||
<!-- | ||
Add TRACEFILE to root logger to get log file output | ||
Log TRACE level and above messages to a log file | ||
--> | ||
<!--property | ||
name="zookeeper.tracelog.dir" value="${zookeeper.log.dir}" /> | ||
<property name="zookeeper.tracelog.file" value="zookeeper_trace.log" /> | ||
<appender name="TRACEFILE" class="ch.qos.logback.core.FileAppender"> | ||
<File>${zookeeper.tracelog.dir}/${zookeeper.tracelog.file}</File> | ||
<encoder> | ||
<pattern>%d{ISO8601} [myid:%X{myid}] - %-5p [%t:%C{1}@%L] - %m%n</pattern> | ||
</encoder> | ||
<filter class="ch.qos.logback.classic.filter.ThresholdFilter"> | ||
<level>TRACE</level> | ||
</filter> | ||
</appender--> | ||
|
||
<!-- | ||
zk audit logging | ||
--> | ||
<!--property | ||
name="zookeeper.auditlog.file" value="zookeeper_audit.log" /> | ||
<property name="zookeeper.auditlog.threshold" value="INFO" /> | ||
<property name="audit.logger" value="INFO, RFAAUDIT" /> | ||
<appender name="RFAAUDIT" class="ch.qos.logback.core.rolling.RollingFileAppender"> | ||
<File>${zookeeper.log.dir}/${zookeeper.auditlog.file}</File> | ||
<encoder> | ||
<pattern>%d{ISO8601} %p %c{2}: %m%n</pattern> | ||
</encoder> | ||
<filter class="ch.qos.logback.classic.filter.ThresholdFilter"> | ||
<level>${zookeeper.auditlog.threshold}</level> | ||
</filter> | ||
<rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy"> | ||
<maxIndex>10</maxIndex> | ||
<FileNamePattern>${zookeeper.log.dir}/${zookeeper.auditlog.file}.%i</FileNamePattern> | ||
</rollingPolicy> | ||
<triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy"> | ||
<MaxFileSize>10MB</MaxFileSize> | ||
</triggeringPolicy> | ||
</appender> | ||
<logger name="org.apache.zookeeper.audit.Slf4jAuditLogger" additivity="false" | ||
level="${audit.logger}"> | ||
<appender-ref ref="RFAAUDIT" /> | ||
</logger--> | ||
|
||
<root level="INFO"> | ||
<appender-ref ref="CONSOLE" /> | ||
<appender-ref ref="ROLLINGFILE" /> | ||
</root> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters