- Installation
- Kafka
- Logging Operator
- Demo Application
- Validation
In this demo we are using our kafka operator. Easy Way Installing with Helm
helm repo add banzaicloud-stable https://kubernetes-charts.banzaicloud.com
helm repo update
helm install --namespace logging --name logging-demo banzaicloud-stable/logging-demo \
--set "kafka.enabled=True"
kubectl create ns logging
kubectl -n logging apply -f - <<"EOF"
apiVersion: logging.banzaicloud.io/v1beta1
kind: Logging
metadata:
name: default-logging-simple
spec:
fluentd: {}
fluentbit: {}
controlNamespace: logging
EOF
Note:
ClusterOutput
andClusterFlow
resource will only be accepted in thecontrolNamespace
kubectl -n logging apply -f - <<"EOF"
apiVersion: logging.banzaicloud.io/v1beta1
kind: Output
metadata:
name: kafka-output
spec:
kafka:
brokers: kafka-headless.kafka.svc.cluster.local:29092
default_topic: topic
format:
type: json
buffer:
tags: topic
timekey: 1m
timekey_wait: 30s
timekey_use_utc: true
EOF
Note: For production set-up we recommend using longer
timekey
interval to avoid generating too many object.
kubectl -n logging apply -f - <<"EOF"
apiVersion: logging.banzaicloud.io/v1beta1
kind: Flow
metadata:
name: kafka-flow
spec:
filters:
- parser:
remove_key_name_field: true
reserve_data: true
parse:
type: nginx
selectors:
app: nginx
outputRefs:
- kafka-output
EOF
kubectl -n logging apply -f - <<"EOF"
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
spec:
selector:
matchLabels:
app: nginx
replicas: 1
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: banzaicloud/loggen:latest
EOF
kubectl -n kafka exec -it kafka-test-c sh
kafkacat -C -b kafka-0.kafka-headless.kafka.svc.cluster.local:29092 -t topic