Loki
Platform:
| Channel | Revision | Published | Runs on |
|---|---|---|---|
| 3.7/stable | 244 | 06 Jul 2026 | |
| 3.7/candidate | 248 | 11 Aug 2026 | |
| 3.7/beta | 248 | 11 Aug 2026 | |
| 3.7/edge | 248 | 10 Aug 2026 | |
| dev/edge | 257 | 27 Aug 2026 | |
| 2/stable | 217 | 16 Mar 2026 | |
| 2/candidate | 256 | 28 Aug 2026 | |
| 2/beta | 256 | 28 Aug 2026 | |
| 2/edge | 256 | 27 Aug 2026 | |
| 1/stable | 199 | 08 Jul 2025 | |
| 1/candidate | 207 | 07 Apr 2026 | |
| 1/beta | 207 | 31 Mar 2026 | |
| 1/edge | 207 | 22 Sep 2025 |
juju deploy loki-k8s --channel dev/edge
-
cpu | string
K8s cpu resource limit, e.g. "1" or "500m". Default is unset (no limit). This value is used for the "limits" portion of the resource requirements (the "requests" portion is automatically deduced from it). See https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
-
ingestion-burst-size-mb | int
Default: 15
This config option matches exactly Loki's
ingestion_burst_size_mb, except that it is an integer here (Loki takes a float). This same value is used internally for settingper_stream_rate_limit_burst. Loki uses a default of 6 foringestion_burst_size_mb, but 15 forper_stream_rate_limit_burst. For this reason we use 15 as the default here.Ref: https://grafana.com/docs/loki/latest/configure/#limits_config
-
ingestion-rate-mb | int
Default: 4
Per-user ingestion rate limit (MB/s). This config option matches exactly Loki's
ingestion_rate_mb, except that it is an integer here (Loki takes a float). This same value is used internally for settingper_stream_rate_limit. Loki uses a default of 3 foringestion_rate_mb, but 4 forper_stream_rate_limit. For this reason we use 4 as the default here.Ref: https://grafana.com/docs/loki/latest/configure/#limits_config
-
memory | string
K8s memory resource limit, e.g. "1Gi". Default is unset (no limit). This value is used for the "limits" portion of the resource requirements (the "requests" portion is automatically deduced from it). See https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
-
reporting-enabled | boolean
Default: True
When disabled, Loki will be configured to not send anonymous usage statistics to stats.grafana.org. It is very helpful to the Grafana project, so please leave this enabled.
When enabled, Loki will use its default values for analytics.
Ref: https://grafana.com/docs/loki/latest/configure/#analytics
-
retention-period | int
Default: 15
Sets the global log retention period in Loki (in days). A value of
0disables deletion, causing logs to be retained indefinitely. The minimum supported non-zero retention period is1d(24 hours). Individual/per-stream retention rules are not supported by Loki at this time. For more info, see the Loki docs: https://grafana.com/docs/loki/latest/operations/storage/retention/