I’m pretty new to selfhosting, but one thing that I know to take seriously is log collection. Since there are a lot of different type of logs (kernel log, application logs, etc) and logs come in many different formats (binary, json, strings) - it’s no easy task to collect them centrally and look through them whenever neccessarly.

I’ve looked at grafana and tried the agent briefly, but it wasn’t as easy as I thought (and it might be a too big tool for my needs). So I thought to ask the linuxlemmy community to get some inspiration.

  • oranki@sopuli.xyz
    link
    fedilink
    arrow-up
    2
    ·
    1 year ago

    For a bit enhanced log file viewing, you could use something like lnav, I think it’s packaged for most distributions.

    Cockpit can be useful for journald, but personally I think GUI stuff is a bit clunky for logs.

    Grep, awk and sed are powerful tools, even with only basic knowledge of them. Vim in readonly mode is actually quite effective for single files too.

    For aggregating multiple servers’ logs good ol’ rsyslog is good, but not simple to set up. There are tutorials online.

    • ReversalHatchery@beehaw.org
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      1 year ago

      Holy guacamole this (edit: lnav) is pretty good! Probably does not solve collection of logs from multiple systems, but for local inspection (or after having files copied elsewhere) it seems to be a real powertool

      • oranki@sopuli.xyz
        link
        fedilink
        arrow-up
        1
        ·
        1 year ago

        Rsyslog to collect logs to a single server, then lnav for viewing them on that server is a good combo. Oldschool but very effective for self-host scale.

        Glad the tip was useful!

  • z3bra@lemmy.sdf.org
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    1 year ago

    I’ve just started digging into it myself ! Here’s my current setup (I’ll see how it scales in the long term):

    • syslog on every host
    • Telegraf collects and parse logs
    • InfluxDB stores everything
    • Grafana for dashboards

    I run OpenBSD on all my servers, and configure all the services to log via syslog.

    Then I configuré syslog to send only those I care about (https, DNS, …) to a central telegraf instance, using the syslog protocol (RFC3164).

    On this collector, telegraf gets all these logs and parse them using custom grok patterns I’m currently building, to make sense out of every log line it receives. The parsed logs are in turns stored in Influxdb, running on the same host.

    I then use Grafana to query InfluxDB and create dashboards out of these logs. Grafana can also display the logs “as-is” so you can search through them (it’s not ideal though as you simply search by regex from the full message, so it’s on par with grep at least).

    This setup is fairly new and seem to work very well. Telegraf is also very low on resource usage for now. I’ll have to continue adding grok patterns and send more application logs to it to see how it handles the load. I do have a few questions still unanswered for now, but time will tell:

    Q: Should I first collect via a central syslog before sending to telegraf ?
    This would let syslog archive all logs in plain text, rotate and compress them. I would also only have a single host to configure for sending logs to telegraf. However this would eat up space, and could hide the original sending hostname for each log. I might try that someday.

    Q: Should I run telegraf on each host ?
    This would distribute the load of the grok parsing amongst all hosts, and then all telegraf processes will send directly to the central one for collection, or even directly into influxdb. I would also benefit from telegraf being install on each host to collect more data (CPU, network stats, …). However it makes the configuration more complex to handle.

    Q: What is a good retention period ?
    For now, influxDB doesn’t expire any data, as I don’t have much yet. In the long run, I should probably delete old data, but it’s hard to tell what is “old” in my case.

    Q: Do I need an interface to read logs ?
    I use this setup mostly for graphs, as grafana can make sense of fields like “http_verb”, “http_code” and such. However, it is much more practical for me to dig into the logs right on the server, in /var/log. Having an interface like chronograf or graylog seems practical, but I feel like it’s overdoing it.

    Bonus: unbound dashboard

    • krash@lemmy.mlOP
      link
      fedilink
      arrow-up
      1
      ·
      1 year ago

      Nice! If you’d write a guide on your setup, I’d be all over it (along with others I’m sure) 😀

    • Hackepeter@feddit.de
      link
      fedilink
      arrow-up
      1
      ·
      1 year ago

      How is the query performance of influxdb for searches in logs for text keywords?

      Instead of Influxdb we are using Solr and it is pretty much instantaneous for searching and ordering no matter how large the data is (couple of hundred gigabytes of logs for now). We use it to provide true real-time search in logs for our support team.

  • dotslashme@infosec.pub
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    Personally I use Loki to aggregate my logs but I’m probably not the typical selfhoster.

    You should first define your needs, if you don’t need logs, then don’t bother with them.

    • sLLiK@lemmy.ml
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      1 year ago

      This has been on my radar for a while, and I keep putting it off. How are you liking it?

      Grafana’s Loki sounded incredibly useful and performant, with the added benefit of reducing storage requirements significantly under some situations.

      • dotslashme@infosec.pub
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 year ago

        It is easier to deal with than the elastic stack, but unless you’re already familiar with log stacks, it is still a bit of a threshold to vet over before it starts paying off.

  • sLLiK@lemmy.ml
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    Syslog (rsyslod) is usually the standard answer for the average sysadmin, but it depends a lot on your needs. A lot of newer loggers output as pure JSON, which offer benefits to readability and more approachable search logic/filters/queries (I’m so tired of regex).

    When you start venturing down the road of finding the right way to store and forward the output of logging drivers from Docker containers, as one example, rsyslod starts to feel dated.

    The easy answers if you want to throw money at the problem are solutions like Splunk, Datadog, or New Relic. If you don’t want to (and most people wouldn’t), then alternatives certainly exist, but some of them are just as heavy on system resources. Greylog has relative feature parity with Splunk Enterprise, but consumes just as much compute and storage if not more, and I found it to be a much larger pain in the butt to administer and keep running.

    The likeliest answer to this problem is Grafana Loki, just based on what I’ve read of its capabilities, but I haven’t had a chance to circle back and test it out. Someone here who has might be able to weigh in and speak to its strengths/weaknesses.

  • Azzu@lemm.ee
    link
    fedilink
    arrow-up
    1
    arrow-down
    1
    ·
    1 year ago

    Honestly? I just ignore them. Something seems to be happening to them, as they’re not growing infinitely, but no idea why.

    It was a bit complicated to set this up, but it took me almost no time at all.

    • corsicanguppy@lemmy.ca
      link
      fedilink
      arrow-up
      0
      ·
      1 year ago

      So does syslog; and really well. Logging is just another thing Lennart tried to take over from a working system, that he and Kay half-delivered, and wandered off. See also: nfsroot, fast boots, easy init config, nfs mounts in general, and cron.