diff --git a/charts/loki-distributed/Chart.yaml b/charts/loki-distributed/Chart.yaml index f6befe5899..e1f63554c1 100644 --- a/charts/loki-distributed/Chart.yaml +++ b/charts/loki-distributed/Chart.yaml @@ -3,7 +3,7 @@ name: loki-distributed description: Helm chart for Grafana Loki in microservices mode type: application appVersion: 2.9.6 -version: 0.79.0 +version: 0.79.1 home: https://grafana.github.io/helm-charts sources: - https://github.com/grafana/loki diff --git a/charts/loki-distributed/README.md b/charts/loki-distributed/README.md index d40ea8b510..bbe62d9426 100644 --- a/charts/loki-distributed/README.md +++ b/charts/loki-distributed/README.md @@ -1,6 +1,6 @@ # loki-distributed -![Version: 0.79.0](https://img.shields.io/badge/Version-0.79.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.9.6](https://img.shields.io/badge/AppVersion-2.9.6-informational?style=flat-square) +![Version: 0.79.1](https://img.shields.io/badge/Version-0.79.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.9.6](https://img.shields.io/badge/AppVersion-2.9.6-informational?style=flat-square) Helm chart for Grafana Loki in microservices mode @@ -324,6 +324,7 @@ kubectl delete statefulset RELEASE_NAME-loki-distributed-querier -n LOKI_NAMESPA | ingress.hosts[0] | string | `"loki.example.com"` | | | ingress.paths.distributor[0] | string | `"/api/prom/push"` | | | ingress.paths.distributor[1] | string | `"/loki/api/v1/push"` | | +| ingress.paths.distributor[2] | string | `"/otlp/v1/logs"` | | | ingress.paths.querier[0] | string | `"/api/prom/tail"` | | | ingress.paths.querier[1] | string | `"/loki/api/v1/tail"` | | | ingress.paths.query-frontend[0] | string | `"/loki/api"` | | diff --git a/charts/loki-distributed/values.yaml b/charts/loki-distributed/values.yaml index 15e9343e84..9c874e2705 100644 --- a/charts/loki-distributed/values.yaml +++ b/charts/loki-distributed/values.yaml @@ -989,6 +989,7 @@ ingress: distributor: - /api/prom/push - /loki/api/v1/push + - /otlp/v1/logs querier: - /api/prom/tail - /loki/api/v1/tail @@ -1308,6 +1309,12 @@ gateway: proxy_http_version 1.1; } + location = /otlp/v1/logs { + set $loki_api_v1_push_backend http://{{ include "loki.distributorFullname" . }}.{{ .Release.Namespace }}.svc.{{ .Values.global.clusterDomain }}; + proxy_pass $loki_api_v1_push_backend:3100$request_uri; + proxy_http_version 1.1; + } + location = /loki/api/v1/tail { set $loki_api_v1_tail_backend http://{{ include "loki.querierFullname" . }}.{{ .Release.Namespace }}.svc.{{ .Values.global.clusterDomain }}; proxy_pass $loki_api_v1_tail_backend:3100$request_uri;