Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@ RUN echo postfix postfix/main_mailer_type string "'Internet Site'" | debconf-set
libfreeradius-dev \
libgdchart-gd2-xpm-dev \
libgd-gd2-perl \
libjson-perl \
libfile-slurp-perl \
libldap2-dev \
libjson-perl \
libjson-xs-perl \
libmonitoring-plugin-perl \
libmariadb-dev \
libnagios-object-perl \
Expand Down Expand Up @@ -215,6 +217,19 @@ RUN cd /opt
cp /opt/DF-Nagios-Plugins/check_jenkins/check_jenkins ${NAGIOS_HOME}/libexec/ && \
cp /opt/DF-Nagios-Plugins/check_vpn/check_vpn ${NAGIOS_HOME}/libexec/

# Add check_nwc_health
RUN cd /tmp && \
git clone https://github.com/lausser/check_nwc_health.git && \
cd check_nwc_health && \
git submodule update --init && \
autoreconf && \
./configure && \
make && \
cp plugins-scripts/check_nwc_health ${NAGIOS_HOME}/libexec/ && \
cd /tmp/ &&\
rm -rf check_nwc_health


RUN cd /tmp && \
wget https://github.com/chriscareycode/nagiostv-react/releases/download/v${NAGIOSTV_VERSION}/nagiostv-${NAGIOSTV_VERSION}.tar.gz && \
tar xf nagiostv-${NAGIOSTV_VERSION}.tar.gz -C /opt/nagios/share/ && \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,4 @@ The default credentials for the web interface is `nagiosadmin` / `nagios`
* JE-Nagios-Plugins - custom plugins from Justin Ellison [<https://github.com/justintime/nagios-plugins>]
* DF-Nagios-Plugins - custom pluging for MSSQL monitoring from Dan Fruehauf [<https://github.com/danfruehauf/nagios-plugins>]
* check-mqtt - custom plugin for mqtt monitoring from Jan-Piet Mens [<https://github.com/jpmens/check-mqtt.git>]
* check_nwc_health - Swiss-army-knife plugin for checking many status and health aspects of network components [<https://github.com/lausser/check_nwc_health>]