Sticky Notes in Nagios

Support forum for Nagios Core, Nagios Plugins, NCPA, NRPE, NSCA, NDOUtils and more. Engage with the community of users including those using the open source solutions.
Locked
cesar.garza
Posts: 80
Joined: Mon Aug 19, 2013 3:14 pm

Sticky Notes in Nagios

Post by cesar.garza »

Hey guys, I wanna know that is there any option for sticky notes in nagios? I know there is a notes_url, but i don't want that. I need something where i can put some points and my group or myself whenever go on the nagios UI, so check the stick notes for particular service.
tmcdonald
Posts: 9117
Joined: Mon Sep 23, 2013 8:40 am

Re: Sticky Notes in Nagios

Post by tmcdonald »

There is a "notes" line you can enter:

Code: Select all

define host {
        host_name               localhost
        use                     linux-server
        alias                   localhost
        address                 127.0.0.1
        notes                   Sticky note
        register                1
        }
and it will show up here:

Image

As for having the note show up *everywhere* you go, that is not possible.
Former Nagios employee
cesar.garza
Posts: 80
Joined: Mon Aug 19, 2013 3:14 pm

Re: Sticky Notes in Nagios

Post by cesar.garza »

tmcdonald wrote:There is a "notes" line you can enter:

Code: Select all

define host {
        host_name               localhost
        use                     linux-server
        alias                   localhost
        address                 127.0.0.1
        notes                   Sticky note
        register                1
        }
and it will show up here:

Image

As for having the note show up *everywhere* you go, that is not possible.

Thanks this is what i needed :) .
Locked