Hello selfhosters.

We all have bare-metal servres, VPS:es, containers and other things running. Some of them may be exposed openly to the internet, which is populated by autonomous malicious actors, and some may reside on a closed-off network since they contain sensitive data.

And there is a lot of solutions to monitor your servers, since none of us want our resources to be part of a botnet, or mine bitcoins for APTs, or simply have confidential data fall into the wrong hands.

Some of the tools I’ve looked at for this task are check_mk, netmonitor, monit: all of there monitor metrics such as CPU, RAM and network activity. Other tools such as Snort or Falco are designed to particularly detect suspicious activity. And there also are solutions that are hobbled together, like fail2ban actions together with pushover to get notified of intrusion attempts.

So my question to you is - how do you monitor your servers and with what tools? I need some inspiration to know what tooling to settle on to be able that detect unwanted external activity on my resources.

  • Avid Amoeba
    link
    English
    7
    edit-2
    4 months ago

    Prometheus.

    It’s open source, it’s easy to setup, its agents are available for nearly anything including OpenWrt, it can serve the simplest use case of “is it down” as well as much more complicated ones that stem from its ability to collect data over time.

    Personally I’m monitoring:

    • Is it up?
    • Is the storage array healthy?
    • Are the services I care about running?

    I used to run it ephemerallly - wiping data on restart. Recently started persisting its data so I can see data over the longer run.

    • @[email protected]
      link
      fedilink
      English
      24 months ago

      What do you use to see the data? Prometheus itself is easy to set up, but getting to the data seemed complicated.

      • Avid Amoeba
        link
        English
        2
        edit-2
        4 months ago

        The Prometheus built-in web UI. I find it pretty simple.