Skip to main content

Logs aggregations

We (Packit) want to have access to logs from our worker pods even after the pods are restarted (due to image or cluster update). And ideally, logs from all workers aggregated in one place so that one does not have to grep several logs. We don’t need it for staging, but would rather test it on staging first.

Options

Testing Farm’s Loki

Initially, we wanted to use TestingFarm's Loki, but we realized it's in VPN and hence can't be reached by a Promtail sidecar container running in the Automotive cluster(s) outside the VPN.

CKI’s Loki in Managed Platform

CKI has a Loki instance as well, but it’s also in VPN.

Michael Hofmann, Jun 3rd, 10:22 AM
We've been thinking of moving it to MP+ where you can have external access to it as well, but this is on our backlog

Managed Loki on Grafana cloud

Free forever access: 50GB of logs, 14-day retention for logs, access for up to 3 (!) team members

OpenShift Logging subsystem

A cluster admin can deploy the logging subsystem to aggregate

  • Container logs generated by user applications running in the cluster
  • Logs generated by infrastructure components

The subsystem uses EFK stack (modified ELK stack), i.e.

  • Elasticsearch (ES): An object store where all logs are stored. Optimized and tested for short-term storage, approximately seven days.
  • Fluentd: Gathers logs from nodes and feeds them to Elasticsearch
  • Kibana: A web UI for Elasticsearch to view the logs

The logging subsystem can be installed by deploying the Red Hat OpenShift Logging and OpenShift Elasticsearch Operators.

  • Pros: The operators are (should be) easy to install, set up, and upgrade
  • Cons: Elasticsearch (or Loki, see below) are memory-intensive applications.

OpenShift Logging subsystem with Loki

Since 4.9 one can use Loki as an alternative to Elasticsearch. However, it’s still a Technology Preview feature as of 4.10. We initially wanted to use Loki, because that’s what OSCI/CKI uses, but we are open to any technology, so the default ES is fine.

Splunk

There’s already a splunkforwarder set up on the Automotive clusters, but it’s either not completely configured or we don’t have access to the data in Splunk because we (jpopelka, ttomecek) don’t see any auto-[stage|prod] related events in Splunk.

Other teams using Splunk:

  • OSCI - they forward logs to Splunk via Jenkins plugin. AStepanov says that PSI is configured to automatically forward all pods` logs to Splunk. But I couldn’t find anything packit-validation jobs (they run in PSI) related in Splunk.
  • Copr (internal) - uses existing ansible role to forward logs to Splunk via syslog , AFAIK this can't be used outside VPN
  • Image builder
    • Their composer runs in a ROSA cluster as well and uses a Fluentd sidecar container which communicates with the main container via syslog and forwards the logs to Splunk’s HTTP Event Collector (HEC).
    • Image builder's composer
    • Fluentd config

I (jpopelka) decided to follow how the composer does that, i.e.