mirror of
https://github.com/bitnami/charts.git
synced 2026-03-14 06:47:28 +08:00
64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
{{- if and .Values.aggregator.enabled (not .Values.aggregator.configMap) -}}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "fluentd.fullname" . }}-aggregator-cm
|
|
labels: {{- include "fluentd.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: aggregator
|
|
data:
|
|
fluentd.conf: |
|
|
{{- if .Values.metrics.enabled -}}
|
|
# Prometheus Exporter Plugin
|
|
# input plugin that exports metrics
|
|
<source>
|
|
@type prometheus
|
|
port {{ .Values.metrics.service.port }}
|
|
</source>
|
|
|
|
# input plugin that collects metrics from MonitorAgent
|
|
<source>
|
|
@type prometheus_monitor
|
|
<labels>
|
|
host ${hostname}
|
|
</labels>
|
|
</source>
|
|
|
|
# input plugin that collects metrics for output plugin
|
|
<source>
|
|
@type prometheus_output_monitor
|
|
<labels>
|
|
host ${hostname}
|
|
</labels>
|
|
</source>
|
|
{{- end }}
|
|
|
|
# Ignore fluentd own events
|
|
<match fluent.**>
|
|
@type null
|
|
</match>
|
|
|
|
# TCP input to receive logs from the forwarders
|
|
<source>
|
|
@type forward
|
|
bind 0.0.0.0
|
|
port {{ .Values.aggregator.port }}
|
|
</source>
|
|
|
|
# HTTP input for the liveness and readiness probes
|
|
<source>
|
|
@type http
|
|
bind 0.0.0.0
|
|
port 9880
|
|
</source>
|
|
|
|
# Throw the healthcheck to the standard output instead of forwarding it
|
|
<match fluentd.healthcheck>
|
|
@type stdout
|
|
</match>
|
|
|
|
# Send the logs to the standard output
|
|
<match **>
|
|
@type stdout
|
|
</match>
|
|
{{- end -}}
|