First of all i DONT’T ask what DO YOU use, because i know some ppl have really advanced and fancy stuff at home. So if you want give advice please try to make it relevant to this post. Otherwise it wont be usefull much.

Im looking for some simple log aggregator system which allows me to see logs in one place (like web panel). Logs i want to observe are:

  • syslogs from few machines
  • docker containers logs
  • logs in docker volumes (like nginx proxy configs)

I dont need fancy filtering, querying, alerting, visualisations, webhooks etc. I just want to gather my logs in one place and be able to quickly check them out. For example ELK stack which i used in the past is complete opposite of this.

Ive seen Loki, but it requires to learn graphQL and there are some weird issues with docker driver (like freezing all containers when loki goes down??).

Ive seen Graylog tutorial by Lawrence Systems and it seems to be simpler on the surface, yet powerfull if needed. Im checking now how to monitor docker with it.

Ive seen some swear by splunk - that it’s easy to setup - is it true?

    • chignole@alien.topB
      link
      fedilink
      English
      arrow-up
      1
      ·
      10 months ago

      I use dozzle to access my containers logs, it’s simple and yet works very well for my needs, but OP needs to monitor syslogs and i don’t know if it’s possible with Dozzle ?

  • Xenkath@alien.topB
    link
    fedilink
    English
    arrow-up
    1
    ·
    10 months ago

    I really like Seq. It supports tons of log types, including GELF, which means you can configure your docker hosts to send all container logs to Seq with just a couple lines in Docker’s daemon.json file.

    Setup is pretty simple as a docker compose stack containing the Seq container and a container for ingesting each of the log types you plan to use.

    If you wanted to try it out, I’d recommend setting up Seq with seq-input-gelf and seq-input-syslog, and setting up nginx to send access and error logs to syslog as detailed here.