mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
agent files
git-svn-id: http://www.observium.org/svn/observer/trunk@2925 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
51
scripts/observium_agent_xinetd
Normal file
51
scripts/observium_agent_xinetd
Normal file
@@ -0,0 +1,51 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# +------------------------------------------------------------------+
|
||||
# | _ _ |
|
||||
# | ___ | |__ ___ ___ _ ____ _(_)_ _ _ __ ___ |
|
||||
# | / _ \| '_ \/ __|/ _ \ '__\ \ / / | | | | '_ ` _ \ |
|
||||
# | | (_) | |_) \__ \ __/ | \ V /| | |_| | | | | | | |
|
||||
# | \___/|_.__/|___/\___|_| \_/ |_|\__,_|_| |_| |_| |
|
||||
# | |
|
||||
# | Copyright Adam Armstrong 2012 adama@observium.org |
|
||||
# +------------------------------------------------------------------+
|
||||
#
|
||||
# +------------------------------------------------------------------+
|
||||
# | Copyright Mathias Kettner 2012 mk@mathias-kettner.de |
|
||||
# +------------------------------------------------------------------+
|
||||
#
|
||||
# This file was originally part of Check_MK.
|
||||
# The official homepage is at http://mathias-kettner.de/check_mk.
|
||||
#
|
||||
# check_mk is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation in version 2. check_mk is distributed
|
||||
# in the hope that it will be useful, but WITHOUT ANY WARRANTY; with-
|
||||
# out even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE. See the GNU General Public License for more de-
|
||||
# ails. You should have received a copy of the GNU General Public
|
||||
# License along with GNU Make; see the file COPYING. If not, write
|
||||
# to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
# Boston, MA 02110-1301 USA.
|
||||
|
||||
service check_mk
|
||||
{
|
||||
type = UNLISTED
|
||||
port = 6556
|
||||
socket_type = stream
|
||||
protocol = tcp
|
||||
wait = no
|
||||
user = root
|
||||
server = /usr/bin/observium_agent
|
||||
|
||||
# configure the IP address(es) of your Nagios server here:
|
||||
only_from = 127.0.0.1
|
||||
|
||||
# Don't be too verbose. Don't log every check. This might be
|
||||
# commented out for debugging. If this option is commented out
|
||||
# the default options will be used for this service.
|
||||
log_on_success =
|
||||
|
||||
disable = no
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user