Skip to content

Loki 2.8.0

Compare
Choose a tag to compare
@grafanabot grafanabot released this 04 Apr 15:52
v2.8.0
90888a0

Grafana Labs is excited to announce the release of Loki 2.8. 🎉

Notable changes:

  • TSDB index no longer experimental After extensive testing of the new TSDB index in our Grafana Cloud Logs offering, we can safely announce that it is no longer experimental and encourage all Loki deployments to use it!
  • Query blocker Queries can now be blocked in the Querier/Ruler via a per-tenant runtime configuration.
  • New backend target A new, third target was added to Loki's scalable configuration, which is the default configuration used in the Loki helm chart. This allows Loki to be run as 3 targets (read, write, and backend) and makes the read target stateless and therefore able to be run as a Kubernetes deployment that can be scaled automatically.

For a full list of all changes please look at the CHANGELOG.

Installation:

The components of Loki are currently distributed in plain binary form and as Docker container images. Choose what fits your use-case best.

Docker container:

$ docker pull "grafana/loki:2.8.0"
$ docker pull "grafana/promtail:2.8.0"

Binary

We provide pre-compiled binary executables for the most common operating systems and architectures.
Choose from the assets below for the application and architecture matching your system.
Example for Loki on the linux operating system and amd64 architecture:

$ curl -O -L "https://github.com/grafana/loki/releases/download/v2.8.0/loki-linux-amd64.zip"
# extract the binary
$ unzip "loki-linux-amd64.zip"
# make sure it is executable
$ chmod a+x "loki-linux-amd64"

Upgrade Considerations

As always, please read the upgrade guide before upgrading Loki.