1
0
mirror of https://github.com/ManyakRus/telegram_loki.git synced 2024-12-04 21:05:12 +02:00
Go to file
2023-12-27 14:53:09 +03:00
bin сделал TextError 2023-10-24 09:36:19 +03:00
cmd новый 2023-10-11 18:04:49 +03:00
docs готово readme 2023-10-13 16:40:52 +03:00
internal сделал make mod 2023-12-27 14:53:09 +03:00
vendor сделал make mod 2023-12-27 14:49:07 +03:00
.env_empty сделал TextError 2023-10-23 10:29:01 +03:00
.gitignore готово readme 2023-10-16 10:00:14 +03:00
go.mod сделал make mod 2023-12-27 14:49:07 +03:00
go.sum сделал make mod 2023-12-27 14:49:07 +03:00
Makefile готово readme 2023-10-16 10:00:14 +03:00
README.md сделал TextError 2023-10-23 10:29:01 +03:00
readme.rus сделал TextError 2023-10-23 10:29:01 +03:00

Applications for sending logs with errors from the LOKI(GRAFANA) logger to the Telegram messenger

The LOKI logger has an inconvenient interface for searching errors in application logs, and no one will look there every 5 minutes - Therefore, it is necessary to automate the process of searching for errors in logs and notifying developers.

The application does:

  1. Log in to grafana
  2. Takes a list of services from the services.txt file
  3. For each service, searches for LOKI logs with the text: error:,panic:,ERROR:,PANIC:
  4. Found logs with errors are sent to the Telegram messenger
  5. Repeats the search every 10 minutes

Installation procedure:

  1. Compile this repository make build the telegram_loki file will appear in the bin folder

  2. make a .env file with filled parameters: TELEGRAM_APP_ID= TELEGRAM_APP_HASH= TELEGRAM_PHONE_FROM= TELEGRAM_PHONE_SEND_TEST= LOKI_URL= LOKI_SEARCH_TEXT="\\[ERROR\\]|\\[PANIC\\]|level=error|level=panic"

GRAFANA_LOGIN= GRAFANA_PASSWORD= TELEGRAM_CHAT_NAME= TELEGRAM_MESSAGES_COUNT=

  1. Fill in the settings/services.txt file In json format write the service name in LOKI and the name (login) of the programmer (optional) sample: { "test-service1": "@DeveloperTelegramName" }

  2. Run the telegram_loki file

Source code in Golang language. Tested on Linux Ubuntu Readme from 10/13/2023

License: Save information about the author and the site.

Made by Alexander Nikitin https://github.com/ManyakRus/telegram_loki