-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Revise the getting started section * Docs: revise getting started guide * Intermediate commit of getting started material. * Intermediate revision of the getting started guide. Add instructions to download, configure, and deploy the test environment. * Add sample queries and instructions for breaking down the test env * Revise prose using reviewer comments. * update to use promtail and flog in the docker compose file Signed-off-by: Edward Welch <edward.welch@grafana.com> * Revise guide to put all parts into Docker containers. * Add README files for examples directory. Revise getting started instructions. * Address DylanGuedes review comments * Getting started guide: incorporate suggestions from ssncferreira Co-authored-by: Edward Welch <edward.welch@grafana.com> (cherry picked from commit c4ebfd3) Co-authored-by: Karen Miller <84039272+KMiller-Grafana@users.noreply.github.com>
- Loading branch information
1 parent
85fccf7
commit 86e41bd
Showing
16 changed files
with
193 additions
and
178 deletions.
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 |
---|---|---|
@@ -1,14 +1,142 @@ | ||
--- | ||
title: Getting started | ||
weight: 300 | ||
description: "This guide assists the reader to create and use a simple Loki cluster for testing and evaluation purposes." | ||
aliases: | ||
- /docs/loki/latest/getting-started/get-logs-into-loki/ | ||
--- | ||
|
||
# Getting started with Grafana Loki | ||
|
||
> **Note:** You can use [Grafana Cloud](https://grafana.com/products/cloud/features/#cloud-logs) to avoid installing, maintaining, and scaling your own instance of Grafana Loki. The free forever plan includes 50GB of free logs. [Create an account to get started](https://grafana.com/auth/sign-up/create-user?pg=docs-loki&plcmt=in-text). | ||
1. [Getting Logs Into Loki](get-logs-into-loki/) | ||
1. [Grafana](grafana/) | ||
1. [LogCLI](logcli/) | ||
1. [Labels](labels/) | ||
1. [Troubleshooting](troubleshooting/) | ||
This guide assists the reader to create and use a simple Loki cluster. | ||
The cluster is intended for testing, development, and evaluation; | ||
it will not meet most production requirements. | ||
|
||
The test environment runs the [flog](https://github.com/mingrammer/flog) app to generate log lines. | ||
Promtail is the test environment's agent (or client) that captures the log lines and pushes them to the Loki cluster through a gateway. | ||
In a typical environment, the log-generating app and the agent run together, but in locations distinct from the Loki cluster. This guide runs each piece of the test environment locally, in Docker containers. | ||
|
||
Grafana provides a way to pose queries against the logs stored in Loki and visualize query results. | ||
|
||
![Simple scalable deployment test environment](simple-scalable-test-environment.png) | ||
|
||
The test environment uses Docker compose to instantiate these parts, each in its own container: | ||
|
||
- One [single scalable deployment](../fundamentals/architecture/deployment-modes/) mode **Loki** instance has: | ||
- One Loki read component | ||
- One Loki write component | ||
- **Minio** is Loki's storage back end in the test environment. | ||
- The **gateway** receives requests and redirects them to the appropriate container based on the request's URL. | ||
- **Flog** generates log lines. | ||
- **Promtail** scrapes the log lines from flog, and pushes them to Loki through the gateway. | ||
- **Grafana** provides visualization of the log lines captured within Loki. | ||
|
||
## Prerequisites | ||
|
||
- [Docker](https://docs.docker.com/install) | ||
- [Docker Compose](https://docs.docker.com/compose/install) | ||
|
||
## Obtain the test environment | ||
|
||
1. Create a directory called `evaluate-loki` for the test environment. Make `evaluate-loki` your current working directory: | ||
```bash | ||
mkdir evaluate-loki | ||
cd evaluate-loki | ||
``` | ||
1. Download `loki-config.yaml`, `promtail-local-config.yaml`, and `docker-compose.yaml`: | ||
|
||
```bash | ||
wget https://raw.githubusercontent.com/grafana/loki/main/examples/getting-started/loki-config.yaml -O loki-config.yaml | ||
wget https://raw.githubusercontent.com/grafana/loki/main/examples/getting-started/promtail-local-config.yaml -O promtail-local-config.yaml | ||
wget https://raw.githubusercontent.com/grafana/loki/main/examples/getting-started/docker-compose.yaml -O docker-compose.yaml | ||
``` | ||
|
||
## Deploy the test environment | ||
|
||
All shell commands are issued from the `evaluate-loki` directory. | ||
|
||
1. With `evaluate-loki` as the current working directory, deploy the test environment using `docker-compose`: | ||
```bash | ||
docker-compose up -d | ||
``` | ||
1. (Optional) Verify that the Loki cluster is up and running. The read component returns `ready` when you point a web browser at http://localhost:3101/ready. The message `Query Frontend not ready: not ready: number of schedulers this worker is connected to is 0` will show prior to the read component being ready. | ||
The write component returns `ready` when you point a web browser at http://localhost:3102/ready. The message `Ingester not ready: waiting for 15s after being ready` will show prior to the write component being ready. | ||
|
||
## Use Grafana and the test environment | ||
|
||
Use [Grafana](https://grafana.com/docs/grafana/latest/) to query and observe the log lines captured in the Loki cluster by navigating a browser to http://localhost:3000. | ||
The Grafana instance has Loki configured as a [datasource](https://grafana.com/docs/grafana/latest/datasources/loki/). | ||
|
||
Click on the Grafana instance's [Explore](https://grafana.com/docs/grafana/latest/explore/) icon to bring up the explore pane. | ||
Use the Explore dropdown menu to choose the Loki datasource and bring up the Loki query browser. | ||
Try some queries. | ||
Enter your query into the **Log browser** box, and click on the blue **Run query** button. | ||
To see all the log lines that flog has generated: | ||
``` | ||
{container="evaluate-loki_flog_1"} | ||
``` | ||
The flog app will generate log lines for invented HTTP requests. | ||
To see all `GET` log lines, enter the query: | ||
``` | ||
{container="evaluate-loki_flog_1"} |= "GET" | ||
``` | ||
For `POST` methods: | ||
``` | ||
{container="evaluate-loki_flog_1"} |= "POST" | ||
``` | ||
To see every log line with a 401 status (unauthorized error): | ||
``` | ||
{container="evaluate-loki_flog_1"} | json | status="401" | ||
``` | ||
To see every log line other than those that contain the value 401: | ||
``` | ||
{container="evaluate-loki_flog_1"} != "401" | ||
``` | ||
Refer to [query examples](../logql/query_examples/) for more examples. | ||
## Stop and clean up the test environment | ||
To break down the test environment: | ||
- Close the Grafana browser window | ||
- Stop and remove all the Docker containers. With `evaluate-loki` as the current working directory: | ||
```bash | ||
docker-compose down | ||
``` | ||
## Modifying the flog app output | ||
You can modify the flog app's log line generation by changing | ||
its configuration. | ||
Choose one of these two ways to apply a new configuration: | ||
|
||
- To remove already-generated logs, restart the test environment with a new configuration. | ||
|
||
1. Stop and clean up an existing test environment: | ||
``` | ||
docker-compose down | ||
``` | ||
1. Edit the `docker-compose.yaml` file. Within the YAML file, change the `flog.command` field's value to specify your flog output. | ||
1. Instantiate the new test environment: | ||
``` | ||
docker-compose up | ||
``` | ||
- To keep already-generated logs in the running test environment, restart flog with a new configuration. | ||
1. Edit the `docker-compose.yaml` file. Within the YAML file, change the `flog.command` field's value to specify your flog output. | ||
1. Restart only the flog app within the currently-running test environment: | ||
``` | ||
docker-compose up -d --force-recreate flog | ||
``` | ||
|
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
4 changes: 3 additions & 1 deletion
4
docs/sources/getting-started/grafana.md → docs/sources/operations/grafana.md
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
4 changes: 3 additions & 1 deletion
4
...ources/getting-started/troubleshooting.md → docs/sources/operations/troubleshooting.md
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
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,7 @@ | ||
--- | ||
title: Tools | ||
weight: 1050 | ||
--- | ||
# Tools | ||
|
||
- [LogCLI](logcli/) |
2 changes: 2 additions & 0 deletions
2
docs/sources/getting-started/logcli.md → docs/sources/tools/logcli.md
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
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,11 @@ | ||
# Loki examples | ||
|
||
This directory contains examples and example configuration for Loki. | ||
|
||
## Hosted logs in Grafana Cloud | ||
|
||
You can use [Grafana Cloud](https://grafana.com/products/cloud/features/#cloud-logs) to avoid installing, maintaining, and scaling your own instance of Grafana Loki. The free forever plan includes 50GB of free logs. [Create an account to get started](https://grafana.com/auth/sign-up/create-user?pg=docs-loki&plcmt=in-text). | ||
|
||
## Getting started with Loki | ||
|
||
Configuration files in the `getting-started` directory are used by the [Loki getting started guide](https://grafana.com/docs/loki/latest/getting-started/). |
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,4 @@ | ||
# Loki getting started guide configuration | ||
|
||
This directory contains configuration to use with the [Loki getting started guide](https://grafana.com/docs/loki/latest/getting-started/). | ||
|
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