GithubHelp home page GithubHelp logo

raymondseger / loki Goto Github PK

View Code? Open in Web Editor NEW

This project forked from grafana/loki

0.0 3.0 0.0 9.36 MB

Like Prometheus, but for logs.

License: Apache License 2.0

Makefile 4.62% Go 89.31% Dockerfile 1.02% Shell 3.82% Yacc 1.22%

loki's Introduction

Loki Logo

CircleCI Go Report Card Slack

Loki: like Prometheus, but for logs.

Loki is a horizontally-scalable, highly-available, multi-tenant log aggregation system inspired by Prometheus. It is designed to be very cost effective and easy to operate, as it does not index the contents of the logs, but rather a set of labels for each log stream.

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.
  • has native support in Grafana (already in the nightly builds, will be included in Grafana 6.0).

Loki consists of 3 components:

  • loki is the main server, responsible for storing logs and processing queries.
  • promtail is the agent, responsible for gathering logs and sending them to loki.
  • Grafana for the UI.

Getting started

Currently there are three ways to try out Loki: using our free hosted demo, running it locally with Docker or building from source.

Free Hosted Demo

Grafana is running a free, hosted demo cluster of Loki; instructions for getting access can be found at grafana.com.

Run Locally Using Docker

The Docker images for Loki and Promtail are available on DockerHub.

To test locally using docker run:

  1. git clone this repo locally

    git clone https://github.com/grafana/loki.git
    cd loki
  2. Create a Docker network that the Docker containers can share:

    docker network create loki
  3. Start the Loki server:

    docker run -d --name loki --network=loki -p 3100:3100 --volume "$PWD/docs:/etc/loki" grafana/loki:master -config.file=/etc/loki/loki-local-config.yaml
  4. Then start the Promtail agent. The default config polls the contents of your /var/log directory.

    docker run -d --name promtail --network=loki --volume "$PWD/docs:/etc/promtail" --volume "/var/log:/var/log" grafana/promtail:master -config.file=/etc/promtail/promtail-docker-config.yaml
  5. If you also want to run Grafana in docker:

    docker run -d --name grafana --network=loki -p 3000:3000 -e "GF_EXPLORE_ENABLED=true" grafana/grafana:master
  6. Follow the steps for configuring the datasource in Grafana in the section below and set the URL field to: http://loki:3100

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)
  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:

docker pull grafana/grafana:master

Or for docker-compose:

docker-compose pull

Configuring the Loki Datasource in Grafana

Grafana ships with built-in support for Loki in the latest nightly builds. Loki support will be officially released in Grafana 6.0.

  1. Open the side menu by clicking the Grafana icon in the top header.
  2. In the side menu under the Dashboards link you should find a link named Data Sources.
  3. Click the + Add data source button in the top header.
  4. Choose Loki from the list.
  5. The http URL field should be the address of your Loki server e.g. http://localhost:3100 and http://loki:3100 when running with docker and docker-compose.

Read more about the Explore feature in the Grafana docs and on how to search and filter logs with Loki.

Searching with Labels and Distributed Grep

A log query consists of two parts: log stream selector, and a search expression. For performance reasons you need to start by choosing a log stream by selecting a log label.

The log stream selector will reduce the number of log streams to a manageable volume and then the regex search expression is used to do a distributed grep over those log streams.

Searching can be done in the Explore section of Grafana (latest nightly builds) or via the logcli tool which is documented here.

Log Stream Selector

For the label part of the query expression, wrap it in curly braces {} and then use the key value syntax for selecting labels. Multiple label expressions are separated by a comma:

{app="mysql",name="mysql-backup"}

The following label matching operators are currently supported:

  • = exactly equal.
  • != not equal.
  • =~ regex-match.
  • !~ do not regex-match.

Examples:

  • {name=~"mysql.+"}
  • {name!~"mysql.+"}

The same rules that apply for Prometheus Label Selectors apply for Loki Log Stream Selectors.

Regex Search Expression

After writing the Log Stream Selector, you can filter the results further by writing a search expression. The search expression can be just text or a regex expression.

Example queries:

  • {job="mysql"} error
  • {name="kafka"} tsdb-ops.*io:2003
  • {instance=~"kafka-[23]",name="kafka"} kafka.server:type=ReplicaManager

Build and Run Loki Locally

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

You need go v1.10+

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

To run promtail, use the following commands:

$ go build ./cmd/promtail
$ ./promtail -config.file=./docs/promtail-local-config.yaml
...

Grafana is Loki's UI, so you'll also want to run one of those:

$ docker run -ti -p 3000:3000 -e "GF_EXPLORE_ENABLED=true" grafana/grafana:master

In the Grafana UI (http://localhost:3000), log in with "admin"/"admin", add a new "Grafana Loki" datasource for http://host.docker.internal:3100, then go to explore and enjoy!

Grafana Provisioning

It is possible to configure Grafana datasources using config files with Grafana’s provisioning system. You can read more about how it works in the Grafana documentation.

Here is a simple example of the provisioning yaml config for the Grafana Loki datasource:

apiVersion: 1

datasources:
  - name: Loki
    type: loki
    access: proxy
    url: http://localhost:3100
    editable: false

Example with basic auth:

apiVersion: 1

datasources:
  - name: Loki
    type: loki
    access: proxy
    url: http://localhost:3100
    editable: false
    basicAuth: true
    basicAuthUser: my_user
    basicAuthPassword: test_password

Further Reading

loki's People

Contributors

7c00 avatar adityacs avatar benhall avatar bergquist avatar bulletfactory avatar daixiang0 avatar dancech avatar daniellee avatar davkal avatar f-mer avatar gouthamve avatar jranson avatar loisaidasam avatar metalmatze avatar olivierlacan avatar tomwilkie avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.