Skip to content

Commit

Permalink
Fix typo, add external links, change formatting (#112)
Browse files Browse the repository at this point in the history
Signed-off-by: apodkutin <apodkutin@gmail.com>
  • Loading branch information
apodkutin authored and tomwilkie committed Dec 16, 2018
1 parent 61db567 commit 2267992
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Compared to other log aggregation systems, Loki:

- does not do full text indexing on logs. By storing compressed, unstructured logs and only indexing metadata, Loki is simpler to operate and cheaper to run.
- indexes and groups log streams using the same labels you’re already using with Prometheus, enabling you to seamlessly switch between metrics and logs using the same labels that you’re already using with Prometheus.
- is an especially good fit for storing Kubernetes Pod logs; metadata such as Pod labels is automatically scraped and indexed.
- is an especially good fit for storing [Kubernetes](https://kubernetes.io/) Pod logs. Metadata such as Pod labels is automatically scraped and indexed.
- has native support in Grafana (already in the nightly builds, will be included in Grafana 6.0).

Loki consists of 3 components:
Expand All @@ -35,7 +35,7 @@ The Docker images for [Loki](https://hub.docker.com/r/grafana/loki/) and [Promta

To test locally using `docker run`:

1. git clone this repo locally
1. Clone this repository locally
```bash
git clone https://github.com/grafana/loki.git
cd loki
Expand Down Expand Up @@ -65,11 +65,11 @@ To test locally using `docker run`:

Another option is to use the docker-compose file in the docs directory:

1. git clone this repo locally (or just copy the contents of the docker-compose file locally into a file named `docker-compose.yaml`)
1. `git clone` this repository locally (or just copy the contents of the docker-compose file locally into a file named `docker-compose.yaml`)
2. `cd loki/docs`
3. `docker-compose up`

If you have have an older cached version of the grafana/grafana:master container then start by doing either:
If you have an older cached version of the `grafana/grafana:master` container then start by doing either:

```bash
docker pull grafana/grafana:master
Expand Down Expand Up @@ -135,15 +135,15 @@ Example queries:

Loki can be run in a single host, no-dependencies mode using the following commands.

You need `go` v1.10+
You need `go` [v1.10+](https://golang.org/dl/)

```bash
$ go build ./cmd/loki
$ ./loki -config.file=./docs/loki-local-config.yaml
...
```

To run promtail, use the following commands:
To run Promtail, use the following commands:

```bash
$ go build ./cmd/promtail
Expand Down

0 comments on commit 2267992

Please sign in to comment.