Paws/Docker/Docker-Compose/Monitioring/README.md

23 lines
577 B
Markdown
Raw Normal View History

2025-02-05 13:05:31 +01:00
# Monitoring Stack
This is my Monitoring Stack starting point configuration.
Mainly built for use with docker/docker-compose.
## Loki
### Loki Docker Log Driver
To be able to send the docker container log to Loki
we need to install the `loki-docker-driver` docker
plugin. We can do so by running this command:
```Shell
docker plugin install grafana/loki-docker-driver:latest --alias loki --grant-all-permissions
```
// or if you are running this on a Raspberry Pi
```Shell
docker plugin install grafana/loki-docker-driver:arm-v7 --alias loki --grant-all-permissions
```