Sign inSign up

kozhurkin/logr

By kozhurkin

•Updated about 1 year ago

https://github.com/504dev/logr

Image
Monitoring & observability
1

4.2K

kozhurkin/logr repository overview

⁠What is Logr?

Logr is an open-source logger and metric service.
Helps you debug and analyze performance of your features.
For more information and documentation see https://github.com/504dev/logr⁠

⁠How to start
docker run -d -p 7776:7776/udp -p 7778:7778 --name logr kozhurkin/logr

The container opens port 7778 for HTTP interface and port 7776 for receiving logs over udp

⁠Volumes

Typically you may want to mount the following folders inside your container to achieve persistency:

  • /var/lib/clickhouse/ - main folder where ClickHouse stores the data
  • /var/lib/mysql/ - main folder where MySQL stores the data
docker run -d \
    -v "$(pwd)/clickhouse_data:/var/lib/clickhouse" \
    -v "$(pwd)/mysql_data:/var/lib/mysql" \
    -p 7776:7776/udp -p 7778:7778 --name logr kozhurkin/logr
⁠Env variables
docker run -d \
    -e OAUTH_GITHUB_ORG=504dev \
    -e OAUTH_GITHUB_CLIENT_ID=Iv1.09c6b868f16ca369 \
    -e OAUTH_GITHUB_CLIENT_SECRET=76ba4bdfbe06b557b19f8ca64a5148df543b5166 \
    -v "$(pwd)/clickhouse_data:/var/lib/clickhouse" \
    -v "$(pwd)/mysql_data:/var/lib/mysql" \
    -p 7776:7776/udp -p 7778:7778 --name logr kozhurkin/logr 

Tag summary

Content type

Image

Digest

sha256:3a6840a20…

Size

364 MB

Last updated

about 1 year ago

docker pull kozhurkin/logr