This repository has been deprecated in favour of the Fluent-bit chart
Contains components for shipping logs and events from kubernetes clusters to Humio.
Fluentd is used to forward application- and host- level logs from each kubernetes node to a Humio server. This extends the standard setup from Fluentd for log forwarding in kubernetes. For clusters where the master nodes are not accessible (eg. on GCP) we use eventer to expose events occurring in the kubernetes control plane.
- Pre-requisites:
- Kubernetes cluster
- User authorized to administrate via kubectl
- Default service account with read privileges to API server for use by the kubernetes metadata filter plugin. This should be present by default in the kube-system namespace (even in kubernetes 1.6 with RBAC enabled)
- Setup your data space in Humio and create an ingest-token
- Base64 encode your ingest-token by running
printf '<TOKEN>' | base64
and updatefluentd/k8s/fluentd-humio-ingest-token-secret.yaml
with the value - Update env. vars.
FLUENT_HUMIO_HOST
andFLUENT_HUMIO_DATA_SPACE
influentd/k8s/fluentd-humio-daemonset.yaml
- Create fluentd resources in kubernetes:
kubectl apply -f fluentd/k8s/
- Logs start appearing in Humio!
Optional:
- If master nodes are not scheduleable in your cluster, you can also
create eventer to expose control-plane events:
kubectl apply -f eventer/
- Add
log-type
pod labels to designate Humio parsers
In fluentd/docker-image/
a docker image is defined which specifies
how to forward logs to Humio (with other settings, like log sources
reused from the base image). Kubernetes manifests are defined in
fluentd/k8s/
: a daemonset will deploy fluentd pods across every
worker node inside the kube-system namespace, and each pod will read
the Humio ingest token from the fluentd-humio-ingest-token
secret.
As per the normal setup, fluentd output is buffered, and uses TLS for nice log confidentiality. It also appends kubernetes metadata such as pod name and namespace to each log entry, wrapping raw logs in a standard json structure.
If your pod logs using JSON, Humio will parse the fields as excepted.
If your logs are text based, e.g. an nginx access log, you can set the
label log-type
on a pod. Humio will use the log-type label to
determine which parser to apply to the log line. Using a parser you
can retain the structure in the logs. If the label is unspecified or
doesn't correspond to a parser then pod logs will be left as
unstructured text.
We expose three environment variables so the daemonset configuration can be easily changed in different environments:
- FLUENT_HUMIO_HOST: Humio host
- FLUENT_HUMIO_DATA_SPACE: your data space
- FLUENT_HUMIO_INGEST_TOKEN: authorization to push logs into Humio
If you need to make further customizations, you will need to mount in
an altered version of the fluentd config files
/fluentd/etc/fluent.conf
and /fluentd/etc/kubernetes.conf
,
e.g. using ConfigMaps.
As noted above, the 'default' service account is used by the fluentd metadata plugin to lookup pod/namespace information. This is not particularly in line with the developing RBAC model for service accounts in kubernetes, but causes few problems in the kube-system namespace where services are assumed to be somewhat root-like. Since 'default' service account is available to all pods in a namespace, careful thought is recommended when assigning permissions to this account to get fluentd to work outside the kube-system namespace.
Appropriate for clusters where fluentd cannot run on master nodes, the eventer component of heapster is used to retrieve cluster events from the API server. We forward events to fluentd by simply printing events to stdout, providing a consistent interface for logs coming out of kubernetes. Eventer runs as a deployment with a single instance handling all cluster events, regardless of cluster size. As with heapster, it makes use of the addon-resizer component to update requested resources as load on the eventer, causing the eventer pod to get redeployed as cluster activity grows past certain thresholds.
We are currently working on integrating metrics from heapster into Humio. Stay tuned...