-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(operator): User-guide for OTLP configuration #14620
Merged
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
65ea1f5
feat(operator): User-guide for OTLP configuration
xperimental bee6149
Changes from a second read
xperimental 4d7e319
Apply suggestions from code review
xperimental b96e313
Merge remote-tracking branch 'origin/otlp-docs' into otlp-docs
xperimental 71c2e36
Add paragraph about labels and metadata
xperimental File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,169 @@ | ||
--- | ||
title: "OpenTelemetry / OTLP" | ||
description: "" | ||
lead: "" | ||
date: 2024-10-25T12:43:23+02:00 | ||
lastmod: 2024-10-25T12:43:23+02:00 | ||
draft: false | ||
images: [] | ||
menu: | ||
docs: | ||
parent: "user-guides" | ||
weight: 100 | ||
toc: true | ||
--- | ||
|
||
## Introduction | ||
|
||
Loki 3.0 introduced an API endpoint using the OpenTelemetry Protocol (OTLP) as a new way of ingesting log entries into Loki. This endpoint is an addition to the standard Push API that was available in Loki from the start. | ||
|
||
Because OTLP is not specifically geared towards Loki but is a standard format, it needs additional configuration on Loki's side to map the OpenTelemetry data format to Loki's data model. | ||
|
||
Specifically, OTLP has no concept of "stream labels" or "structured metadata". Instead, OTLP provides metadata about a log entry in _attributes_ that are grouped into three buckets (resource, scope and log), which allows setting metadata for many log entries at once or just on a single entry depending on what's needed. | ||
|
||
## Prerequisites | ||
|
||
Log ingestion using OTLP depends on structured metadata being available in Loki. This capability was introduced with schema version 13, which is available in Loki Operator when using `v13` in a schema configuration entry. | ||
|
||
If you are creating a new `LokiStack`, make sure to set `version: v13` in the storage schema configuration. | ||
|
||
If there is an existing schema configuration, a new schema version entry needs to be added, so that it becomes active in the future (see [Upgrading Schemas](loki-upgrading-schemas) in the Loki documentation). | ||
|
||
```yaml | ||
# [...] | ||
spec: | ||
storage: | ||
schemas: | ||
- version: v13 | ||
effectiveDate: 2024-10-25 | ||
``` | ||
|
||
Once the `effectiveDate` has passed your `LokiStack` will be using the new schema configuration and is ready to store structured metadata. | ||
|
||
## Attribute Mapping | ||
|
||
Loki splits the configuration for mapping OTLP attributes to stream labels and structured metadata into two places: | ||
|
||
- `default_resource_attributes_as_index_labels` in the [`distributor` configuration](loki-docs-distributor-config) | ||
- `otlp_config` in the `limits_config` (see [Loki documentation](loki-docs-limits-config)) | ||
|
||
By default, `default_resource_attributes_as_index_labels` provides a set of resource-attributes that are mapped to stream-labels on the Loki side. | ||
|
||
As the field in the distributor configuration is limited to resource-level attributes and can only produce stream-labels as an output, the `otlp_config` needs to be used to map resource, scope or log level attributes to structured metadata. | ||
|
||
**Note:** Attributes that are not mapped to either a stream label or structured metadata will not be stored into Loki. | ||
|
||
The Loki Operator does not use the same approach for configuring the attributes as Loki itself does. The most visible difference is that there is no distinction between the `distributor` and `limits` configuration in the Operator. | ||
|
||
Instead, the Loki Operator only uses the `limits` configuration for all its attributes. The structure of the `limits` configuration also differs from the structure in the Loki configuration file. See [Custom Attribute Mapping](#custom-attribute-mapping) below for an explanation of the configuration options available in the Operator. | ||
|
||
### Loki Operator Defaults | ||
|
||
When using the Loki Operator the default attribute mappings depend on the [tenancy mode]({{< ref "api.md#loki-grafana-com-v1-ModeType" >}}) used for the `LokiStack`: | ||
|
||
- `static` and `dynamic` use the Grafana defaults | ||
- `openshift-logging` uses OpenShift defaults | ||
|
||
### Custom Attribute Mapping | ||
|
||
All tenancy modes support customization of the attribute mapping configuration. This can be done globally (for all tenants) or on a per-tenant basis. When a custom attribute mapping configuration is defined, then the Grafana defaults are not used. If the default labels are desired as well, they need to be added to the custom configuration. See also the section about [Customizing OpenShift Defaults](#customizing-openshift-defaults) below. | ||
|
||
**Note:** A major difference between the Operator and Loki is how it handles inheritance. Loki by default only copies the attributes defined in the `default_resource_attributes_as_index_labels` setting to the tenants whereas the Operator will copy all global configuration into every tenant. | ||
|
||
The attribute mapping configuration in `LokiStack` is done through the limits configuration: | ||
|
||
```yaml | ||
# [...] | ||
spec: | ||
limits: | ||
global: | ||
otlp: {} # Global OTLP Attribute Configuration | ||
tenants: | ||
example-tenant: | ||
otlp: {} # OTLP Attribute Configuration for tenant "example-tenant" | ||
``` | ||
|
||
Both global and per-tenant OTLP configurations can map attributes to stream-labels or structured-metadata. At least _one stream-label_ is needed for successfully saving a log entry to Loki storage, so the configuration should account for that. | ||
|
||
Stream labels can only be generated from resource-level attributes, which is mirrored in the data structure of the `LokiStack` resource: | ||
|
||
```yaml | ||
# [...] | ||
spec: | ||
limits: | ||
global: | ||
otlp: | ||
streamLabels: | ||
resourceAttributes: | ||
- name: "k8s.namespace.name" | ||
- name: "k8s.pod.name" | ||
- name: "k8s.container.name" | ||
``` | ||
|
||
Structured metadata on the other hand can be generated from all types of attributes (resource, scope and log): | ||
|
||
```yaml | ||
# [...] | ||
spec: | ||
limits: | ||
global: | ||
otlp: | ||
streamLabels: | ||
# [...] | ||
structuredMetadata: | ||
resourceAttributes: | ||
- name: "process.command_line" | ||
- name: "k8s\\.pod\\.labels\\..+" | ||
regex: true | ||
scopeAttributes: | ||
- name: "service.name" | ||
logAttributes: | ||
- name: "http.route" | ||
``` | ||
|
||
The previous example also shows that the attribute names can be expressed as _regular expressions_ by setting `regex: true`. | ||
|
||
Using a regular expression makes sense when there are many attributes with similar names that should be mapped into Loki. It is not recommended to be used for stream labels, as it can potentially create a lot of data. | ||
|
||
### Customizing OpenShift Defaults | ||
|
||
The `openshift-logging` tenancy mode contains its own set of default attributes. Some of these attributes (called "required attributes") can not be removed by applying a custom configuration, because they are needed for other OpenShift components to function properly. Other attributes (called "recommended attributes") are provided but can be disabled in case they influence performance negatively. The complete set of attributes is documented in the [data model](rhobs-data-model) repository. | ||
|
||
Because the OpenShift attribute configuration is applied based on the tenancy mode, the simplest configuration is to just set the tenancy mode and not apply any custom attributes. This will provide instant compatibility with the other OpenShift tools. | ||
|
||
In case additional attributes are needed, either as stream labels or structured metadata, the normal custom attribute configuration mentioned above can be used. Attributes defined in the custom configuration will be **merged** with the default configuration. | ||
|
||
#### Removing Recommended Attributes | ||
|
||
In case of issues with the default set of attributes, there is a way to slim down the default set of attributes applied to a LokiStack operating in `openshift-logging` tenancy mode: | ||
|
||
```yaml | ||
# [...] | ||
spec: | ||
tenants: | ||
mode: openshift-logging | ||
openshift: | ||
otlp: | ||
disableRecommendedAttributes: true # Set this to remove recommended attributes | ||
``` | ||
|
||
Setting `disableRecommendedAttributes: true` reduces the set of default attributes to only the "required attributes". | ||
|
||
This option is meant for situations when some of the default attributes cause performance issues during ingestion of logs or if the default set causes excessive use of storage. | ||
|
||
Because the set of required attributes only contains a subset of the default stream labels, only setting this option will negatively affect query performance. It needs to be combined with a custom attribute configuration that reintroduces attributes that are needed for queries so that the data contained in those attributes is available again. | ||
|
||
## References | ||
|
||
- [Loki Labels](loki-labels) | ||
- [Structured Metadata](loki-structured-metadata) | ||
- [OpenTelemetry Attribute](otel-attributes) | ||
- [OpenShift Default Attributes](rhobs-data-model) | ||
|
||
[loki-docs-distributor-config]: https://grafana.com/docs/loki/latest/configure/#distributor | ||
[loki-docs-limits-config]: https://grafana.com/docs/loki/latest/configure/#limits_config | ||
[loki-labels]: https://grafana.com/docs/loki/latest/get-started/labels/ | ||
[loki-structured-metadata]: https://grafana.com/docs/loki/latest/get-started/labels/structured-metadata/ | ||
[loki-upgrading-schemas]: https://grafana.com/docs/loki/latest/configure/storage/#upgrading-schemas | ||
[otel-attributes]: https://opentelemetry.io/docs/specs/otel/common/#attribute | ||
[rhobs-data-model]: https://github.com/rhobs/observability-data-model/blob/main/cluster-logging.md#attributes |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we briefly describe the difference between stream label & structured metadata? In this section or other section that you find relevant
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried getting around that by linking to the stream-label / structured-metadata documentation on the Loki site. Another idea I had, was for us to have a few "concepts" pages where we can describe things like stream-labels, structured-metadata, schema versions and so on.
I'll think about this again. Maybe it makes sense to make this distinction clear in this document as well in a short paragraph.