3 | Copyright(c) 2009 until further notice:
4 | Nagios Core Development Team and Nagios Community Contributors
5 |
6 | For detailed authorship information, refer to the source control
7 | management history and pay particular attention to commit messages
8 | and the THANKS file.
9 |
10 |
11 | All source code, binaries, documentation, information, and other files
12 | contained in this distribution are provided AS IS with NO WARRANTY OF
13 | ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY, AND FITNESS
14 | FOR A PARTICULAR PURPOSE.
15 |
16 | Nagios and the Nagios logo are trademarks, servicemarks, registered
17 | trademarks or registered servicemarks owned by Nagios Enterprises, LLC.
18 | All other trademarks, servicemarks, registered trademarks, and
19 | registered servicemarks are the property of their respective owner(s).
20 |
21 |
--------------------------------------------------------------------------------
/UPGRADING:
--------------------------------------------------------------------------------
1 | Upgrading to Nagios 3.x
2 | -----------------------
3 |
4 | The HTML documentation covers what you need to know in order
5 | to upgrade from Nagios 2.x You can find the documentation in
6 | the following subdirectory:
7 |
8 | html/docs
9 |
10 | Make sure to read the following sections:
11 |
12 | - "What's New" (whatsnew.html)
13 | - "Upgrading Nagios" (upgrading.html)
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/base/.gitignore:
--------------------------------------------------------------------------------
1 | *.o
2 | nagios
3 | nagiostats
4 |
--------------------------------------------------------------------------------
/cgi/.gitignore:
--------------------------------------------------------------------------------
1 | *.o
2 | *.cgi
3 | Makefile
4 |
--------------------------------------------------------------------------------
/common/.gitignore:
--------------------------------------------------------------------------------
1 | Makefile
2 |
--------------------------------------------------------------------------------
/common/Makefile.in:
--------------------------------------------------------------------------------
1 | ############################
2 | # Makefile for Nagios
3 | #
4 | ############################
5 |
6 | # Source code directories
7 | SRC_BASE=../common
8 | SRC_CGI=../cgi
9 |
10 | CC=@CC@
11 | CFLAGS=@CFLAGS@ @DEFS@
12 | LDFLAGS=@LDFLAGS@ @LIBS@
13 |
14 | prefix=@prefix@
15 | exec_prefix=@exec_prefix@
16 | LOGDIR=@localstatedir@
17 | CFGDIR=@sysconfdir@
18 | BINDIR=@bindir@
19 | CGIDIR=@sbindir@
20 | HTMLDIR=@datarootdir@
21 | INSTALL=@INSTALL@
22 | INSTALL_OPTS=@INSTALL_OPTS@
23 | COMMAND_OPTS=@COMMAND_OPTS@
24 |
25 | CP=@CP@
26 |
27 |
28 | clean:
29 | rm -f core *.o
30 | rm -f *~
31 |
32 | distclean: clean
33 | rm -f Makefile
34 |
35 | devclean: distclean
36 |
37 | install:
38 |
39 |
--------------------------------------------------------------------------------
/contrib/.gitignore:
--------------------------------------------------------------------------------
1 | Makefile
2 | convertcfg
3 | daemon-chk.cgi
4 | nagios-worker
5 |
--------------------------------------------------------------------------------
/contrib/eventhandlers/disable_active_service_checks:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | # Write a command to the Nagios command file to cause
4 | # it to disable active service checks. This can be
5 | # referred to as 'standby' mode in a redundant monitoring
6 | # environment.
7 |
8 | # Notes:
9 | # 1) This script is not intended to be used as an
10 | # event handler by itself. Instead, it is used by other
11 | # event handler scripts (like the redundancy examples).
12 | # 2) In order for Nagios to process any commands that
13 | # are written to the command file, you must enable
14 | # the check_external_commands option in the main
15 | # configuration file.
16 |
17 | printfcmd="/usr/bin/printf"
18 |
19 | CommandFile="/usr/local/nagios/var/rw/nagios.cmd"
20 |
21 | # get the current date/time in seconds since UNIX epoch
22 | datetime=`date +%s`
23 |
24 | # pipe the command to the command file
25 | `$printfcmd "[%i] STOP_EXECUTING_SVC_CHECKS\n" $datetime >> $CommandFile`
26 |
27 |
--------------------------------------------------------------------------------
/contrib/eventhandlers/disable_notifications:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | # Write a command to the Nagios command file to cause
4 | # it to disable host and service notifications
5 |
6 | # Notes:
7 | # 1) This script is not intended to be used as an
8 | # event handler by itself. Instead, it is used by other
9 | # event handler scripts (like the redundancy examples).
10 | # 2) In order for Nagios to process any commands that
11 | # are written to the command file, you must enable
12 | # the check_external_commands option in the main
13 | # configuration file.
14 |
15 | printfcmd="/usr/bin/printf"
16 |
17 | CommandFile="/usr/local/nagios/var/rw/nagios.cmd"
18 |
19 | # get the current date/time in seconds since UNIX epoch
20 | datetime=`date +%s`
21 |
22 | # pipe the command to the command file
23 | `$printfcmd "[%i] DISABLE_NOTIFICATIONS;%i\n" $datetime $datetime >> $CommandFile`
24 |
25 |
--------------------------------------------------------------------------------
/contrib/eventhandlers/enable_active_service_checks:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | # Write a command to the Nagios command file to cause
4 | # it to enable active service checks. This can be
5 | # referred to as 'active' mode in a redundant monitoring
6 | # environment.
7 |
8 | # Notes:
9 | # 1) This script is not intended to be used as an
10 | # event handler by itself. Instead, it is used by other
11 | # event handler scripts (like the redundancy examples).
12 | # 2) In order for Nagios to process any commands that
13 | # are written to the command file, you must enable
14 | # the check_external_commands option in the main
15 | # configuration file.
16 |
17 | printfcmd="/usr/bin/printf"
18 |
19 | CommandFile="/usr/local/nagios/var/rw/nagios.cmd"
20 |
21 | # get the current date/time in seconds since UNIX epoch
22 | datetime=`date +%s`
23 |
24 | # pipe the command to the command file
25 | `$printfcmd "[%i] START_EXECUTING_SVC_CHECKS\n" $datetime >> $CommandFile`
26 |
27 |
--------------------------------------------------------------------------------
/contrib/eventhandlers/enable_notifications:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | # Write a command to the Nagios command file to cause
4 | # it to enable host and service notifications
5 |
6 | # Notes:
7 | # 1) This script is not intended to be used as an
8 | # event handler by itself. Instead, it is used by other
9 | # event handler scripts (like the redundancy examples).
10 | # 2) In order for Nagios to process any commands that
11 | # are written to the command file, you must enable
12 | # the check_external_commands option in the main
13 | # configuration file.
14 |
15 | printfcmd="/usr/bin/printf"
16 |
17 | CommandFile="/usr/local/nagios/var/rw/nagios.cmd"
18 |
19 | # get the current date/time in seconds since UNIX epoch
20 | datetime=`date +%s`
21 |
22 | # pipe the command to the command file
23 | `$printfcmd "[%i] ENABLE_NOTIFICATIONS;%i\n" $datetime $datetime >> $CommandFile`
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/contrib/exfoliation/images/NagiosEnterprises-whitebg-112x46.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/NagiosEnterprises-whitebg-112x46.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/ack.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/ack.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/action-graph.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/action-graph.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/action-nagios.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/action-nagios.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/action-orig.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/action-orig.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/action.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/action.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/command.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/command.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/comment.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/comment.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/contexthelp1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/contexthelp1.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/contexthelp2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/contexthelp2.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/critical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/critical.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/delay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/delay.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/delete.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/delete.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/detail.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/detail.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/disabled.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/disabled.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/down.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/down.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/downtime.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/downtime.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/empty.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/empty.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/enabled.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/enabled.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/extinfo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/extinfo.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/favicon.ico
--------------------------------------------------------------------------------
/contrib/exfoliation/images/flapping.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/flapping.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/graph.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/graph.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/greendot.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/greendot.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/histogram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/histogram.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/history.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/history.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/hostevent.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/hostevent.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/info.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/info.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/left.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/left.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logofullsize.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logofullsize.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/aix.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/aix.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/aix.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/aix.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/aix.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/aix.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/aix.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/aix.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/amiga.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/amiga.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/amiga.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/amiga.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/amiga.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/amiga.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/amiga.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/amiga.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/apple.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/apple.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/apple.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/apple.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/apple.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/apple.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/apple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/apple.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/beos.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/beos.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/beos.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/beos.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/beos.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/beos.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/beos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/beos.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/bluetooth.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/bluetooth.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/caldera.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/caldera.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/caldera.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/caldera.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/caldera.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/caldera.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/caldera.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/caldera.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/cat1900.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/cat1900.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/cat2900.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/cat2900.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/cat5000.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/cat5000.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/database.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/database.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/database.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/database.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/debian.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/debian.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/debian.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/debian.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/debian.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/debian.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/debian.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/debian.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/desktop-server.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/desktop-server.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/desktop-server.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/desktop-server.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/ethernet_card.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/ethernet_card.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/fax.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/fax.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/fax.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/fax.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/firewall.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/firewall.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/firewall.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/firewall.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/freebsd40.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/freebsd40.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/freebsd40.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/freebsd40.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/freebsd40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/freebsd40.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/freebsd40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/freebsd40.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/globe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/globe.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/graph.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/graph.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/hp-printer40.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/hp-printer40.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/hp-printer40.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/hp-printer40.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/hp-printer40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/hp-printer40.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/hp-printer40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/hp-printer40.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/hpux.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/hpux.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/hpux.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/hpux.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/hpux.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/hpux.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/hpux.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/hpux.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/hub.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/hub.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/hub.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/hub.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/internet.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/internet.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/internet.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/internet.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/internet_device.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/internet_device.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/ip-pbx.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/ip-pbx.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/ip-pbx.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/ip-pbx.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/irix.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/irix.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/irix.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/irix.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/irix.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/irix.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/irix.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/irix.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/linux40.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/linux40.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/linux40.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/linux40.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/linux40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/linux40.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/linux40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/linux40.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/logo.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/logo.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/mac40.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/mac40.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/mac40.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/mac40.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/mac40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/mac40.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/mac40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/mac40.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/mainframe.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/mainframe.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/mainframe.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/mainframe.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/mandrake.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/mandrake.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/mandrake.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/mandrake.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/mandrake.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/mandrake.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/mandrake.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/mandrake.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/monitor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/monitor.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/nagios.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/nagios.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/nagios.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/nagios.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/nagiosvrml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/nagiosvrml.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/next.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/next.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/next.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/next.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/next.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/next.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/next.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/ng-switch40.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/ng-switch40.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/ng-switch40.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/ng-switch40.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/ng-switch40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/ng-switch40.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/ng-switch40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/ng-switch40.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/notebook.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/notebook.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/notebook.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/notebook.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/novell40.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/novell40.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/novell40.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/novell40.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/novell40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/novell40.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/novell40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/novell40.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/openbsd.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/openbsd.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/openbsd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/openbsd.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/openbsd.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/openbsd.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/openbsd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/openbsd.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/printer.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/printer.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/printer.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/printer.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/rack-server.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/rack-server.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/rack-server.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/rack-server.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/redhat.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/redhat.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/redhat.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/redhat.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/redhat.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/redhat.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/redhat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/redhat.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/router.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/router.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/router.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/router.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/router40.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/router40.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/router40.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/router40.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/router40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/router40.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/router40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/router40.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/san.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/san.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/san.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/san.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/satellite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/satellite.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/server.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/server.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/signal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/signal.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/slackware.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/slackware.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/slackware.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/slackware.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/slackware.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/slackware.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/slackware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/slackware.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/stampede.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/stampede.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/stampede.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/stampede.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/stampede.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/stampede.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/stampede.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/stampede.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/station.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/station.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/storm.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/storm.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/storm.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/storm.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/storm.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/storm.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/storm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/storm.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/sun40.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/sun40.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/sun40.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/sun40.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/sun40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/sun40.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/sun40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/sun40.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/sunlogo.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/sunlogo.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/sunlogo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/sunlogo.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/sunlogo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/sunlogo.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/sunlogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/sunlogo.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/switch.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/switch.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/switch.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/switch.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/switch40.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/switch40.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/switch40.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/switch40.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/switch40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/switch40.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/switch40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/switch40.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/thin-client.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/thin-client.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/thin-client.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/thin-client.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/turbolinux.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/turbolinux.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/turbolinux.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/turbolinux.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/turbolinux.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/turbolinux.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/turbolinux.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/turbolinux.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/ultrapenguin.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/ultrapenguin.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/ultrapenguin.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/ultrapenguin.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/ultrapenguin.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/ultrapenguin.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/ultrapenguin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/ultrapenguin.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/unicos.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/unicos.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/unicos.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/unicos.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/unicos.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/unicos.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/unicos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/unicos.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/unknown.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/unknown.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/unknown.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/unknown.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/webcamera.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/webcamera.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/wifi.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/wifi.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/wifi.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/wifi.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/wifi_modem.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/wifi_modem.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/win40.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/win40.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/win40.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/win40.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/win40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/win40.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/win40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/win40.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/workstation.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/workstation.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/workstation.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/workstation.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/workstation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/workstation.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/workstation_locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/workstation_locked.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/yellowdog.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/yellowdog.gd2
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/yellowdog.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/yellowdog.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/yellowdog.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/yellowdog.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logos/yellowdog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logos/yellowdog.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/logrotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/logrotate.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/ndisabled.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/ndisabled.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/noack.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/noack.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/notes.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/notes.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/notify.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/notify.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/orangedot.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/orangedot.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/passiveonly.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/passiveonly.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/recovery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/recovery.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/redundancy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/redundancy.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/restart.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/restart.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/right.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/right.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/sblogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/sblogo.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/serviceevent.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/serviceevent.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/sflogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/sflogo.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/splunk1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/splunk1.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/splunk2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/splunk2.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/start.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/start.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/status.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/status.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/status2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/status2.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/status3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/status3.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/status4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/status4.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/stop.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/stop.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/tacdisabled.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/tacdisabled.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/tacdisabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/tacdisabled.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/tacenabled.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/tacenabled.jpg
--------------------------------------------------------------------------------
/contrib/exfoliation/images/tacenabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/tacenabled.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/thermcrit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/thermcrit.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/thermok.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/thermok.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/thermwarn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/thermwarn.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/trends.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/trends.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/trendshost.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/trendshost.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/trendssvc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/trendssvc.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/unknown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/unknown.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/up.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/up.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/warning.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/weblogo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/weblogo1.png
--------------------------------------------------------------------------------
/contrib/exfoliation/images/zoom1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/zoom1.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/images/zoom2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/contrib/exfoliation/images/zoom2.gif
--------------------------------------------------------------------------------
/contrib/exfoliation/stylesheets/cmd.css:
--------------------------------------------------------------------------------
1 | /* exfoliation: a nagios makeover */
2 | /* Copyright 2010 Matthew Wall, all rights reserved */
3 | /* */
4 | /* Permission to use, copy, modify, and distribute this software for any */
5 | /* purpose with or without fee is hereby granted, provided that the above */
6 | /* copyright notice and this permission notice appear in all copies. */
7 |
8 | .cmd { }
9 |
10 | .cmdType { font-size: 12pt; font-weight: bold; color: #aa0000; padding-bottom: 40; }
11 | .commandDescription { font-size: 8pt; background-color: #f4f2f2; border: 1px solid #d0d0d0; margin: 4 0 0 0; padding: 4 4 4 4; }
12 | .descriptionTitle { font-size: 10pt; font-weight: bold; }
13 | .infoMessage { font-size: 8pt; background-color: #efefaa; border: 1px solid #777777; margin: 40 20% 0 20%; padding: 5 5 5 5; }
14 | .optBox { font-size: 9pt; padding: 5 5 5 5; }
15 |
--------------------------------------------------------------------------------
/contrib/exfoliation/stylesheets/config.css:
--------------------------------------------------------------------------------
1 | /* exfoliation: a nagios makeover */
2 | /* Copyright 2010 Matthew Wall, all rights reserved */
3 | /* */
4 | /* Permission to use, copy, modify, and distribute this software for any */
5 | /* purpose with or without fee is hereby granted, provided that the above */
6 | /* copyright notice and this permission notice appear in all copies. */
7 |
8 | .config { }
9 |
10 | .reportSelectSubTitle { font-size: 9pt; text-align: left; }
11 | .reportSelectItem { font-size: 9pt; }
12 |
--------------------------------------------------------------------------------
/contrib/exfoliation/stylesheets/histogram.css:
--------------------------------------------------------------------------------
1 | /* exfoliation: a nagios makeover */
2 | /* Copyright 2010 Matthew Wall, all rights reserved */
3 | /* */
4 | /* Permission to use, copy, modify, and distribute this software for any */
5 | /* purpose with or without fee is hereby granted, provided that the above */
6 | /* copyright notice and this permission notice appear in all copies. */
7 |
8 | .histogram { }
9 |
10 | .helpfulHints { font-size: 10pt; font-style: italic; text-align: center; }
11 |
--------------------------------------------------------------------------------
/contrib/exfoliation/stylesheets/history.css:
--------------------------------------------------------------------------------
1 | /* exfoliation: a nagios makeover */
2 | /* Copyright 2010 Matthew Wall, all rights reserved */
3 | /* */
4 | /* Permission to use, copy, modify, and distribute this software for any */
5 | /* purpose with or without fee is hereby granted, provided that the above */
6 | /* copyright notice and this permission notice appear in all copies. */
7 |
8 | .history { }
9 |
--------------------------------------------------------------------------------
/contrib/exfoliation/stylesheets/outages.css:
--------------------------------------------------------------------------------
1 | /* exfoliation: a nagios makeover */
2 | /* Copyright 2010 Matthew Wall, all rights reserved */
3 | /* */
4 | /* Permission to use, copy, modify, and distribute this software for any */
5 | /* purpose with or without fee is hereby granted, provided that the above */
6 | /* copyright notice and this permission notice appear in all copies. */
7 |
8 | .outages { }
9 |
10 | .itemTotalsTitle { font-size: 8pt; text-align: center; }
11 |
12 | .hostUP { background-color: #88d066; font-weight: bold; }
13 | .hostDOWN { background-color: #f88888; font-weight: bold; }
14 | .hostUNREACHABLE { background-color: #ffbb55; font-weight: bold; }
15 |
16 |
--------------------------------------------------------------------------------
/contrib/exfoliation/stylesheets/showlog.css:
--------------------------------------------------------------------------------
1 | /* exfoliation: a nagios makeover */
2 | /* Copyright 2010 Matthew Wall, all rights reserved */
3 | /* */
4 | /* Permission to use, copy, modify, and distribute this software for any */
5 | /* purpose with or without fee is hereby granted, provided that the above */
6 | /* copyright notice and this permission notice appear in all copies. */
7 |
8 | .showlog { }
9 |
--------------------------------------------------------------------------------
/contrib/exfoliation/stylesheets/statusmap.css:
--------------------------------------------------------------------------------
1 | /* exfoliation: a nagios makeover */
2 | /* Copyright 2010 Matthew Wall, all rights reserved */
3 | /* */
4 | /* Permission to use, copy, modify, and distribute this software for any */
5 | /* purpose with or without fee is hereby granted, provided that the above */
6 | /* copyright notice and this permission notice appear in all copies. */
7 |
8 | .statusmap { }
9 |
10 | .imageInfo { font-size: 8pt; font-weight: bold; text-align: center; }
11 |
12 | .zoomTitle { font-size: 8pt; font-weight: bold; }
13 |
14 | .popupText { font-size: 8pt; background-color: #eeeeaa; border: 1px solid #777777; padding: 0 5 0 5; }
15 |
--------------------------------------------------------------------------------
/contrib/exfoliation/stylesheets/trends.css:
--------------------------------------------------------------------------------
1 | /* exfoliation: a nagios makeover */
2 | /* Copyright 2010 Matthew Wall, all rights reserved */
3 | /* */
4 | /* Permission to use, copy, modify, and distribute this software for any */
5 | /* purpose with or without fee is hereby granted, provided that the above */
6 | /* copyright notice and this permission notice appear in all copies. */
7 |
8 | .trends { }
9 |
--------------------------------------------------------------------------------
/docs/mainpage.dox:
--------------------------------------------------------------------------------
1 | /** @mainpage
2 |
3 | Technical and api documentation for Nagios.
4 | */
5 |
--------------------------------------------------------------------------------
/doxy.conf:
--------------------------------------------------------------------------------
1 | PROJECT_NAME = Nagios
2 | PROJECT_NUMBER = 4.0.0
3 | PROJECT_BRIEF = "Dev docs for Nagios core and neb-module hackers"
4 |
5 | INPUT = lib/ docs/
6 | FILE_PATTERNS = *.h *.dox
7 | EXCLUDE_PATTERNS = worker.h
8 | OUTPUT_DIRECTORY = Documentation
9 | GENERATE_TAGFILE = Documentation/classes.tag
10 | QUIET = YES
11 | RECURSIVE = YES
12 | GENERATE_LATEX = NO
13 | GENERATE_HTML = YES
14 |
15 | TAB_SIZE = 4
16 | JAVADOC_AUTOBRIEF = YES
17 | MACRO_EXPANSION = YES
18 | EXPAND_ONLY_PREDEF = YES
19 | OPTIMIZE_OUTPUT_FOR_C = YES
20 | STRIP_CODE_COMMENTS = NO
21 | FULL_PATH_NAMES = NO
22 | CASE_SENSE_NAMES = YES
23 | ENABLE_PREPROCESSING = YES
24 | PREDEFINED = NODOXY "NAGIOS_DEPRECATED(a, b)="
25 | SEARCH_INCLUDES = YES
26 | INCLUDE_GRAPH = YES
27 | CLASS_GRAPH = YES
28 | CLASS_DIAGRAMS = YES
29 | COLLABORATION_GRAPH = YES
30 | INCLUDED_BY_GRAPH = YES
31 | CALL_GRAPH = YES
32 | GRAPHICAL_HIERARCHY = YES
33 |
--------------------------------------------------------------------------------
/html/.gitignore:
--------------------------------------------------------------------------------
1 | Makefile
2 | index.html
3 | side.html
4 | config.inc.php
5 |
--------------------------------------------------------------------------------
/html/config.inc.php.in:
--------------------------------------------------------------------------------
1 |
21 |
--------------------------------------------------------------------------------
/html/contexthelp/A1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/A2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/A3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/A4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/A5.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/A6.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/A7.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/B1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/C1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/D1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/E1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/F1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/G1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/G2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/G3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/G4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/G5.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/G6.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/H1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/H2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/H3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/H4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/H5.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/H6.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/H7.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/H8.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/I1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/I2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/I3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/I4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/I5.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/I6.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/I7.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/I8.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/I9.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/J1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/K1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/L1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/L10.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/L11.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/contexthelp/L12.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Context-Sensitive Help Unavailable
6 |
7 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Context-Sensitive Help Unavailable
22 |
23 |
24 |
25 | Context-sensitive help is not yet available.
26 |
27 |
28 |
29 | For more information, please visit the main Nagios website at http://www.nagios.org.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/images/Nagios-clearbg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/Nagios-clearbg.png
--------------------------------------------------------------------------------
/html/images/NagiosEnterprises-whitebg-112x46.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/NagiosEnterprises-whitebg-112x46.png
--------------------------------------------------------------------------------
/html/images/ack.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/ack.gif
--------------------------------------------------------------------------------
/html/images/action.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/action.gif
--------------------------------------------------------------------------------
/html/images/b_first2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/b_first2.png
--------------------------------------------------------------------------------
/html/images/b_last2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/b_last2.png
--------------------------------------------------------------------------------
/html/images/b_next2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/b_next2.png
--------------------------------------------------------------------------------
/html/images/b_prev2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/b_prev2.png
--------------------------------------------------------------------------------
/html/images/command.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/command.png
--------------------------------------------------------------------------------
/html/images/comment.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/comment.gif
--------------------------------------------------------------------------------
/html/images/contexthelp1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/contexthelp1.gif
--------------------------------------------------------------------------------
/html/images/contexthelp2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/contexthelp2.gif
--------------------------------------------------------------------------------
/html/images/critical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/critical.png
--------------------------------------------------------------------------------
/html/images/delay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/delay.gif
--------------------------------------------------------------------------------
/html/images/delete.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/delete.gif
--------------------------------------------------------------------------------
/html/images/detail.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/detail.gif
--------------------------------------------------------------------------------
/html/images/disabled.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/disabled.gif
--------------------------------------------------------------------------------
/html/images/down.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/down.gif
--------------------------------------------------------------------------------
/html/images/downtime.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/downtime.gif
--------------------------------------------------------------------------------
/html/images/empty.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/empty.gif
--------------------------------------------------------------------------------
/html/images/enabled.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/enabled.gif
--------------------------------------------------------------------------------
/html/images/extinfo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/extinfo.gif
--------------------------------------------------------------------------------
/html/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/favicon.ico
--------------------------------------------------------------------------------
/html/images/flapping.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/flapping.gif
--------------------------------------------------------------------------------
/html/images/globe-support-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/globe-support-150x150.png
--------------------------------------------------------------------------------
/html/images/greendot.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/greendot.gif
--------------------------------------------------------------------------------
/html/images/histogram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/histogram.png
--------------------------------------------------------------------------------
/html/images/history.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/history.gif
--------------------------------------------------------------------------------
/html/images/hostevent.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/hostevent.gif
--------------------------------------------------------------------------------
/html/images/info.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/info.png
--------------------------------------------------------------------------------
/html/images/left.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/left.gif
--------------------------------------------------------------------------------
/html/images/logofullsize.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/logofullsize.png
--------------------------------------------------------------------------------
/html/images/logos/nagios.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/logos/nagios.gd2
--------------------------------------------------------------------------------
/html/images/logos/nagios.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/logos/nagios.gif
--------------------------------------------------------------------------------
/html/images/logos/nagiosvrml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/logos/nagiosvrml.png
--------------------------------------------------------------------------------
/html/images/logos/unknown.gd2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/logos/unknown.gd2
--------------------------------------------------------------------------------
/html/images/logos/unknown.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/logos/unknown.gif
--------------------------------------------------------------------------------
/html/images/logrotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/logrotate.png
--------------------------------------------------------------------------------
/html/images/ndisabled.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/ndisabled.gif
--------------------------------------------------------------------------------
/html/images/noack.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/noack.gif
--------------------------------------------------------------------------------
/html/images/notes.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/notes.gif
--------------------------------------------------------------------------------
/html/images/notify.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/notify.gif
--------------------------------------------------------------------------------
/html/images/orangedot.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/orangedot.gif
--------------------------------------------------------------------------------
/html/images/passiveonly.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/passiveonly.gif
--------------------------------------------------------------------------------
/html/images/recovery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/recovery.png
--------------------------------------------------------------------------------
/html/images/redudancy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/redudancy.png
--------------------------------------------------------------------------------
/html/images/redundancy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/redundancy.png
--------------------------------------------------------------------------------
/html/images/restart.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/restart.gif
--------------------------------------------------------------------------------
/html/images/right.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/right.gif
--------------------------------------------------------------------------------
/html/images/sblogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/sblogo.png
--------------------------------------------------------------------------------
/html/images/serviceevent.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/serviceevent.gif
--------------------------------------------------------------------------------
/html/images/sflogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/sflogo.png
--------------------------------------------------------------------------------
/html/images/splunk1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/splunk1.gif
--------------------------------------------------------------------------------
/html/images/splunk2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/splunk2.gif
--------------------------------------------------------------------------------
/html/images/start.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/start.gif
--------------------------------------------------------------------------------
/html/images/status.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/status.gif
--------------------------------------------------------------------------------
/html/images/status2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/status2.gif
--------------------------------------------------------------------------------
/html/images/status3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/status3.gif
--------------------------------------------------------------------------------
/html/images/status4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/status4.gif
--------------------------------------------------------------------------------
/html/images/stop.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/stop.gif
--------------------------------------------------------------------------------
/html/images/tacdisabled.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/tacdisabled.jpg
--------------------------------------------------------------------------------
/html/images/tacdisabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/tacdisabled.png
--------------------------------------------------------------------------------
/html/images/tacenabled.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/tacenabled.jpg
--------------------------------------------------------------------------------
/html/images/tacenabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/tacenabled.png
--------------------------------------------------------------------------------
/html/images/thermcrit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/thermcrit.png
--------------------------------------------------------------------------------
/html/images/thermok.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/thermok.png
--------------------------------------------------------------------------------
/html/images/thermwarn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/thermwarn.png
--------------------------------------------------------------------------------
/html/images/trends.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/trends.gif
--------------------------------------------------------------------------------
/html/images/trendshost.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/trendshost.png
--------------------------------------------------------------------------------
/html/images/trendssvc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/trendssvc.png
--------------------------------------------------------------------------------
/html/images/unknown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/unknown.png
--------------------------------------------------------------------------------
/html/images/up.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/up.gif
--------------------------------------------------------------------------------
/html/images/warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/warning.png
--------------------------------------------------------------------------------
/html/images/weblogo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/weblogo1.png
--------------------------------------------------------------------------------
/html/images/zoom1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/zoom1.gif
--------------------------------------------------------------------------------
/html/images/zoom2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ageric/nagios/fc452505aca3aa27809f5c5212b67f31b001df61/html/images/zoom2.gif
--------------------------------------------------------------------------------
/html/includes/rss/AUTHORS:
--------------------------------------------------------------------------------
1 | kellan
2 |
--------------------------------------------------------------------------------
/html/includes/rss/scripts/magpie_simple.php:
--------------------------------------------------------------------------------
1 | channel['title'] . "";
11 | echo "
";
12 | foreach ($rss->items as $item) {
13 | $href = $item['link'];
14 | $title = $item['title'];
15 | echo "- $title
";
16 | }
17 | echo "
";
18 | }
19 | ?>
20 |
21 |
25 |
26 |
27 |
Security Note:
28 | This is a simple example script. If this was a real script we probably wouldn't allow strangers to submit random URLs, and we certainly wouldn't simply echo anything passed in the URL. Additionally its a bad idea to leave this example script lying around.
29 |