Page 1 of 2 12 LastLast
Results 1 to 10 of 14

Thread: Nagios setup

  1. #1
    Join Date
    Jun 2008
    Location
    Tennessee
    Beans
    3,421

    Nagios setup

    I've been playing a little with Nagios to see if I can approximate a replacement for our Solarwinds monitoring that we used to monitor the general state of our WAN.

    I've got a basic server setup, and I've added a few hosts using a tutorial I found online. Seems OK, but I don't think editing config files by hand is going to scale up. I know there are autodiscovery and web-based configuration tools for nagios, but it's a little overwhelming trying to figure out what to use.

    Anyone have any advice for a nagios newbie?

  2. #2
    Join Date
    Aug 2009
    Location
    Makati City, Philippines
    Beans
    2,269
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: Nagios setup

    Nagios really does need an automated host adding feature. Some tools like Groundworks which have Nagios can add a host using a web GUI.

    Anyway, if all your host are just monitored by ping, then you can write a script that any user can run. They would just input the ip address of the server they want to monitor and the script will edit the necessary nagios config files.

  3. #3
    Join Date
    Nov 2008
    Location
    S.H.I.E.L.D. 6-1-6
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: Nagios setup

    I hereby introduce you to NagiosQL

    You will still need to configure nrpe/agent manually (I use btsync for this as after 30+ servers, it becomes boring), but the NagiosQL simplifies the nagios configuration process itself
    Don't waste your energy trying to change opinions ... Do your thing, and don't care if they like it.

  4. #4
    Join Date
    Jun 2008
    Location
    Tennessee
    Beans
    3,421

    Re: Nagios setup

    Quote Originally Posted by sandyd View Post
    I hereby introduce you to NagiosQL

    You will still need to configure nrpe/agent manually (I use btsync for this as after 30+ servers, it becomes boring), but the NagiosQL simplifies the nagios configuration process itself
    I'll take a look; it was on the short list of things to try, but I hadn't gotten to it yet. I've spent all morning wrestling with lilac-reloaded, and yesterday with check_mk. I think I've managed to bork the nagios config pretty badly.

    I'll check nagiosql as soon as my patience level comes back to normal.

  5. #5
    Join Date
    Sep 2011
    Location
    Behind you!
    Beans
    1,690
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Nagios setup

    I don't use any automated configuration system (would not really want to) but I do have a tutorial on how I setup and configured my server which might be helpful.

    Nagios Setup on Ubuntu 12.04

    LHammonds

  6. #6
    Join Date
    Aug 2009
    Location
    Makati City, Philippines
    Beans
    2,269
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: Nagios setup

    Quote Originally Posted by sandyd View Post
    I hereby introduce you to NagiosQL

    You will still need to configure nrpe/agent manually (I use btsync for this as after 30+ servers, it becomes boring), but the NagiosQL simplifies the nagios configuration process itself
    Thanks for the tip sandyd. I think this will be useful on our new deployment OpenVPN clients.

  7. #7
    Join Date
    Nov 2006
    Location
    Belgium
    Beans
    3,025
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Nagios setup

    Quote Originally Posted by lykwydchykyn View Post
    Seems OK, but I don't think editing config files by hand is going to scale up.
    Depends what you have in mind, both in terms of scale (how many hosts/services/....) and how you think to deal with it (distribute the workload over lots of people ? automate it ? ...)
    I don't know the tools others have mentioned, I run a pretty bare Nagios. In terms of scaling up, here are some thoughts :

    - in a stable environment, you're probably not going to be adding hosts or services on a daily basis. Once nagios is set up, it's there, And you only occasionaly have to add somthing. (Unless your environment is so large that as soon as one round of decomissioning, upgrades or reorganization is finished, there's an other one starting already again). So in most cases, once it's set you can pretty much leave it alone.

    - Nagios has a pretty powerful yet flexibel template system - for large numbers of similar hosts you can inherite practically all settings from a template, configuring a host is then limited to the unique attributes of a host - often just a hostname, and an IP address, maybe a parent. Likewise for services.. (it reminds me of OO programming : cascading templates, multiple inheritance, ...). Eg: if your template specifies hostgroup membership; and your services definitions apply to hostgroups, a new host definition is all it takes to have the relevant service checks applied to the newly added host.

    - I hope that tutorial you found explained that you don't need to put everything in 1 config file. You can also have 1 file per host, or 1 file for similar hosts or similar services or .... The good thing about that is that your linux skills in handling text files will pay off : you can organize them in a sensible directory structure, you can grep recusively to find stuff, you can add configuration by copying files and running a sed 'find and repleace' over them, and if you have to repeat that sort of stuff often, you wrap a bash loop around it and make it a script. And you can organize your config files so that edit-by-script becomes even easier (eg by having all files that are likely to be edited in 1 batch in the same subdir, that sort of thing)

    - Nagios supports wildcards (or even regex pattern matrching, iirc) which can be put to good use for adding hosts in hostgroups and the likes. I don't use it much because between the templates and the standard text tools I haven't found a real need for it.

    you might find this interesting : http://users.telenet.be/mydotcom/how...-advanced.html

    this approach may reach its limits when you start doing more complex stuff such as interdependent services, or actions other than "notfiy-by-mail" - those are things I haven't really looked into yet so I can't guarantee that inheritance or (scripted) copy-and-edit will help much.

  8. #8
    Join Date
    Jun 2008
    Location
    Tennessee
    Beans
    3,421

    Re: Nagios setup

    Well, the "human side" of the scenario is that I'm pretty much the "Linux guy" around here, and if managing a system requires writing config files that's pretty much a nonstarter for most of my colleagues. We don't need any super-fancy stuff, just monitoring the state of switches/routers/servers.

    I still need to investigate nagiosql.

  9. #9
    Join Date
    Aug 2009
    Location
    Makati City, Philippines
    Beans
    2,269
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: Nagios setup

    Your lucky with a few server and routers to monitor. We have at least a thousand routers to monitor and changes are made everyday.

  10. #10
    Join Date
    Jun 2008
    Location
    Tennessee
    Beans
    3,421

    Re: Nagios setup

    Quote Originally Posted by nerdtron View Post
    Your lucky with a few server and routers to monitor. We have at least a thousand routers to monitor and changes are made everyday.
    Well we don't have a thousand routers, but I wouldn't describe it as "a few" either. How many nodes we end up monitoring depends on how much anyone else gets behind what I'm setting up, but it could easily be a few hundred depending on what we want to track.

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •