mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-25 20:53:33 +00:00
Add rule for detecting exceptions to fluentd config for GKE logging.
Bump version of gcp-fluentd container to 1.34
This commit is contained in:
parent
ac857a5ade
commit
42fbf93fb0
@ -2,23 +2,23 @@
|
|||||||
apiVersion: extensions/v1beta1
|
apiVersion: extensions/v1beta1
|
||||||
kind: DaemonSet
|
kind: DaemonSet
|
||||||
metadata:
|
metadata:
|
||||||
name: fluentd-gcp-v1.33
|
name: fluentd-gcp-v1.34
|
||||||
namespace: kube-system
|
namespace: kube-system
|
||||||
labels:
|
labels:
|
||||||
k8s-app: fluentd-gcp
|
k8s-app: fluentd-gcp
|
||||||
kubernetes.io/cluster-service: "true"
|
kubernetes.io/cluster-service: "true"
|
||||||
version: v1.33
|
version: v1.34
|
||||||
spec:
|
spec:
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
labels:
|
labels:
|
||||||
k8s-app: fluentd-gcp
|
k8s-app: fluentd-gcp
|
||||||
kubernetes.io/cluster-service: "true"
|
kubernetes.io/cluster-service: "true"
|
||||||
version: v1.33
|
version: v1.34
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: fluentd-gcp
|
- name: fluentd-gcp
|
||||||
image: gcr.io/google_containers/fluentd-gcp:1.33
|
image: gcr.io/google_containers/fluentd-gcp:1.34
|
||||||
# If fluentd consumes its own logs, the following situation may happen:
|
# If fluentd consumes its own logs, the following situation may happen:
|
||||||
# fluentd fails to send a chunk to the server => writes it to the log =>
|
# fluentd fails to send a chunk to the server => writes it to the log =>
|
||||||
# tries to send this message to the server => fails to send a chunk and so on.
|
# tries to send this message to the server => fails to send a chunk and so on.
|
||||||
|
@ -36,6 +36,7 @@ RUN apt-get -qq update && \
|
|||||||
td-agent-gem install --no-document fluent-plugin-record-reformer -v 0.8.2 && \
|
td-agent-gem install --no-document fluent-plugin-record-reformer -v 0.8.2 && \
|
||||||
td-agent-gem install --no-document fluent-plugin-systemd -v 0.0.5 && \
|
td-agent-gem install --no-document fluent-plugin-systemd -v 0.0.5 && \
|
||||||
td-agent-gem install --no-document fluent-plugin-google-cloud -v 0.5.2 && \
|
td-agent-gem install --no-document fluent-plugin-google-cloud -v 0.5.2 && \
|
||||||
|
td-agent-gem install --no-document fluent-plugin-detect-exceptions -v 0.0.4 && \
|
||||||
# Remove build tools
|
# Remove build tools
|
||||||
apt-get remove -y -qq gcc make && \
|
apt-get remove -y -qq gcc make && \
|
||||||
apt-get autoremove -y -qq && \
|
apt-get autoremove -y -qq && \
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
.PHONY: build push
|
.PHONY: build push
|
||||||
|
|
||||||
PREFIX=gcr.io/google_containers
|
PREFIX=gcr.io/google_containers
|
||||||
TAG = 1.33
|
TAG = 1.34
|
||||||
|
|
||||||
build:
|
build:
|
||||||
docker build --pull -t $(PREFIX)/fluentd-gcp:$(TAG) .
|
docker build --pull -t $(PREFIX)/fluentd-gcp:$(TAG) .
|
||||||
|
@ -70,7 +70,18 @@
|
|||||||
<match reform.**>
|
<match reform.**>
|
||||||
type record_reformer
|
type record_reformer
|
||||||
enable_ruby true
|
enable_ruby true
|
||||||
tag kubernetes.${tag_suffix[4].split('-')[0..-2].join('-')}
|
tag raw.kubernetes.${tag_suffix[4].split('-')[0..-2].join('-')}
|
||||||
|
</match>
|
||||||
|
|
||||||
|
# Detect exceptions in the log output and forward them as one log entry.
|
||||||
|
<match raw.kubernetes.**>
|
||||||
|
type detect_exceptions
|
||||||
|
remove_tag_prefix raw
|
||||||
|
message log
|
||||||
|
stream stream
|
||||||
|
multiline_flush_interval 5
|
||||||
|
max_bytes 500000
|
||||||
|
max_lines 1000
|
||||||
</match>
|
</match>
|
||||||
|
|
||||||
# Example:
|
# Example:
|
||||||
|
@ -10,7 +10,7 @@ spec:
|
|||||||
dnsPolicy: Default
|
dnsPolicy: Default
|
||||||
containers:
|
containers:
|
||||||
- name: fluentd-cloud-logging
|
- name: fluentd-cloud-logging
|
||||||
image: gcr.io/google_containers/fluentd-gcp:1.33
|
image: gcr.io/google_containers/fluentd-gcp:1.34
|
||||||
# If fluentd consumes its own logs, the following situation may happen:
|
# If fluentd consumes its own logs, the following situation may happen:
|
||||||
# fluentd fails to send a chunk to the server => writes it to the log =>
|
# fluentd fails to send a chunk to the server => writes it to the log =>
|
||||||
# tries to send this message to the server => fails to send a chunk and so on.
|
# tries to send this message to the server => fails to send a chunk and so on.
|
||||||
|
Loading…
Reference in New Issue
Block a user