Skip to main content
Version: v2.5

Migrating to Rancher v2.5 Logging

Starting in v2.5, the logging feature available within Rancher has been completely overhauled. The Logging operator has been adopted; Rancher configures this tooling for use when deploying logging.

Among the many features and changes in the new logging functionality is the removal of project-specific logging configurations. Instead, one now configures logging at the namespace level. Cluster-level logging remains available, but configuration options differ.

Note: The pre-v2.5 user interface is now referred to as the Cluster Manager. The v2.5+ dashboard is referred to as the Cluster Explorer.

Installation

To install logging in Rancher v2.5+, refer to the installation instructions.

Terminology

In v2.5, logging configuration is centralized under a Logging menu option available in the Cluster Explorer. It is from this menu option that logging for both cluster and namespace is configured.

Note: Logging is installed on a per-cluster basis. You will need to navigate between clusters to configure logging for each cluster.

There are four key concepts to understand for v2.5+ logging:

  1. Outputs

    Outputs are a configuration resource that determine a destination for collected logs. This is where settings for aggregators such as ElasticSearch, Kafka, etc. are stored. Outputs are namespaced resources.

  2. Flows

    Flows are a configuration resource that determine collection, filtering, and destination rules for logs. It is within a flow that one will configure what logs to collect, how to mutate or filter them, and which Outputs to send the logs to. Flows are namespaced resources, and can connect either to an Output in the same namespace, or a ClusterOutput.

  3. ClusterOutputs

    ClusterOutputs serve the same functionality as Outputs, except they are a cluster-scoped resource. ClusterOutputs are necessary when collecting logs cluster-wide, or if you wish to provide an Output to all namespaces in your cluster.

  4. ClusterFlows

    ClusterFlows serve the same function as Flows, but at the cluster level. They are used to configure log collection for an entire cluster, instead of on a per-namespace level. ClusterFlows are also where mutations and filters are defined, same as Flows (in functionality).

Cluster Logging

To configure cluster-wide logging for v2.5+ logging, one needs to set up a ClusterFlow. This object defines the source of logs, any transformations or filters to be applied, and finally the Output (or Outputs) for the logs.

Important: ClusterFlows must be defined within the cattle-logging-system namespace. ClusterFlows will not work if defined in any other namespace.

In legacy logging, in order to collect logs from across the entire cluster, one only needed to enable cluster-level logging and define the desired Output. This basic approach remains in v2.5+ logging. To replicate legacy cluster-level logging, follow these steps:

  1. Define a ClusterOutput according to the instructions found under Output Configuration
  2. Create a ClusterFlow, ensuring that it is set to be created in the cattle-logging-system namespace
    1. Remove all Include and Exclude rules from the Flow definition. This ensures that all logs are gathered.
    2. You do not need to configure any filters if you do not wish - default behavior does not require their creation
    3. Define your cluster Output or Outputs

This will result in logs from all sources in the cluster (all pods, and all system components) being collected and sent to the Output or Outputs you defined in the ClusterFlow.

Project Logging

Logging in v2.5+ is not project-aware. This means that in order to collect logs from pods running in project namespaces, you will need to define Flows for those namespaces.

To collect logs from a specific namespace, follow these steps:

  1. Define an Output or ClusterOutput according to the instructions found under Output Configuration
  2. Create a Flow, ensuring that it is set to be created in the namespace in which you want to gather logs.
    1. If you wish to define Include or Exclude rules, you may do so. Otherwise, removal of all rules will result in all pods in the target namespace having their logs collected.
    2. You do not need to configure any filters if you do not wish - default behavior does not require their creation
    3. Define your outputs - these can be either ClusterOutput or Output objects.

This will result in logs from all sources in the namespace (pods) being collected and sent to the Output (or Outputs) you defined in your Flow.

To collect logs from a project, repeat the above steps for every namespace within the project. Alternatively, you can label your project workloads with a common label (e.g. project=my-project) and use a ClusterFlow to collect logs from all pods matching this label.

Output Configuration

In legacy logging, there are five logging destinations to choose from: Elasticsearch, Splunk, Kafka, Fluentd, and Syslog. With the exception of Syslog, all of these destinations are available in logging v2.5+.

Elasticsearch

Legacy Loggingv2.5+ LoggingNotes
EndpointTarget -> HostMake sure to specify Scheme (https/http), as well as Port
X-Pack Security -> UsernameAccess -> User
X-Pack Security -> PasswordAccess -> PasswordPassword must now be stored in a secret
SSL Configuration -> Client Private KeySSL -> Client KeyKey must now be stored in a secret
SSL Configuration -> Client CertificateSSL -> Client CertCertificate must now be stored in a secret
SSL Configuration -> Client Key PasswordSSL -> Client Key PassPassword must now be stored in a secret
SSL Configuration -> Enabled SSL VerificationSSL -> Certificate Authority FileCertificate must now be stored in a secret

In legacy logging, indices were automatically created according to the format in the "Index Patterns" section. In v2.5 logging, default behavior has been changed to logging to a single index. You can still configure index pattern functionality on the Output object by editing as YAML and inputting the following values:

...
spec:
elasticsearch:
...
logstash_format: true
logstash_prefix: <desired prefix>
logstash_dateformat: "%Y-%m-%d"

Replace <desired prefix> with the prefix for the indices that will be created. In legacy logging, this defaulted to the name of the cluster.

Splunk

Legacy Loggingv2.5+ LoggingNotes
HEC Configuration -> EndpointTarget -> HostProtocol (https/http) and port must be defined separately from the host
HEC Configuration -> TokenAccess -> TokenToken must now be stored as a secret
HEC Configuration -> IndexEdit as YAML -> indexindex field must be added as YAML key under spec.splunkHec
HEC Configuration -> SourceEdit as YAML -> sourcesource field must be added as YAML key under spec.splunkHec
SSL Configuration -> Client Private KeyEdit as YAML -> client_keyclient_key field must be added as YAML key under spec.splunkHec. See (1)
SSL Configuration -> Client CertificateEdit as YAML -> client_certclient_cert field must be added as YAML key under spec.splunkHec. See (1)
SSL Configuration -> Client Key PasswordNot SupportedSpecifying a password for the client private key is not currently supported.
SSL Configuration -> SSL VerifyEdit as YAML -> ca_file or ca_pathca_file or ca_path field must be added as YAML key under spec.splunkHec. See (2)

(1) client_key and client_cert values must be paths to the key and cert files, respectively. These files must be mounted into the rancher-logging-fluentd pod in order to be used.

(2) Users can configure either ca_file (a path to a PEM-encoded CA certificate) or ca_path (a path to a directory containing CA certificates in PEM format). These files must be mounted into the rancher-logging-fluentd pod in order to be used.

Kafka

Legacy Loggingv2.5+ LoggingNotes
Kafka Configuration -> Endpoint Type-Zookeeper is no longer supported as an endpoint type
Kafka Configuration -> EndpointTarget -> BrokersComma-separated list of brokers (host:port)
Kafka Configuration -> TopicTarget -> Default Topic
SSL Configuration -> Client Private KeySSL -> SSL Client CertCertificate must be stored as a secret
SSL Configuration -> Client CertificateSSL -> SSL Client Cert KeyKey must be stored as a secret
SSL Configuration -> CA Certificate PEMSSL -> SSL CA CertCertificate must be stored as a secret
SASL Configuration -> UsernameAccess -> UsernameUsername must be stored in a secret
SASL Configuration -> PasswordAccess -> PasswordPassword must be stored in a secret
SASL Configuration -> Scram MechanismAccess -> Scram MechanismInput mechanism as string, e.g. "sha256" or "sha512"

Fluentd

As of v2.5.2, it is only possible to add a single Fluentd server using the "Edit as Form" option. To add multiple servers, edit the Output as YAML and input multiple servers.

Legacy Loggingv2.5+ LoggingNotes
Fluentd Configuration -> EndpointTarget -> Host, PortInput the host and port separately
Fluentd Configuration -> Shared KeyAccess -> Shared KeyShared key must be stored as a secret
Fluentd Configuration -> UsernameAccess -> UsernameUsername must be stored as a secret
Fluentd Configuration -> PasswordAccess -> PasswordPassword must be stored as a secret
Fluentd Configuration -> HostnameEdit as YAML -> hosthost field set as YAML key under spec.forward.servers[n]
Fluentd Configuration -> WeightEdit as YAML -> weightweight field set as YAML key under spec.forward.servers[n]
SSL Configuration -> Use TLS-Do not need to explicitly enable. Define client cert fields instead.
SSL Configuration -> Client Private KeyEdit as YAML -> tls_private_key_pathField set as YAML key under spec.forward. See (1)
SSL Configuration -> Client CertificateEdit as YAML -> tls_client_cert_pathField set as YAML key under spec.forward. See (1)
SSL Configuration -> Client Key PasswordEdit as YAML -> tls_client_private_key_passphraseField set as YAML key under spec.forward. See (1)
SSL Configuration -> SSL VerifyEdit as YAML -> tls_insecure_modeField set as YAML key under spec.forward. Default: false
SSL Configuration -> CA Certificate PEMEdit as YAML -> tls_cert_pathField set as YAML key under spec.forward. See (1)
Enable Gzip Compression-No longer supported in v2.5+ logging

(1) These values are to be specified as paths to files. Those files must be mounted into the rancher-logging-fluentd pod in order to be used.

Syslog

As of v2.5.2, syslog is not currently supported for Outputs using v2.5+ logging.

Custom Log Fields

In order to add custom log fields, you will need to add the following YAML to your Flow configuration:

...
spec:
filters:
- record_modifier:
records:
- foo: "bar"

(replace foo: "bar" with custom log fields you wish to add)

System Logging

In legacy logging, collecting logs from system components was accomplished by checking a box labeled "Include System Log" when setting up cluster logging. In v2.5+ logging, system logs are gathered in one of two ways:

  1. Gather all cluster logs, not specifying any match or exclusion rules. This results in all container logs from the cluster being collected, which includes system logs.
  2. Specifically target system logs by adding match rules for system components. Specific match rules depend on the component being collected.