diff options
author | Juraj Lutter <otis@FreeBSD.org> | 2024-06-04 20:17:50 +0000 |
---|---|---|
committer | Juraj Lutter <otis@FreeBSD.org> | 2024-06-05 07:48:15 +0000 |
commit | 44d127984432597845a1a4213db6d40fcebb0f81 (patch) | |
tree | 03dec6978f2370f5e6ff8ca88e463c7822f89ec9 | |
parent | 4d5ce46ee3a32593e7bb6ffbf7e60f22aa51a74b (diff) |
net-mgmt/zabbix7: Add zabbix 7.0 ports
Add new ports for zabbix 7.0, an enterprise-class monitoring system.
Release notes: https://www.zabbix.com/rn/rn7.0.0
-rw-r--r-- | net-mgmt/Makefile | 5 | ||||
-rw-r--r-- | net-mgmt/zabbix7-agent/Makefile | 12 | ||||
-rw-r--r-- | net-mgmt/zabbix7-frontend/Makefile | 30 | ||||
-rw-r--r-- | net-mgmt/zabbix7-java/Makefile | 13 | ||||
-rw-r--r-- | net-mgmt/zabbix7-proxy/Makefile | 8 | ||||
-rw-r--r-- | net-mgmt/zabbix7-server/Makefile | 255 | ||||
-rw-r--r-- | net-mgmt/zabbix7-server/distinfo | 3 | ||||
-rw-r--r-- | net-mgmt/zabbix7-server/files/patch-src_libs_zbxembed_duktape.h | 11 | ||||
-rw-r--r-- | net-mgmt/zabbix7-server/files/pkg-message.in | 47 | ||||
-rw-r--r-- | net-mgmt/zabbix7-server/files/zabbix_agentd.in | 67 | ||||
-rw-r--r-- | net-mgmt/zabbix7-server/files/zabbix_java.in | 47 | ||||
-rw-r--r-- | net-mgmt/zabbix7-server/files/zabbix_proxy.in | 71 | ||||
-rw-r--r-- | net-mgmt/zabbix7-server/files/zabbix_server.in | 72 | ||||
-rw-r--r-- | net-mgmt/zabbix7-server/pkg-descr | 8 | ||||
-rw-r--r-- | net-mgmt/zabbix7-server/pkg-plist | 41 | ||||
-rw-r--r-- | net-mgmt/zabbix7-server/pkg-plist.agent | 9 | ||||
-rw-r--r-- | net-mgmt/zabbix7-server/pkg-plist.frontend | 1970 | ||||
-rw-r--r-- | net-mgmt/zabbix7-server/pkg-plist.java | 11 |
18 files changed, 2680 insertions, 0 deletions
diff --git a/net-mgmt/Makefile b/net-mgmt/Makefile index 7b8cb5763bb5..c3dc7747465f 100644 --- a/net-mgmt/Makefile +++ b/net-mgmt/Makefile @@ -420,5 +420,10 @@ SUBDIR += zabbix64-java SUBDIR += zabbix64-proxy SUBDIR += zabbix64-server + SUBDIR += zabbix7-agent + SUBDIR += zabbix7-frontend + SUBDIR += zabbix7-java + SUBDIR += zabbix7-proxy + SUBDIR += zabbix7-server .include <bsd.port.subdir.mk> diff --git a/net-mgmt/zabbix7-agent/Makefile b/net-mgmt/zabbix7-agent/Makefile new file mode 100644 index 000000000000..cf75c0f42420 --- /dev/null +++ b/net-mgmt/zabbix7-agent/Makefile @@ -0,0 +1,12 @@ +PORTNAME= zabbix7 +PORTREVISION= 0 +CATEGORIES= net-mgmt +PKGNAMESUFFIX= -agent + +MASTERDIR= ${.CURDIR}/../${PORTNAME}-server +PLIST= ${PKGDIR}/pkg-plist.agent + +OPTIONS_DEFINE= CURL IPV6 MODBUS +OPTIONS_DEFAULT= CURL OPENSSL + +.include "${MASTERDIR}/Makefile" diff --git a/net-mgmt/zabbix7-frontend/Makefile b/net-mgmt/zabbix7-frontend/Makefile new file mode 100644 index 000000000000..d85f6482f7e0 --- /dev/null +++ b/net-mgmt/zabbix7-frontend/Makefile @@ -0,0 +1,30 @@ +PORTNAME= zabbix7 +PORTREVISION= 0 +CATEGORIES= net-mgmt +PKGNAMESUFFIX= -frontend${PHP_PKGNAMESUFFIX} + +USES+= php:web,flavors +USE_PHP= bcmath ctype filter gd gettext ldap mbstring session \ + simplexml sockets xml xmlreader xmlwriter + +MASTERDIR= ${.CURDIR}/../${PORTNAME}-server +PATCHDIR= +NO_ARCH= yes +NO_BUILD= yes + +PLIST= ${PKGDIR}/pkg-plist.frontend + +OPTIONS_DEFINE= MYSQLI ORACLE PGSQL +OPTIONS_DEFAULT= MYSQLI +MYSQLI_DESC= MySQLI backend + +MYSQLI_USE= PHP=mysqli +ORACLE_CONFIGURE_WITH= oracle +PGSQL_USE= PHP=pgsql + +do-install: + @${MKDIR} ${STAGEDIR}${WWWDIR} + (cd ${WRKSRC}/ui && \ + ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}) + +.include "${MASTERDIR}/Makefile" diff --git a/net-mgmt/zabbix7-java/Makefile b/net-mgmt/zabbix7-java/Makefile new file mode 100644 index 000000000000..9082dcaf7948 --- /dev/null +++ b/net-mgmt/zabbix7-java/Makefile @@ -0,0 +1,13 @@ +PORTNAME= zabbix7 +PORTREVISION= 0 +CATEGORIES= net-mgmt +PKGNAMESUFFIX= -java + +MASTERDIR= ${.CURDIR}/../${PORTNAME}-server +PLIST= ${PKGDIR}/pkg-plist.java + +OPTIONS_DEFINE= IPV6 + +USE_JAVA= yes + +.include "${MASTERDIR}/Makefile" diff --git a/net-mgmt/zabbix7-proxy/Makefile b/net-mgmt/zabbix7-proxy/Makefile new file mode 100644 index 000000000000..19e3722102c1 --- /dev/null +++ b/net-mgmt/zabbix7-proxy/Makefile @@ -0,0 +1,8 @@ +PORTNAME= zabbix7 +PORTREVISION= 0 +CATEGORIES= net-mgmt +PKGNAMESUFFIX= -proxy + +MASTERDIR= ${.CURDIR}/../${PORTNAME}-server + +.include "${MASTERDIR}/Makefile" diff --git a/net-mgmt/zabbix7-server/Makefile b/net-mgmt/zabbix7-server/Makefile new file mode 100644 index 000000000000..5354099e1962 --- /dev/null +++ b/net-mgmt/zabbix7-server/Makefile @@ -0,0 +1,255 @@ +PORTNAME= zabbix7 +DISTVERSION= 7.0.0 +PORTREVISION?= 0 +CATEGORIES= net-mgmt +MASTER_SITES= https://cdn.zabbix.com/zabbix/sources/stable/${DISTVERSION:R}/ +PKGNAMESUFFIX?= -server +DISTNAME= zabbix-${DISTVERSION} + +MAINTAINER= otis@FreeBSD.org +COMMENT= Enterprise-class open source distributed monitoring (${PKGNAMESUFFIX:S/^-//}) +WWW= https://www.zabbix.com/ + +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING + +CONFLICTS_INSTALL= ${PORTNAME}[0-9]${PKGNAMESUFFIX} \ + zabbix[0-6][0-9]${PKGNAMESUFFIX} + +ZABBIX_BUILD= ${PKGNAMESUFFIX:S/^-//:S/-$//} + +.if ${ZABBIX_BUILD} != "frontend" # frontend only needs the version/distribution settings +.if ${ZABBIX_BUILD} != "agent" +CONFIGURE_ARGS+= --cache-file=${WRKSRC}/config.cache \ + --with-libevent=${LOCALBASE} \ + --with-libxml2 +LIB_DEPENDS+= libevent.so:devel/libevent +USE_RC_SUBR= zabbix_${ZABBIX_BUILD} +.else +USE_RC_SUBR= zabbix_${ZABBIX_BUILD}d +.endif + +USES= gnome iconv pkgconfig +USE_GNOME= libxml2 + +USERS= zabbix +GROUPS= zabbix + +.if ${ZABBIX_BUILD} == "proxy" +PLIST_SUB= PROXY="" +.else +PLIST_SUB= PROXY="@comment " +.endif +.if ${ZABBIX_BUILD} == "server" +PLIST_SUB+= SERVER="" +.else +PLIST_SUB+= SERVER="@comment " +.endif + +PLIST_SUB+= DISTVERSION=${DISTVERSION} \ + ZABBIX_BUILD=${ZABBIX_BUILD} +SUB_LIST= ZABBIX_BUILD=${ZABBIX_BUILD} + +MAKE_ARGS+= ARCH=freebsd +GNU_CONFIGURE= yes +GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share +CONFIGURE_ARGS+= --datadir=${ETCDIR} \ + --enable-${ZABBIX_BUILD} \ + --sysconfdir=${ETCDIR} \ + --with-iconv=${ICONV_PREFIX} + +PORTSCOUT= limit:^7\.0\. + +.if ${ZABBIX_BUILD} != "java" +OPTIONS_DEFAULT+= PCRE2 +OPTIONS_SINGLE+= PCRE +OPTIONS_SINGLE_PCRE= PCRE1 PCRE2 +PCRE_DESC= PCRE library to use +PCRE1_DESC= Use PCRE v1 library +PCRE2_DESC= Use PCRE v2 library + +PCRE1_LIB_DEPENDS= libpcre.so:devel/pcre +PCRE1_CONFIGURE_WITH= libpcre +PCRE2_LIB_DEPENDS= libpcre2-8.so:devel/pcre2 +PCRE2_CONFIGURE_WITH= libpcre2 + +.if ${ZABBIX_BUILD} != "agent" +CPPFLAGS+= -I${LOCALBASE}/include + +SUB_FILES= pkg-message + +OPTIONS_DEFAULT+= CURL FPING IPMI IPV6 LIBXML2 MYSQL OPENSSL SNMP SSH UNIXODBC +OPTIONS_DEFINE= CURL FPING IPMI IPV6 LDAP LIBXML2 NMAP SNMP SSH UNIXODBC +OPTIONS_SINGLE+= DB SSL +OPTIONS_SINGLE_DB= MDB5 MDB6 MYSQL MYSQLDV ORACLE PGSQL +.if ${ZABBIX_BUILD} == "proxy" +OPTIONS_SINGLE_DB+= SQLITE +.endif +OPTIONS_SINGLE_SSL= GNUTLS OPENSSL +OPTIONS_SUB= yes + +FPING_DESC= Build/install fping for ping checks +IPMI_DESC= Support for IPMI checks +LDAP_DESC= Support for LDAP server checks +NMAP_DESC= Build/install nmap for o/s detection +SNMP_DESC= Support for SNMP checks +SSH_DESC= Support for SSH-based checks +UNIXODBC_DESC= Support for database checks via ODBC +LIBXML2_DESC= Support for libxml2 (required by monitoring VMware) +MYSQL_DESC= MySQL 8.0 database support +MYSQLDV_DESC= MYSQL DEFAULT_VERSIONS= (poudriere) + +FPING_RUN_DEPENDS= fping:net/fping + +IPMI_CONFIGURE_WITH= openipmi +IPMI_LIB_DEPENDS= libOpenIPMI.so:sysutils/openipmi + +LDAP_CONFIGURE_WITH= ldap +LDAP_USES= ldap + +MYSQL_CONFIGURE_ON= --with-mysql +MYSQL_USES+= compiler:c11 mysql:80 + +MYSQLDV_CONFIGURE_ON= --with-mysql +MYSQLDV_USES+= compiler:c11 mysql + +MDB5_CONFIGURE_ON= --with-mysql=${LOCALBASE}/bin/mysql_config +MDB5_USES+= compiler:c11 mysql:105m +MDB5_DESC= Mariadb 10.5 database support + +MDB6_CONFIGURE_ON= --with-mysql=${LOCALBASE}/bin/mysql_config +MDB6_USES+= compiler:c11 mysql:106m +MDB6_DESC= Mariadb 10.6 database support + +ORACLE_CONFIGURE_WITH= oracle + +PGSQL_CONFIGURE_WITH= postgresql +PGSQL_USES+= pgsql + +SNMP_LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp +SNMP_CONFIGURE_WITH= net-snmp + +SQLITE_CONFIGURE_WITH= sqlite3 +SQLITE_USES+= sqlite:3 + +SSH_CONFIGURE_WITH= ssh2 +SSH_LIB_DEPENDS= libssh2.so:security/libssh2 + +UNIXODBC_CONFIGURE_WITH= unixodbc +UNIXODBC_LIB_DEPENDS= libodbc.so:databases/unixODBC +.elif ${ZABBIX_BUILD} == "agent" +OPTOINS_DEFINE+= PCRE +OPTIONS_SINGLE+= SSL +OPTIONS_SINGLE_SSL= GNUTLS OPENSSL +.endif # if ${ZABBIX_BUILD} != "agent" + +CURL_DESC= Support for web monitoring +CURL_CONFIGURE_WITH= libcurl +CURL_LIB_DEPENDS= libcurl.so:ftp/curl + +IPV6_CONFIGURE_ENABLE= ipv6 + +MODBUS_DESC= Support for Modbus checks +MODBUS_CONFIGURE_WITH= libmodbus +MODBUS_LIB_DEPENDS= libmodbus.so:comms/libmodbus + +NMAP_RUN_DEPENDS= nmap:security/nmap \ + sudo:security/sudo + +OPENSSL_CONFIGURE_WITH= openssl +OPENSSL_USES= ssl +OPENSSL_VARS= BROKEN_SSL="libressl libressl-devel" \ + BROKEN_SSL_REASON="PSK is not provided by LibreSSL" + +GNUTLS_CONFIGURE_WITH= gnutls +GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls + +.endif # if ${ZABBIX_BUILD} != "java" + +.include <bsd.port.pre.mk> + +post-patch: + @${GREP} -rl "/etc/zabbix" ${WRKSRC} \ + | ${XARGS} ${REINPLACE_CMD} -e 's#/usr/local/etc#${ETCDIR}#g' + + @${REINPLACE_CMD} -e 's#/usr/sbin/fping#${LOCALBASE}/sbin/fping#g' \ + ${WRKSRC}/conf/zabbix_*.conf \ + ${WRKSRC}/src/zabbix_proxy/proxy.c \ + ${WRKSRC}/src/zabbix_server/server.c + +.if ${ZABBIX_BUILD} == "server" + @${REINPLACE_CMD} -e 's#/tmp/zabbix_server.pid#/var/run/zabbix/zabbix_server.pid#g' \ + ${WRKSRC}/conf/zabbix_server.conf \ + ${WRKSRC}/src/zabbix_server/server.c + @${REINPLACE_CMD} -e 's#/tmp/zabbix_server.log#/var/log/zabbix/zabbix_server.log#g' \ + ${WRKSRC}/conf/zabbix_server.conf +.endif + +.if ${ZABBIX_BUILD} == "proxy" + @${REINPLACE_CMD} -e 's#/tmp/zabbix_proxy.pid#/var/run/zabbix/zabbix_proxy.pid#g' \ + ${WRKSRC}/conf/zabbix_proxy.conf \ + ${WRKSRC}/src/zabbix_proxy/proxy.c + @${REINPLACE_CMD} -e 's#/tmp/zabbix_proxy.log#/var/log/zabbix/zabbix_proxy.log#g' \ + ${WRKSRC}/conf/zabbix_proxy.conf +.endif + +.if ${ZABBIX_BUILD} == "agent" + @${REINPLACE_CMD} -e 's#/tmp/zabbix_agentd.pid#/var/run/zabbix/zabbix_agentd.pid#g' \ + ${WRKSRC}/conf/zabbix_agentd.conf \ + ${WRKSRC}/src/zabbix_agent/zabbix_agentd.c + @${REINPLACE_CMD} -e 's#/tmp/zabbix_agentd.log#/var/log/zabbix/zabbix_agentd.log#g' \ + ${WRKSRC}/conf/zabbix_agentd.conf +.endif + +.if ${ZABBIX_BUILD} == "java" + @${REINPLACE_CMD} -e 's#/tmp/zabbix_java.pid#/var/run/zabbix/zabbix_java.pid#g' \ + ${WRKSRC}/src/zabbix_java/settings.sh +.endif + +.if ${ZABBIX_BUILD} != "agent" +. for d in mysql oracle postgresql sqlite3 + @${REINPLACE_CMD} \ + -e 's|/usr/bin/traceroute|/usr/sbin/traceroute|g' \ + -e 's|sudo /usr/bin/nmap|sudo ${LOCALBASE}/bin/nmap|g' \ + ${WRKSRC}/database/${d}/data.sql +. endfor +.endif + @${FIND} ${WRKSRC} -type f \( -name '*.bak' -or -name '*.orig' \) \ + -exec ${RM} {} + + +pre-configure: + @echo "ac_cv_env_PKG_CONFIG_set=${LOCALBASE}/bin/pkgconf" > ${WRKSRC}/config.cache + +post-install: +.if ${ZABBIX_BUILD} == "java" + ${MV} ${STAGEDIR}${PREFIX}/sbin/zabbix_java/settings.sh \ + ${STAGEDIR}${PREFIX}/sbin/zabbix_java/settings.sh.sample + @${MKDIR} ${STAGEDIR}/var/run/zabbix +.endif + +.if ${ZABBIX_BUILD} != "agent" && ${ZABBIX_BUILD} != "java" + ${MKDIR} ${STAGEDIR}${DATADIR}/${ZABBIX_BUILD:Q}/database + ${FIND} ${WRKSRC}/database -name 'Makefile*' -delete + (cd ${WRKSRC}/database/ && \ + ${COPYTREE_SHARE} "mysql oracle postgresql sqlite3" \ + ${STAGEDIR}${DATADIR}/${ZABBIX_BUILD:Q}/database/) + + ${MV} ${STAGEDIR}${ETCDIR}/zabbix_${ZABBIX_BUILD}.conf \ + ${STAGEDIR}${ETCDIR}/zabbix_${ZABBIX_BUILD}.conf.sample +.endif + +.if ${ZABBIX_BUILD} == "agent" + ${MV} ${STAGEDIR}${ETCDIR}/zabbix_${ZABBIX_BUILD}d.conf \ + ${STAGEDIR}${ETCDIR}/zabbix_${ZABBIX_BUILD}d.conf.sample +.endif + +.if ${ZABBIX_BUILD} == "proxy" + ${MV} ${STAGEDIR}${LOCALBASE}/bin/zabbix_js \ + ${STAGEDIR}${LOCALBASE}/bin/zabbix_proxy_js +.endif + +.else # frontend +.include <bsd.port.pre.mk> +.endif + +.include <bsd.port.post.mk> diff --git a/net-mgmt/zabbix7-server/distinfo b/net-mgmt/zabbix7-server/distinfo new file mode 100644 index 000000000000..dc71f36d9167 --- /dev/null +++ b/net-mgmt/zabbix7-server/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1717514330 +SHA256 (zabbix-7.0.0.tar.gz) = 520641483223f680ef6e685284b556ba34a496d886a38dc3bca085cde21031b1 +SIZE (zabbix-7.0.0.tar.gz) = 47919968 diff --git a/net-mgmt/zabbix7-server/files/patch-src_libs_zbxembed_duktape.h b/net-mgmt/zabbix7-server/files/patch-src_libs_zbxembed_duktape.h new file mode 100644 index 000000000000..ff6595a49bb5 --- /dev/null +++ b/net-mgmt/zabbix7-server/files/patch-src_libs_zbxembed_duktape.h @@ -0,0 +1,11 @@ +--- src/libs/zbxembed/duktape.h.orig 2022-02-14 01:54:29.000000000 -0800 ++++ src/libs/zbxembed/duktape.h 2022-02-15 13:48:15.058093000 -0800 +@@ -160,7 +160,7 @@ + #if !defined(DUKTAPE_H_INCLUDED) + #define DUKTAPE_H_INCLUDED + +-#define DUK_SINGLE_FILE ++#undef DUK_SINGLE_FILE + + /* + * BEGIN PUBLIC API diff --git a/net-mgmt/zabbix7-server/files/pkg-message.in b/net-mgmt/zabbix7-server/files/pkg-message.in new file mode 100644 index 000000000000..2aedb2ccbfcf --- /dev/null +++ b/net-mgmt/zabbix7-server/files/pkg-message.in @@ -0,0 +1,47 @@ +[ +{ type: install + message: <<EOM +Log files are now under /var/log/zabbix directory instead of /tmp as it was +previously. + +For Zabbix server and proxy daemons, as well as Zabbix frontend, a database is +required. It is not needed to run Zabbix agent. + +% cd %%DATADIR%%/%%ZABBIX_BUILD%%/database + +And follow the instructions: +https://www.zabbix.com/documentation/7.0/manual/appendix/install/db_scripts + +Upgrade notes for 7.0.0: +https://www.zabbix.com/documentation/7.0/en/manual/installation/upgrade_notes_700 + +Upgrade procedure: +https://www.zabbix.com/documentation/7.0/manual/installation/upgrade/sources + +Please see https://www.zabbix.com/ for detailed information about Zabbix. + +Official Zabbix documentation: +https://www.zabbix.com/documentation/7.0/en/manual + +For Zabbix frontend "Welcome" screen. Enter the user name Admin with password +zabbix to log in as a Zabbix superuser. + +For use NMAP please edit sudoers. + +This is a Zabbix LTS release! + +Zabbix LTS releases are supported for Zabbix customers during five (5) years +i.e. 3 years of Full Support (general, critical and security issues) and 2 +additional years of Limited Support (critical and security issues only). +Zabbix LTS version release will result in change of the first version number. + +Release name: Zabbix 7.0 LTS +Release date: 2024-06-04 +End of Full Support: 2027-06-30 +End of Limited Support: 2029-06-31 + +Zabbix Life Cycle & Release Policy: +https://www.zabbix.com/life_cycle_and_release_policy +EOM +} +] diff --git a/net-mgmt/zabbix7-server/files/zabbix_agentd.in b/net-mgmt/zabbix7-server/files/zabbix_agentd.in new file mode 100644 index 000000000000..5fa104126dbe --- /dev/null +++ b/net-mgmt/zabbix7-server/files/zabbix_agentd.in @@ -0,0 +1,67 @@ +#!/bin/sh + +# PROVIDE: zabbix_agentd +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to +# enable zabbix_agentd: +# +# zabbix_agentd_enable (bool): Set to NO by default. Set it to YES to +# enable zabbix_agentd. +# zabbix_agentd_config (string): Set to the standard config file path by +# default. +# zabbix_agentd_pidfile (string): Location of the zabbix_agent pid file +# Default is /var/run/zabbix/zabbix_agentd.pid +# zabbix_agentd_paths (string): Set to standard path by default. Set a search +# if you have custom userparams that need binaries elsewhere. +# + +. /etc/rc.subr + +name="zabbix_agentd" +rcvar=zabbix_agentd_enable + +load_rc_config $name + +: ${zabbix_agentd_enable:=NO} +: ${zabbix_agentd_config:=%%ETCDIR%%/${name}.conf} +: ${zabbix_agentd_pidfile:=/var/run/zabbix/zabbix_agentd.pid} +: ${zabbix_agentd_paths:=$PATH} + +command="%%PREFIX%%/sbin/${name}" +required_files="${zabbix_agentd_config}" + +start_cmd=zabbix_agentd_cmd +start_precmd=zabbix_agentd_precmd +status_precmd=zabbix_agentd_precmd +stop_precmd=zabbix_agentd_precmd + +zabbix_agentd_precmd() +{ + pidfile=${zabbix_agentd_pidfile} + if get_pidfile_from_conf PidFile ${zabbix_agentd_config}; then + pidfile="$_pidfile_from_conf" + fi + logfile=/var/log/zabbix/zabbix_agentd.log + if get_pidfile_from_conf LogFile ${zabbix_agentd_config}; then + logfile="$_pidfile_from_conf" + fi + local rundir=${pidfile%/*} + local logdir=${logfile%/*} + [ -d $rundir ] || install -d -m 0755 -o zabbix -g zabbix $rundir + [ -d $logdir ] || install -d -m 0755 -o zabbix -g zabbix $logdir + + # This shouldn't be necessary with pidfile, but empirically it was the + # only way to reap the parent PID instead of all PIDs from + # check_process, which may leak SysV IPC objects and prevent restart + # and/or race condition on restart. + rc_pid=$(check_pidfile ${pidfile} ${command}) +} + +zabbix_agentd_cmd() +{ + PATH=$zabbix_agentd_paths $command -c $zabbix_agentd_config +} + +run_rc_command "$1" diff --git a/net-mgmt/zabbix7-server/files/zabbix_java.in b/net-mgmt/zabbix7-server/files/zabbix_java.in new file mode 100644 index 000000000000..ef0f1318c76c --- /dev/null +++ b/net-mgmt/zabbix7-server/files/zabbix_java.in @@ -0,0 +1,47 @@ +#!/bin/sh + +# PROVIDE: zabbix_java +# REQUIRE: NETWORKING SERVERS +# BEFORE: DAEMON +# KEYWORD: shutdown +# +# Options to configure zabbix_java via /etc/rc.conf: +# +# zabbix_java_enable (bool): +# Enable service on boot. +# Default: NO +# + +. /etc/rc.subr + +name="zabbix_java" +rcvar=zabbix_java_enable + +load_rc_config $name + +: ${zabbix_java_enable:=NO} + +start_cmd="/usr/bin/su -m zabbix -c %%PREFIX%%/sbin/zabbix_java/startup.sh" +stop_cmd="/usr/bin/su -m zabbix -c %%PREFIX%%/sbin/zabbix_java/shutdown.sh" +status_cmd="zabbix_java_status" + +extra_commands="status" + +zabbix_java_status() { + if get_pidfile_from_conf PID_FILE %%PREFIX%%/sbin/zabbix_java/settings.sh; then + PID_FILE="$_pidfile_from_conf" + fi + + if [ -n "$PID_FILE" -a -f "$PID_FILE" ]; then + PID=`cat "$PID_FILE"` + if ps -p "$PID" > /dev/null 2>&1; then + echo "${name} is running as pid ${PID}" + else + echo "${name} is not running" + fi + else + echo "${name} is not running" + fi +} + +run_rc_command "$1" diff --git a/net-mgmt/zabbix7-server/files/zabbix_proxy.in b/net-mgmt/zabbix7-server/files/zabbix_proxy.in new file mode 100644 index 000000000000..0ce9f01f549f --- /dev/null +++ b/net-mgmt/zabbix7-server/files/zabbix_proxy.in @@ -0,0 +1,71 @@ +#!/bin/sh + +# PROVIDE: zabbix_proxy +# REQUIRE: DAEMON +%%PGSQL%%# REQUIRE: postgresql +%%MYSQL%%# REQUIRE: mysql +%%MYSQLDV%%# REQUIRE: mysql +%%MDB5%%# REQUIRE: mysql +%%MDB6%%# REQUIRE: mysql +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to +# enable zabbix_proxy: +# +# zabbix_proxy_enable (bool): Set to NO by default. Set it to YES to +# enable zabbix_proxy. +# zabbix_proxy_config (string): Set to the standard config file path by +# default. +# zabbix_proxy_pidfile (string): Location of the zabbix_proxy pid file +# Default is /var/run/zabbix/zabbix_proxy.pid +# zabbix_proxy_paths (string): Set to standard path by default. Set a search +# if you have custom userparams that need binaries elsewhere. +# + +. /etc/rc.subr + +name="zabbix_proxy" +rcvar=zabbix_proxy_enable + +load_rc_config $name + +: ${zabbix_proxy_enable:=NO} +: ${zabbix_proxy_config:=%%ETCDIR%%/${name}.conf} +: ${zabbix_proxy_pidfile:=/var/run/zabbix/zabbix_proxy.pid} + +command="%%PREFIX%%/sbin/${name}" +required_files="${zabbix_proxy_config}" + +start_cmd=zabbix_proxy_cmd +start_precmd=zabbix_proxy_precmd +status_precmd=zabbix_proxy_precmd +stop_precmd=zabbix_proxy_precmd + +zabbix_proxy_precmd() +{ + pidfile=${zabbix_proxy_pidfile} + if get_pidfile_from_conf PidFile ${zabbix_proxy_config}; then + pidfile="$_pidfile_from_conf" + fi + logfile=/var/log/zabbix/zabbix_proxy.log + if get_pidfile_from_conf LogFile ${zabbix_proxy_config}; then + logfile="$_pidfile_from_conf" + fi + local rundir=${pidfile%/*} + local logdir=${logfile%/*} + [ -d $rundir ] || install -d -m 0755 -o zabbix -g zabbix $rundir + [ -d $logdir ] || install -d -m 0755 -o zabbix -g zabbix $logdir + + # This shouldn't be necessary with pidfile, but empirically it was the + # only way to reap the parent PID instead of all PIDs from + # check_process, which may leak SysV IPC objects and prevent restart + # and/or race condition on restart. + rc_pid=$(check_pidfile ${pidfile} ${command}) +} + +zabbix_proxy_cmd() +{ + PATH=$zabbix_proxy_paths $command -c $zabbix_proxy_config +} + +run_rc_command "$1" diff --git a/net-mgmt/zabbix7-server/files/zabbix_server.in b/net-mgmt/zabbix7-server/files/zabbix_server.in new file mode 100644 index 000000000000..8a1fa48a890c --- /dev/null +++ b/net-mgmt/zabbix7-server/files/zabbix_server.in @@ -0,0 +1,72 @@ +#!/bin/sh + +# PROVIDE: zabbix_server +# REQUIRE: DAEMON +%%PGSQL%%# REQUIRE: postgresql +%%MYSQL%%# REQUIRE: mysql +%%MYSQLDV%%# REQUIRE: mysql +%%MDB5%%# REQUIRE: mysql +%%MDB6%%# REQUIRE: mysql +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to +# enable zabbix_server: +# +# zabbix_server_enable (bool): Set to NO by default. Set it to YES to +# enable zabbix_server. +# zabbix_server_config (string): Set to the standard config file path by +# default. +# zabbix_server_pidfile (string): Location of the zabbix_server pid file +# Default is /var/run/zabbix/zabbix_server.pid +# zabbix_server_paths (string): Set to standard path by default. Set a search +# if you have custom userparams that need binaries elsewhere. +# + +. /etc/rc.subr + +name="zabbix_server" +rcvar=zabbix_server_enable + +load_rc_config $name + +: ${zabbix_server_enable:=NO} +: ${zabbix_server_config:=%%ETCDIR%%/${name}.conf} +: ${zabbix_server_pidfile:=/var/run/zabbix/zabbix_server.pid} +: ${zabbix_server_paths:=$PATH} + +command="%%PREFIX%%/sbin/${name}" +required_files="${zabbix_server_config}" + +start_cmd=zabbix_server_cmd +start_precmd=zabbix_server_precmd +status_precmd=zabbix_server_precmd +stop_precmd=zabbix_server_precmd + +zabbix_server_precmd() +{ + pidfile=${zabbix_server_pidfile} + if get_pidfile_from_conf PidFile ${zabbix_server_config}; then + pidfile="$_pidfile_from_conf" + fi + logfile=/var/log/zabbix/zabbix_server.log + if get_pidfile_from_conf LogFile ${zabbix_server_config}; then + logfile="$_pidfile_from_conf" + fi + local rundir=${pidfile%/*} + local logdir=${logfile%/*} + [ -d $rundir ] || install -d -m 0755 -o zabbix -g zabbix $rundir + [ -d $logdir ] || install -d -m 0755 -o zabbix -g zabbix $logdir + + # This shouldn't be necessary with pidfile, but empirically it was the + # only way to reap the parent PID instead of all PIDs from + # check_process, which may leak SysV IPC objects and prevent restart + # and/or race condition on restart. + rc_pid=$(check_pidfile ${pidfile} ${command}) +} + +zabbix_server_cmd() +{ + PATH=$zabbix_server_paths $command -c $zabbix_server_config +} + +run_rc_command "$1" diff --git a/net-mgmt/zabbix7-server/pkg-descr b/net-mgmt/zabbix7-server/pkg-descr new file mode 100644 index 000000000000..24dea091d7e0 --- /dev/null +++ b/net-mgmt/zabbix7-server/pkg-descr @@ -0,0 +1,8 @@ +Zabbix is an enterprise-class open source distributed monitoring solution. + +Zabbix is software that monitors numerous parameters of a network and the +health and integrity of servers. Zabbix uses a flexible notification +mechanism that allows users to configure e-mail based alerts for virtually +any event. This allows a fast reaction to server problems. Zabbix offers +excellent reporting and data visualisation features based on the stored +data. This makes Zabbix ideal for capacity planning. diff --git a/net-mgmt/zabbix7-server/pkg-plist b/net-mgmt/zabbix7-server/pkg-plist new file mode 100644 index 000000000000..21dd5086b363 --- /dev/null +++ b/net-mgmt/zabbix7-server/pkg-plist @@ -0,0 +1,41 @@ +%%DATADIR%%/%%ZABBIX_BUILD%%/database/mysql/data.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/mysql/images.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/mysql/option-patches/history_upgrade_prepare.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/mysql/schema.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/oracle/data.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/oracle/images.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/oracle/option-patches/history_upgrade_prepare.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/oracle/option-patches/items_nvarchar_prepare.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/oracle/schema.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/data.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/images.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/option-patches/history_upgrade_prepare.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/schema.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/timescaledb/option-patches/with-compression/history_upgrade.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/timescaledb/option-patches/with-compression/history_upgrade_log.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/timescaledb/option-patches/with-compression/history_upgrade_prepare.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/timescaledb/option-patches/with-compression/history_upgrade_str.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/timescaledb/option-patches/with-compression/history_upgrade_text.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/timescaledb/option-patches/with-compression/history_upgrade_uint.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/timescaledb/option-patches/with-compression/trends_upgrade.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/timescaledb/option-patches/without-compression/history_upgrade.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/timescaledb/option-patches/without-compression/history_upgrade_log.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/timescaledb/option-patches/without-compression/history_upgrade_prepare.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/timescaledb/option-patches/without-compression/history_upgrade_str.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/timescaledb/option-patches/without-compression/history_upgrade_text.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/timescaledb/option-patches/without-compression/history_upgrade_uint.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/timescaledb/option-patches/without-compression/trends_upgrade.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/postgresql/timescaledb/schema.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/sqlite3/data.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/sqlite3/images.sql +%%DATADIR%%/%%ZABBIX_BUILD%%/database/sqlite3/schema.sql +@sample %%ETCDIR%%/zabbix_%%ZABBIX_BUILD%%.conf.sample +%%PROXY%%bin/zabbix_proxy_js +%%PROXY%%@dir %%ETCDIR%%/zabbix_proxy.conf.d +%%SERVER%%bin/zabbix_js +%%SERVER%%@dir %%ETCDIR%%/zabbix_server.conf.d +%%SERVER%%@dir %%ETCDIR%%/zabbix/alertscripts +share/man/man8/zabbix_%%ZABBIX_BUILD%%.8.gz +sbin/zabbix_%%ZABBIX_BUILD%% +@dir %%ETCDIR%%/zabbix/externalscripts +@dir lib/modules diff --git a/net-mgmt/zabbix7-server/pkg-plist.agent b/net-mgmt/zabbix7-server/pkg-plist.agent new file mode 100644 index 000000000000..dea488b30253 --- /dev/null +++ b/net-mgmt/zabbix7-server/pkg-plist.agent @@ -0,0 +1,9 @@ +@sample %%ETCDIR%%/zabbix_agentd.conf.sample +bin/zabbix_get +bin/zabbix_sender +share/man/man1/zabbix_get.1.gz +share/man/man1/zabbix_sender.1.gz +share/man/man8/zabbix_%%ZABBIX_BUILD%%d.8.gz +sbin/zabbix_agentd +@dir %%ETCDIR%%/zabbix_agentd.conf.d +@dir lib/modules diff --git a/net-mgmt/zabbix7-server/pkg-plist.frontend b/net-mgmt/zabbix7-server/pkg-plist.frontend new file mode 100644 index 000000000000..847ab7b0c0ec --- /dev/null +++ b/net-mgmt/zabbix7-server/pkg-plist.frontend @@ -0,0 +1,1970 @@ +%%WWWDIR%%/api_jsonrpc.php +%%WWWDIR%%/api_scim.php +%%WWWDIR%%/app/.htaccess +%%WWWDIR%%/app/controllers/CControllerActionConditionCheck.php +%%WWWDIR%%/app/controllers/CControllerActionCreate.php +%%WWWDIR%%/app/controllers/CControllerActionDelete.php +%%WWWDIR%%/app/controllers/CControllerActionDisable.php +%%WWWDIR%%/app/controllers/CControllerActionEnable.php +%%WWWDIR%%/app/controllers/CControllerActionList.php +%%WWWDIR%%/app/controllers/CControllerActionLogList.php +%%WWWDIR%%/app/controllers/CControllerActionOperationCheck.php +%%WWWDIR%%/app/controllers/CControllerActionOperationConditionCheck.php +%%WWWDIR%%/app/controllers/CControllerActionUpdate.php +%%WWWDIR%%/app/controllers/CControllerAuditLogList.php +%%WWWDIR%%/app/controllers/CControllerAuditSettingsEdit.php +%%WWWDIR%%/app/controllers/CControllerAuditSettingsUpdate.php +%%WWWDIR%%/app/controllers/CControllerAuthenticationEdit.php +%%WWWDIR%%/app/controllers/CControllerAuthenticationUpdate.php +%%WWWDIR%%/app/controllers/CControllerAutoregEdit.php +%%WWWDIR%%/app/controllers/CControllerAutoregUpdate.php +%%WWWDIR%%/app/controllers/CControllerCharts.php +%%WWWDIR%%/app/controllers/CControllerChartsView.php +%%WWWDIR%%/app/controllers/CControllerChartsViewJson.php +%%WWWDIR%%/app/controllers/CControllerConnectorCreate.php +%%WWWDIR%%/app/controllers/CControllerConnectorDelete.php +%%WWWDIR%%/app/controllers/CControllerConnectorDisable.php +%%WWWDIR%%/app/controllers/CControllerConnectorEdit.php +%%WWWDIR%%/app/controllers/CControllerConnectorEnable.php +%%WWWDIR%%/app/controllers/CControllerConnectorList.php +%%WWWDIR%%/app/controllers/CControllerConnectorUpdate.php +%%WWWDIR%%/app/controllers/CControllerCopyCreate.php +%%WWWDIR%%/app/controllers/CControllerCopyEdit.php +%%WWWDIR%%/app/controllers/CControllerCorrelationConditionCheck.php +%%WWWDIR%%/app/controllers/CControllerCorrelationConditionEdit.php +%%WWWDIR%%/app/controllers/CControllerCorrelationCreate.php +%%WWWDIR%%/app/controllers/CControllerCorrelationDelete.php +%%WWWDIR%%/app/controllers/CControllerCorrelationDisable.php +%%WWWDIR%%/app/controllers/CControllerCorrelationEdit.php +%%WWWDIR%%/app/controllers/CControllerCorrelationEnable.php +%%WWWDIR%%/app/controllers/CControllerCorrelationList.php +%%WWWDIR%%/app/controllers/CControllerCorrelationUpdate.php +%%WWWDIR%%/app/controllers/CControllerDashboardConfigHash.php +%%WWWDIR%%/app/controllers/CControllerDashboardDelete.php +%%WWWDIR%%/app/controllers/CControllerDashboardList.php +%%WWWDIR%%/app/controllers/CControllerDashboardPagePropertiesCheck.php +%%WWWDIR%%/app/controllers/CControllerDashboardPagePropertiesEdit.php +%%WWWDIR%%/app/controllers/CControllerDashboardPrint.php +%%WWWDIR%%/app/controllers/CControllerDashboardPropertiesCheck.php +%%WWWDIR%%/app/controllers/CControllerDashboardPropertiesEdit.php +%%WWWDIR%%/app/controllers/CControllerDashboardShareUpdate.php +%%WWWDIR%%/app/controllers/CControllerDashboardUpdate.php +%%WWWDIR%%/app/controllers/CControllerDashboardView.php +%%WWWDIR%%/app/controllers/CControllerDashboardWidgetCheck.php +%%WWWDIR%%/app/controllers/CControllerDashboardWidgetEdit.php +%%WWWDIR%%/app/controllers/CControllerDashboardWidgetRfRate.php +%%WWWDIR%%/app/controllers/CControllerDashboardWidgetView.php +%%WWWDIR%%/app/controllers/CControllerDashboardWidgetsValidate.php +%%WWWDIR%%/app/controllers/CControllerDiscoveryCheckCheck.php +%%WWWDIR%%/app/controllers/CControllerDiscoveryCheckEdit.php +%%WWWDIR%%/app/controllers/CControllerDiscoveryCreate.php +%%WWWDIR%%/app/controllers/CControllerDiscoveryDelete.php +%%WWWDIR%%/app/controllers/CControllerDiscoveryDisable.php +%%WWWDIR%%/app/controllers/CControllerDiscoveryEdit.php +%%WWWDIR%%/app/controllers/CControllerDiscoveryEnable.php +%%WWWDIR%%/app/controllers/CControllerDiscoveryList.php +%%WWWDIR%%/app/controllers/CControllerDiscoveryUpdate.php +%%WWWDIR%%/app/controllers/CControllerDiscoveryView.php +%%WWWDIR%%/app/controllers/CControllerExport.php +%%WWWDIR%%/app/controllers/CControllerFavoriteCreate.php +%%WWWDIR%%/app/controllers/CControllerFavoriteDelete.php +%%WWWDIR%%/app/controllers/CControllerGeomapsEdit.php +%%WWWDIR%%/app/controllers/CControllerGeomapsUpdate.php +%%WWWDIR%%/app/controllers/CControllerGuiEdit.php +%%WWWDIR%%/app/controllers/CControllerGuiUpdate.php +%%WWWDIR%%/app/controllers/CControllerHintboxActionlist.php +%%WWWDIR%%/app/controllers/CControllerHintboxEventlist.php +%%WWWDIR%%/app/controllers/CControllerHost.php +%%WWWDIR%%/app/controllers/CControllerHostCreate.php +%%WWWDIR%%/app/controllers/CControllerHostDashboardView.php +%%WWWDIR%%/app/controllers/CControllerHostEdit.php +%%WWWDIR%%/app/controllers/CControllerHostGroupCreate.php +%%WWWDIR%%/app/controllers/CControllerHostGroupDelete.php +%%WWWDIR%%/app/controllers/CControllerHostGroupDisable.php +%%WWWDIR%%/app/controllers/CControllerHostGroupEdit.php +%%WWWDIR%%/app/controllers/CControllerHostGroupEnable.php +%%WWWDIR%%/app/controllers/CControllerHostGroupList.php +%%WWWDIR%%/app/controllers/CControllerHostGroupUpdate.php +%%WWWDIR%%/app/controllers/CControllerHostList.php +%%WWWDIR%%/app/controllers/CControllerHostMacrosList.php +%%WWWDIR%%/app/controllers/CControllerHostMassDelete.php +%%WWWDIR%%/app/controllers/CControllerHostUpdate.php +%%WWWDIR%%/app/controllers/CControllerHostUpdateGeneral.php +%%WWWDIR%%/app/controllers/CControllerHostView.php +%%WWWDIR%%/app/controllers/CControllerHostViewRefresh.php +%%WWWDIR%%/app/controllers/CControllerHousekeepingEdit.php +%%WWWDIR%%/app/controllers/CControllerHousekeepingUpdate.php +%%WWWDIR%%/app/controllers/CControllerIconMapCreate.php +%%WWWDIR%%/app/controllers/CControllerIconMapDelete.php +%%WWWDIR%%/app/controllers/CControllerIconMapEdit.php +%%WWWDIR%%/app/controllers/CControllerIconMapList.php +%%WWWDIR%%/app/controllers/CControllerIconMapUpdate.php +%%WWWDIR%%/app/controllers/CControllerImageCreate.php +%%WWWDIR%%/app/controllers/CControllerImageDelete.php +%%WWWDIR%%/app/controllers/CControllerImageEdit.php +%%WWWDIR%%/app/controllers/CControllerImageList.php +%%WWWDIR%%/app/controllers/CControllerImageUpdate.php +%%WWWDIR%%/app/controllers/CControllerItem.php +%%WWWDIR%%/app/controllers/CControllerItemClear.php +%%WWWDIR%%/app/controllers/CControllerItemCreate.php +%%WWWDIR%%/app/controllers/CControllerItemDelete.php +%%WWWDIR%%/app/controllers/CControllerItemDisable.php +%%WWWDIR%%/app/controllers/CControllerItemEdit.php +%%WWWDIR%%/app/controllers/CControllerItemEnable.php +%%WWWDIR%%/app/controllers/CControllerItemExecuteNow.php +%%WWWDIR%%/app/controllers/CControllerItemList.php +%%WWWDIR%%/app/controllers/CControllerItemMassupdate.php +%%WWWDIR%%/app/controllers/CControllerItemPrototype.php +%%WWWDIR%%/app/controllers/CControllerItemPrototypeCreate.php +%%WWWDIR%%/app/controllers/CControllerItemPrototypeDelete.php +%%WWWDIR%%/app/controllers/CControllerItemPrototypeDisable.php +%%WWWDIR%%/app/controllers/CControllerItemPrototypeEdit.php +%%WWWDIR%%/app/controllers/CControllerItemPrototypeEnable.php +%%WWWDIR%%/app/controllers/CControllerItemPrototypeList.php +%%WWWDIR%%/app/controllers/CControllerItemPrototypeUpdate.php +%%WWWDIR%%/app/controllers/CControllerItemTagsList.php +%%WWWDIR%%/app/controllers/CControllerItemUpdate.php +%%WWWDIR%%/app/controllers/CControllerLatest.php +%%WWWDIR%%/app/controllers/CControllerLatestView.php +%%WWWDIR%%/app/controllers/CControllerLatestViewRefresh.php +%%WWWDIR%%/app/controllers/CControllerMacrosEdit.php +%%WWWDIR%%/app/controllers/CControllerMacrosUpdate.php +%%WWWDIR%%/app/controllers/CControllerMaintenanceCreate.php +%%WWWDIR%%/app/controllers/CControllerMaintenanceDelete.php +%%WWWDIR%%/app/controllers/CControllerMaintenanceEdit.php +%%WWWDIR%%/app/controllers/CControllerMaintenanceList.php +%%WWWDIR%%/app/controllers/CControllerMaintenanceTimePeriodCheck.php +%%WWWDIR%%/app/controllers/CControllerMaintenanceTimePeriodEdit.php +%%WWWDIR%%/app/controllers/CControllerMaintenanceUpdate.php +%%WWWDIR%%/app/controllers/CControllerMapView.php +%%WWWDIR%%/app/controllers/CControllerMediatypeCreate.php +%%WWWDIR%%/app/controllers/CControllerMediatypeDelete.php +%%WWWDIR%%/app/controllers/CControllerMediatypeDisable.php +%%WWWDIR%%/app/controllers/CControllerMediatypeEdit.php +%%WWWDIR%%/app/controllers/CControllerMediatypeEnable.php +%%WWWDIR%%/app/controllers/CControllerMediatypeList.php +%%WWWDIR%%/app/controllers/CControllerMediatypeMessageCheck.php +%%WWWDIR%%/app/controllers/CControllerMediatypeMessageEdit.php +%%WWWDIR%%/app/controllers/CControllerMediatypeTestEdit.php +%%WWWDIR%%/app/controllers/CControllerMediatypeTestSend.php +%%WWWDIR%%/app/controllers/CControllerMediatypeUpdate.php +%%WWWDIR%%/app/controllers/CControllerMenuPopup.php +%%WWWDIR%%/app/controllers/CControllerMfaCheck.php +%%WWWDIR%%/app/controllers/CControllerMfaEdit.php +%%WWWDIR%%/app/controllers/CControllerMiscConfigEdit.php +%%WWWDIR%%/app/controllers/CControllerMiscConfigUpdate.php +%%WWWDIR%%/app/controllers/CControllerModuleDisable.php +%%WWWDIR%%/app/controllers/CControllerModuleEdit.php +%%WWWDIR%%/app/controllers/CControllerModuleEnable.php +%%WWWDIR%%/app/controllers/CControllerModuleList.php +%%WWWDIR%%/app/controllers/CControllerModuleScan.php +%%WWWDIR%%/app/controllers/CControllerModuleUpdate.php +%%WWWDIR%%/app/controllers/CControllerNotificationsGet.php +%%WWWDIR%%/app/controllers/CControllerNotificationsMute.php +%%WWWDIR%%/app/controllers/CControllerNotificationsRead.php +%%WWWDIR%%/app/controllers/CControllerNotificationsSnooze.php +%%WWWDIR%%/app/controllers/CControllerPopup.php +%%WWWDIR%%/app/controllers/CControllerPopupAcknowledgeCreate.php +%%WWWDIR%%/app/controllers/CControllerPopupAcknowledgeEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupActionConditionEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupActionEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupActionOperationEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupActionOperationsList.php +%%WWWDIR%%/app/controllers/CControllerPopupConditionOperations.php +%%WWWDIR%%/app/controllers/CControllerPopupDashboardShareEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupGeneric.php +%%WWWDIR%%/app/controllers/CControllerPopupImport.php +%%WWWDIR%%/app/controllers/CControllerPopupImportCompare.php +%%WWWDIR%%/app/controllers/CControllerPopupItemTest.php +%%WWWDIR%%/app/controllers/CControllerPopupItemTestEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupItemTestGetValue.php +%%WWWDIR%%/app/controllers/CControllerPopupItemTestSend.php +%%WWWDIR%%/app/controllers/CControllerPopupLdapCheck.php +%%WWWDIR%%/app/controllers/CControllerPopupLdapEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupLdapTestEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupLdapTestSend.php +%%WWWDIR%%/app/controllers/CControllerPopupLldOperation.php +%%WWWDIR%%/app/controllers/CControllerPopupLldOverride.php +%%WWWDIR%%/app/controllers/CControllerPopupMassupdateAbstract.php +%%WWWDIR%%/app/controllers/CControllerPopupMassupdateHost.php +%%WWWDIR%%/app/controllers/CControllerPopupMassupdateService.php +%%WWWDIR%%/app/controllers/CControllerPopupMedia.php +%%WWWDIR%%/app/controllers/CControllerPopupMediaTypeMappingCheck.php +%%WWWDIR%%/app/controllers/CControllerPopupMediaTypeMappingEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupProxyEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupProxyGroupEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupScheduledReportCreate.php +%%WWWDIR%%/app/controllers/CControllerPopupScheduledReportEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupScheduledReportList.php +%%WWWDIR%%/app/controllers/CControllerPopupScheduledReportSubscriptionEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupScheduledReportTest.php +%%WWWDIR%%/app/controllers/CControllerPopupScriptExec.php +%%WWWDIR%%/app/controllers/CControllerPopupServiceEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupServiceStatusRuleEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupServices.php +%%WWWDIR%%/app/controllers/CControllerPopupSlaEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupSlaExcludedDowntimeEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupTabFilterDelete.php +%%WWWDIR%%/app/controllers/CControllerPopupTabFilterEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupTabFilterUpdate.php +%%WWWDIR%%/app/controllers/CControllerPopupTestTriggerExpr.php +%%WWWDIR%%/app/controllers/CControllerPopupTokenEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupTokenView.php +%%WWWDIR%%/app/controllers/CControllerPopupTriggerExpr.php +%%WWWDIR%%/app/controllers/CControllerPopupUserGroupMappingCheck.php +%%WWWDIR%%/app/controllers/CControllerPopupUserGroupMappingEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupValueMapEdit.php +%%WWWDIR%%/app/controllers/CControllerPopupValueMapUpdate.php +%%WWWDIR%%/app/controllers/CControllerProblem.php +%%WWWDIR%%/app/controllers/CControllerProblemView.php +%%WWWDIR%%/app/controllers/CControllerProblemViewRefresh.php +%%WWWDIR%%/app/controllers/CControllerProfileUpdate.php +%%WWWDIR%%/app/controllers/CControllerProxyConfigRefresh.php +%%WWWDIR%%/app/controllers/CControllerProxyCreate.php +%%WWWDIR%%/app/controllers/CControllerProxyDelete.php +%%WWWDIR%%/app/controllers/CControllerProxyGroupCreate.php +%%WWWDIR%%/app/controllers/CControllerProxyGroupDelete.php +%%WWWDIR%%/app/controllers/CControllerProxyGroupList.php +%%WWWDIR%%/app/controllers/CControllerProxyGroupUpdate.php +%%WWWDIR%%/app/controllers/CControllerProxyHostDisable.php +%%WWWDIR%%/app/controllers/CControllerProxyHostEnable.php +%%WWWDIR%%/app/controllers/CControllerProxyList.php +%%WWWDIR%%/app/controllers/CControllerProxyUpdate.php +%%WWWDIR%%/app/controllers/CControllerQueueDetails.php +%%WWWDIR%%/app/controllers/CControllerQueueOverview.php +%%WWWDIR%%/app/controllers/CControllerQueueOverviewProxy.php +%%WWWDIR%%/app/controllers/CControllerRegExCreate.php +%%WWWDIR%%/app/controllers/CControllerRegExDelete.php +%%WWWDIR%%/app/controllers/CControllerRegExEdit.php +%%WWWDIR%%/app/controllers/CControllerRegExList.php +%%WWWDIR%%/app/controllers/CControllerRegExTest.php +%%WWWDIR%%/app/controllers/CControllerRegExUpdate.php +%%WWWDIR%%/app/controllers/CControllerReportStatus.php +%%WWWDIR%%/app/controllers/CControllerScheduledReportCreate.php +%%WWWDIR%%/app/controllers/CControllerScheduledReportDelete.php +%%WWWDIR%%/app/controllers/CControllerScheduledReportDisable.php +%%WWWDIR%%/app/controllers/CControllerScheduledReportEdit.php +%%WWWDIR%%/app/controllers/CControllerScheduledReportEnable.php +%%WWWDIR%%/app/controllers/CControllerScheduledReportList.php +%%WWWDIR%%/app/controllers/CControllerScheduledReportUpdate.php +%%WWWDIR%%/app/controllers/CControllerScriptCreate.php +%%WWWDIR%%/app/controllers/CControllerScriptDelete.php +%%WWWDIR%%/app/controllers/CControllerScriptEdit.php +%%WWWDIR%%/app/controllers/CControllerScriptList.php +%%WWWDIR%%/app/controllers/CControllerScriptUpdate.php +%%WWWDIR%%/app/controllers/CControllerScriptUserInputCheck.php +%%WWWDIR%%/app/controllers/CControllerScriptUserInputEdit.php +%%WWWDIR%%/app/controllers/CControllerSearch.php +%%WWWDIR%%/app/controllers/CControllerServiceCreate.php +%%WWWDIR%%/app/controllers/CControllerServiceDelete.php +%%WWWDIR%%/app/controllers/CControllerServiceList.php +%%WWWDIR%%/app/controllers/CControllerServiceListEdit.php +%%WWWDIR%%/app/controllers/CControllerServiceListEditRefresh.php +%%WWWDIR%%/app/controllers/CControllerServiceListGeneral.php +%%WWWDIR%%/app/controllers/CControllerServiceListRefresh.php +%%WWWDIR%%/app/controllers/CControllerServiceStatusRuleValidate.php +%%WWWDIR%%/app/controllers/CControllerServiceUpdate.php +%%WWWDIR%%/app/controllers/CControllerSlaCreate.php +%%WWWDIR%%/app/controllers/CControllerSlaCreateUpdate.php +%%WWWDIR%%/app/controllers/CControllerSlaDelete.php +%%WWWDIR%%/app/controllers/CControllerSlaDisable.php +%%WWWDIR%%/app/controllers/CControllerSlaEnable.php +%%WWWDIR%%/app/controllers/CControllerSlaExcludedDowntimeValidate.php +%%WWWDIR%%/app/controllers/CControllerSlaList.php +%%WWWDIR%%/app/controllers/CControllerSlaReportList.php +%%WWWDIR%%/app/controllers/CControllerSlaUpdate.php +%%WWWDIR%%/app/controllers/CControllerSoftwareVersionCheckGet.php +%%WWWDIR%%/app/controllers/CControllerSoftwareVersionCheckUpdate.php +%%WWWDIR%%/app/controllers/CControllerSystemWarning.php +%%WWWDIR%%/app/controllers/CControllerTabFilterProfileUpdate.php +%%WWWDIR%%/app/controllers/CControllerTemplateCreate.php +%%WWWDIR%%/app/controllers/CControllerTemplateDashboardDelete.php +%%WWWDIR%%/app/controllers/CControllerTemplateDashboardEdit.php +%%WWWDIR%%/app/controllers/CControllerTemplateDashboardList.php +%%WWWDIR%%/app/controllers/CControllerTemplateDashboardUpdate.php +%%WWWDIR%%/app/controllers/CControllerTemplateDelete.php +%%WWWDIR%%/app/controllers/CControllerTemplateEdit.php +%%WWWDIR%%/app/controllers/CControllerTemplateGroupCreate.php +%%WWWDIR%%/app/controllers/CControllerTemplateGroupDelete.php +%%WWWDIR%%/app/controllers/CControllerTemplateGroupEdit.php +%%WWWDIR%%/app/controllers/CControllerTemplateGroupList.php +%%WWWDIR%%/app/controllers/CControllerTemplateGroupUpdate.php +%%WWWDIR%%/app/controllers/CControllerTemplateList.php +%%WWWDIR%%/app/controllers/CControllerTemplateMassupdate.php +%%WWWDIR%%/app/controllers/CControllerTemplateUpdate.php +%%WWWDIR%%/app/controllers/CControllerTimeSelectorCalc.php +%%WWWDIR%%/app/controllers/CControllerTimeSelectorUpdate.php +%%WWWDIR%%/app/controllers/CControllerTimeoutsEdit.php +%%WWWDIR%%/app/controllers/CControllerTimeoutsUpdate.php +%%WWWDIR%%/app/controllers/CControllerTokenCreate.php +%%WWWDIR%%/app/controllers/CControllerTokenDelete.php +%%WWWDIR%%/app/controllers/CControllerTokenDisable.php +%%WWWDIR%%/app/controllers/CControllerTokenEnable.php +%%WWWDIR%%/app/controllers/CControllerTokenList.php +%%WWWDIR%%/app/controllers/CControllerTokenUpdate.php +%%WWWDIR%%/app/controllers/CControllerTopTriggersList.php +%%WWWDIR%%/app/controllers/CControllerTrigDisplayEdit.php +%%WWWDIR%%/app/controllers/CControllerTrigDisplayUpdate.php +%%WWWDIR%%/app/controllers/CControllerTriggerCreate.php +%%WWWDIR%%/app/controllers/CControllerTriggerDelete.php +%%WWWDIR%%/app/controllers/CControllerTriggerDisable.php +%%WWWDIR%%/app/controllers/CControllerTriggerEdit.php +%%WWWDIR%%/app/controllers/CControllerTriggerEnable.php +%%WWWDIR%%/app/controllers/CControllerTriggerExpressionConstructor.php +%%WWWDIR%%/app/controllers/CControllerTriggerList.php +%%WWWDIR%%/app/controllers/CControllerTriggerMassupdate.php +%%WWWDIR%%/app/controllers/CControllerTriggerPrototypeCreate.php +%%WWWDIR%%/app/controllers/CControllerTriggerPrototypeDelete.php +%%WWWDIR%%/app/controllers/CControllerTriggerPrototypeDisable.php +%%WWWDIR%%/app/controllers/CControllerTriggerPrototypeEdit.php +%%WWWDIR%%/app/controllers/CControllerTriggerPrototypeEnable.php +%%WWWDIR%%/app/controllers/CControllerTriggerPrototypeList.php +%%WWWDIR%%/app/controllers/CControllerTriggerPrototypeUpdate.php +%%WWWDIR%%/app/controllers/CControllerTriggerUpdate.php +%%WWWDIR%%/app/controllers/CControllerUserCreate.php +%%WWWDIR%%/app/controllers/CControllerUserDelete.php +%%WWWDIR%%/app/controllers/CControllerUserEdit.php +%%WWWDIR%%/app/controllers/CControllerUserEditGeneral.php +%%WWWDIR%%/app/controllers/CControllerUserList.php +%%WWWDIR%%/app/controllers/CControllerUserProfileEdit.php +%%WWWDIR%%/app/controllers/CControllerUserProfileUpdate.php +%%WWWDIR%%/app/controllers/CControllerUserProvision.php +%%WWWDIR%%/app/controllers/CControllerUserResetTotp.php +%%WWWDIR%%/app/controllers/CControllerUserTokenList.php +%%WWWDIR%%/app/controllers/CControllerUserUnblock.php +%%WWWDIR%%/app/controllers/CControllerUserUpdate.php +%%WWWDIR%%/app/controllers/CControllerUserUpdateGeneral.php +%%WWWDIR%%/app/controllers/CControllerUsergroupCreate.php +%%WWWDIR%%/app/controllers/CControllerUsergroupDelete.php +%%WWWDIR%%/app/controllers/CControllerUsergroupEdit.php +%%WWWDIR%%/app/controllers/CControllerUsergroupList.php +%%WWWDIR%%/app/controllers/CControllerUsergroupMassUpdate.php +%%WWWDIR%%/app/controllers/CControllerUsergroupTagFilterCheck.php +%%WWWDIR%%/app/controllers/CControllerUsergroupTagFilterEdit.php +%%WWWDIR%%/app/controllers/CControllerUsergroupTagFilterList.php +%%WWWDIR%%/app/controllers/CControllerUsergroupUpdate.php +%%WWWDIR%%/app/controllers/CControllerUserroleCreate.php +%%WWWDIR%%/app/controllers/CControllerUserroleDelete.php +%%WWWDIR%%/app/controllers/CControllerUserroleEdit.php +%%WWWDIR%%/app/controllers/CControllerUserroleEditGeneral.php +%%WWWDIR%%/app/controllers/CControllerUserroleList.php +%%WWWDIR%%/app/controllers/CControllerUserroleUpdate.php +%%WWWDIR%%/app/controllers/CControllerWebScenarioStepCheck.php +%%WWWDIR%%/app/controllers/CControllerWebScenarioStepEdit.php +%%WWWDIR%%/app/controllers/CControllerWebView.php +%%WWWDIR%%/app/controllers/CControllerWidgetIterator.php +%%WWWDIR%%/app/controllers/CControllerWidgetNavigationTreeToggle.php +%%WWWDIR%%/app/partials/action.operations.php +%%WWWDIR%%/app/partials/action.recovery.operations.php +%%WWWDIR%%/app/partials/action.update.operations.php +%%WWWDIR%%/app/partials/administration.ha.nodes.php +%%WWWDIR%%/app/partials/administration.system.info.php +%%WWWDIR%%/app/partials/configuration.host.edit.html.php +%%WWWDIR%%/app/partials/configuration.host.interface.row.php +%%WWWDIR%%/app/partials/configuration.hostgroup.edit.html.php +%%WWWDIR%%/app/partials/configuration.tags.tab.php +%%WWWDIR%%/app/partials/configuration.templategroup.edit.html.php +%%WWWDIR%%/app/partials/configuration.valuemap.php +%%WWWDIR%%/app/partials/hostmacros.inherited.list.html.php +%%WWWDIR%%/app/partials/hostmacros.list.html.php +%%WWWDIR%%/app/partials/item.edit.item.tab.php +%%WWWDIR%%/app/partials/item.edit.preprocessing.tab.php +%%WWWDIR%%/app/partials/item.list.filter.php +%%WWWDIR%%/app/partials/js/configuration.host.edit.html.js.php +%%WWWDIR%%/app/partials/js/configuration.tags.tab.js.php +%%WWWDIR%%/app/partials/js/configuration.valuemap.js.php +%%WWWDIR%%/app/partials/js/scheduledreport.formgrid.js.php +%%WWWDIR%%/app/partials/js/scheduledreport.subscription.js.php +%%WWWDIR%%/app/partials/layout.htmlpage.aside.php +%%WWWDIR%%/app/partials/layout.htmlpage.footer.php +%%WWWDIR%%/app/partials/layout.htmlpage.header.php +%%WWWDIR%%/app/partials/massupdate.macros.tab.php +%%WWWDIR%%/app/partials/massupdate.valuemaps.tab.php +%%WWWDIR%%/app/partials/monitoring.charts.subfilter.php +%%WWWDIR%%/app/partials/monitoring.host.filter.php +%%WWWDIR%%/app/partials/monitoring.host.view.html.php +%%WWWDIR%%/app/partials/monitoring.latest.filter.php +%%WWWDIR%%/app/partials/monitoring.latest.subfilter.php +%%WWWDIR%%/app/partials/monitoring.latest.view.html.php +%%WWWDIR%%/app/partials/monitoring.problem.filter.php +%%WWWDIR%%/app/partials/monitoring.problem.view.html.php +%%WWWDIR%%/app/partials/scheduledreport.formgrid.html.php +%%WWWDIR%%/app/partials/scheduledreport.subscription.php +%%WWWDIR%%/app/partials/scheduledreport.table.html.php +%%WWWDIR%%/app/partials/service.info.php +%%WWWDIR%%/app/partials/service.list.edit.php +%%WWWDIR%%/app/partials/service.list.php +%%WWWDIR%%/app/partials/tags.list.html.php +%%WWWDIR%%/app/partials/timeselector.filter.php +%%WWWDIR%%/app/partials/trigger.edit.dependencies.tab.php +%%WWWDIR%%/app/partials/trigger.edit.trigger.tab.php +%%WWWDIR%%/app/partials/usergroup.tagfilters.php +%%WWWDIR%%/app/views/action.list.php +%%WWWDIR%%/app/views/administration.audit.settings.edit.php +%%WWWDIR%%/app/views/administration.authentication.edit.php +%%WWWDIR%%/app/views/administration.autoreg.edit.php +%%WWWDIR%%/app/views/administration.geomaps.edit.php +%%WWWDIR%%/app/views/administration.gui.edit.php +%%WWWDIR%%/app/views/administration.housekeeping.edit.php +%%WWWDIR%%/app/views/administration.iconmap.edit.php +%%WWWDIR%%/app/views/administration.iconmap.list.php +%%WWWDIR%%/app/views/administration.image.edit.php +%%WWWDIR%%/app/views/administration.image.list.php +%%WWWDIR%%/app/views/administration.macros.edit.php +%%WWWDIR%%/app/views/administration.miscconfig.edit.php +%%WWWDIR%%/app/views/administration.proxy.list.php +%%WWWDIR%%/app/views/administration.proxygroup.list.php +%%WWWDIR%%/app/views/administration.queue.details.php +%%WWWDIR%%/app/views/administration.queue.overview.php +%%WWWDIR%%/app/views/administration.queue.overview.proxy.php +%%WWWDIR%%/app/views/administration.regex.edit.php +%%WWWDIR%%/app/views/administration.regex.list.php +%%WWWDIR%%/app/views/administration.script.edit.php +%%WWWDIR%%/app/views/administration.script.list.php +%%WWWDIR%%/app/views/administration.timeouts.edit.php +%%WWWDIR%%/app/views/administration.token.list.php +%%WWWDIR%%/app/views/administration.trigdisplay.edit.php +%%WWWDIR%%/app/views/administration.user.edit.php +%%WWWDIR%%/app/views/administration.user.list.php +%%WWWDIR%%/app/views/administration.user.token.list.php +%%WWWDIR%%/app/views/administration.userrole.edit.php +%%WWWDIR%%/app/views/administration.userrole.list.php +%%WWWDIR%%/app/views/configuration.dashboard.edit.php +%%WWWDIR%%/app/views/configuration.dashboard.list.php +%%WWWDIR%%/app/views/configuration.discovery.edit.php +%%WWWDIR%%/app/views/configuration.discovery.list.php +%%WWWDIR%%/app/views/configuration.host.edit.php +%%WWWDIR%%/app/views/configuration.host.list.php +%%WWWDIR%%/app/views/configuration.hostgroup.edit.php +%%WWWDIR%%/app/views/configuration.hostgroup.list.php +%%WWWDIR%%/app/views/configuration.templategroup.edit.php +%%WWWDIR%%/app/views/configuration.templategroup.list.php +%%WWWDIR%%/app/views/connector.edit.php +%%WWWDIR%%/app/views/connector.list.php +%%WWWDIR%%/app/views/copy.edit.php +%%WWWDIR%%/app/views/correlation.condition.edit.php +%%WWWDIR%%/app/views/correlation.edit.php +%%WWWDIR%%/app/views/correlation.list.php +%%WWWDIR%%/app/views/dashboard.page.properties.edit.php +%%WWWDIR%%/app/views/dashboard.properties.edit.php +%%WWWDIR%%/app/views/discovery.check.edit.php +%%WWWDIR%%/app/views/hintbox.actionlist.php +%%WWWDIR%%/app/views/hintbox.eventlist.php +%%WWWDIR%%/app/views/hostmacros.list.php +%%WWWDIR%%/app/views/item.edit.php +%%WWWDIR%%/app/views/item.list.php +%%WWWDIR%%/app/views/item.massupdate.php +%%WWWDIR%%/app/views/item.prototype.edit.php +%%WWWDIR%%/app/views/item.prototype.list.php +%%WWWDIR%%/app/views/item.tags.list.php +%%WWWDIR%%/app/views/js/action.list.js.php +%%WWWDIR%%/app/views/js/administration.audit.settings.edit.js.php +%%WWWDIR%%/app/views/js/administration.authentication.edit.js.php +%%WWWDIR%%/app/views/js/administration.autoreg.edit.js.php +%%WWWDIR%%/app/views/js/administration.geomaps.edit.js.php +%%WWWDIR%%/app/views/js/administration.gui.edit.js.php +%%WWWDIR%%/app/views/js/administration.housekeeping.edit.js.php +%%WWWDIR%%/app/views/js/administration.iconmap.edit.js.php +%%WWWDIR%%/app/views/js/administration.image.edit.js.php +%%WWWDIR%%/app/views/js/administration.image.list.js.php +%%WWWDIR%%/app/views/js/administration.macros.edit.js.php +%%WWWDIR%%/app/views/js/administration.miscconfig.edit.js.php +%%WWWDIR%%/app/views/js/administration.proxy.list.js.php +%%WWWDIR%%/app/views/js/administration.proxygroup.list.js.php +%%WWWDIR%%/app/views/js/administration.regex.edit.js.php +%%WWWDIR%%/app/views/js/administration.script.edit.js.php +%%WWWDIR%%/app/views/js/administration.script.list.js.php +%%WWWDIR%%/app/views/js/administration.timeouts.edit.js.php +%%WWWDIR%%/app/views/js/administration.token.list.js.php +%%WWWDIR%%/app/views/js/administration.trigdisplay.edit.js.php +%%WWWDIR%%/app/views/js/administration.user.edit.common.js.php +%%WWWDIR%%/app/views/js/administration.user.edit.js.php +%%WWWDIR%%/app/views/js/administration.user.list.js.php +%%WWWDIR%%/app/views/js/administration.user.token.list.js.php +%%WWWDIR%%/app/views/js/administration.userprofile.edit.js.php +%%WWWDIR%%/app/views/js/administration.userrole.edit.js.php +%%WWWDIR%%/app/views/js/configuration.dashboard.edit.js.php +%%WWWDIR%%/app/views/js/configuration.dashboard.list.js.php +%%WWWDIR%%/app/views/js/configuration.discovery.edit.js.php +%%WWWDIR%%/app/views/js/configuration.discovery.list.js.php +%%WWWDIR%%/app/views/js/configuration.host.edit.js.php +%%WWWDIR%%/app/views/js/configuration.host.list.js.php +%%WWWDIR%%/app/views/js/configuration.hostgroup.edit.js.php +%%WWWDIR%%/app/views/js/configuration.hostgroup.list.js.php +%%WWWDIR%%/app/views/js/configuration.templategroup.edit.js.php +%%WWWDIR%%/app/views/js/configuration.templategroup.list.js.php +%%WWWDIR%%/app/views/js/connector.edit.js.php +%%WWWDIR%%/app/views/js/connector.list.js.php +%%WWWDIR%%/app/views/js/copy.edit.js.php +%%WWWDIR%%/app/views/js/correlation.condition.edit.js.php +%%WWWDIR%%/app/views/js/correlation.edit.js.php +%%WWWDIR%%/app/views/js/correlation.list.js.php +%%WWWDIR%%/app/views/js/discovery.check.edit.js.php +%%WWWDIR%%/app/views/js/item.edit.js.php +%%WWWDIR%%/app/views/js/item.list.js.php +%%WWWDIR%%/app/views/js/item.massupdate.js.php +%%WWWDIR%%/app/views/js/item.prototype.list.js.php +%%WWWDIR%%/app/views/js/maintenance.edit.js.php +%%WWWDIR%%/app/views/js/maintenance.list.js.php +%%WWWDIR%%/app/views/js/maintenance.timeperiod.edit.js.php +%%WWWDIR%%/app/views/js/mediatype.edit.js.php +%%WWWDIR%%/app/views/js/mediatype.list.js.php +%%WWWDIR%%/app/views/js/mediatype.message.edit.js.php +%%WWWDIR%%/app/views/js/mediatype.test.edit.js.php +%%WWWDIR%%/app/views/js/mfa.edit.js.php +%%WWWDIR%%/app/views/js/module.edit.js.php +%%WWWDIR%%/app/views/js/module.list.js.php +%%WWWDIR%%/app/views/js/monitoring.charts.view.js.php +%%WWWDIR%%/app/views/js/monitoring.dashboard.print.js.php +%%WWWDIR%%/app/views/js/monitoring.dashboard.view.js.php +%%WWWDIR%%/app/views/js/monitoring.discovery.view.js.php +%%WWWDIR%%/app/views/js/monitoring.host.dashboard.view.js.php +%%WWWDIR%%/app/views/js/monitoring.host.view.js.php +%%WWWDIR%%/app/views/js/monitoring.latest.view.js.php +%%WWWDIR%%/app/views/js/monitoring.map.view.js.php +%%WWWDIR%%/app/views/js/monitoring.problem.view.js.php +%%WWWDIR%%/app/views/js/monitoring.web.view.js.php +%%WWWDIR%%/app/views/js/popup.acknowledge.edit.js.php +%%WWWDIR%%/app/views/js/popup.action.edit.js.php +%%WWWDIR%%/app/views/js/popup.condition.edit.js.php +%%WWWDIR%%/app/views/js/popup.dashboard.share.edit.js.php +%%WWWDIR%%/app/views/js/popup.discovery.check.js.php +%%WWWDIR%%/app/views/js/popup.generic.js.php +%%WWWDIR%%/app/views/js/popup.host.edit.js.php +%%WWWDIR%%/app/views/js/popup.hostgroup.edit.js.php +%%WWWDIR%%/app/views/js/popup.import.compare.js.php +%%WWWDIR%%/app/views/js/popup.import.js.php +%%WWWDIR%%/app/views/js/popup.itemtestedit.view.js.php +%%WWWDIR%%/app/views/js/popup.ldap.edit.js.php +%%WWWDIR%%/app/views/js/popup.ldap.test.edit.js.php +%%WWWDIR%%/app/views/js/popup.massupdate.js.php +%%WWWDIR%%/app/views/js/popup.massupdate.macros.js.php +%%WWWDIR%%/app/views/js/popup.massupdate.tmpl.js.php +%%WWWDIR%%/app/views/js/popup.media.js.php +%%WWWDIR%%/app/views/js/popup.mediatypemapping.edit.js.php +%%WWWDIR%%/app/views/js/popup.operation.edit.js.php +%%WWWDIR%%/app/views/js/popup.proxy.edit.js.php +%%WWWDIR%%/app/views/js/popup.proxygroup.edit.js.php +%%WWWDIR%%/app/views/js/popup.scheduledreport.edit.js.php +%%WWWDIR%%/app/views/js/popup.scheduledreport.subscription.js.php +%%WWWDIR%%/app/views/js/popup.scriptexec.js.php +%%WWWDIR%%/app/views/js/popup.service.edit.js.php +%%WWWDIR%%/app/views/js/popup.service.statusrule.edit.js.php +%%WWWDIR%%/app/views/js/popup.services.js.php +%%WWWDIR%%/app/views/js/popup.sla.edit.js.php +%%WWWDIR%%/app/views/js/popup.sla.excludeddowntime.edit.js.php +%%WWWDIR%%/app/views/js/popup.tabfilter.edit.js.php +%%WWWDIR%%/app/views/js/popup.templategroup.edit.js.php +%%WWWDIR%%/app/views/js/popup.token.edit.js.php +%%WWWDIR%%/app/views/js/popup.triggerexpr.js.php +%%WWWDIR%%/app/views/js/popup.usergroupmapping.edit.js.php +%%WWWDIR%%/app/views/js/popup.valuemap.edit.js.php +%%WWWDIR%%/app/views/js/reports.actionlog.list.js.php +%%WWWDIR%%/app/views/js/reports.auditlog.list.js.php +%%WWWDIR%%/app/views/js/reports.scheduledreport.edit.js.php +%%WWWDIR%%/app/views/js/reports.toptriggers.list.js.php +%%WWWDIR%%/app/views/js/script.userinput.edit.js.php +%%WWWDIR%%/app/views/js/search.js.php +%%WWWDIR%%/app/views/js/service.list.js.php +%%WWWDIR%%/app/views/js/sla.list.js.php +%%WWWDIR%%/app/views/js/slareport.list.js.php +%%WWWDIR%%/app/views/js/template.edit.js.php +%%WWWDIR%%/app/views/js/template.list.js.php +%%WWWDIR%%/app/views/js/trigger.edit.js.php +%%WWWDIR%%/app/views/js/trigger.list.js.php +%%WWWDIR%%/app/views/js/trigger.massupdate.js.php +%%WWWDIR%%/app/views/js/trigger.prototype.list.js.php +%%WWWDIR%%/app/views/js/usergroup.edit.js.php +%%WWWDIR%%/app/views/js/usergroup.tagfilter.edit.js.php +%%WWWDIR%%/app/views/js/webscenario.step.edit.js.php +%%WWWDIR%%/app/views/layout.csv.php +%%WWWDIR%%/app/views/layout.export.php +%%WWWDIR%%/app/views/layout.htmlpage.php +%%WWWDIR%%/app/views/layout.image.php +%%WWWDIR%%/app/views/layout.javascript.php +%%WWWDIR%%/app/views/layout.json.php +%%WWWDIR%%/app/views/layout.print.php +%%WWWDIR%%/app/views/layout.warning.php +%%WWWDIR%%/app/views/layout.widget.php +%%WWWDIR%%/app/views/maintenance.edit.php +%%WWWDIR%%/app/views/maintenance.list.php +%%WWWDIR%%/app/views/maintenance.timeperiod.edit.php +%%WWWDIR%%/app/views/mediatype.edit.php +%%WWWDIR%%/app/views/mediatype.list.php +%%WWWDIR%%/app/views/mediatype.message.edit.php +%%WWWDIR%%/app/views/mediatype.test.edit.php +%%WWWDIR%%/app/views/mfa.edit.php +%%WWWDIR%%/app/views/module.edit.php +%%WWWDIR%%/app/views/module.list.php +%%WWWDIR%%/app/views/monitoring.charts.view.json.php +%%WWWDIR%%/app/views/monitoring.charts.view.php +%%WWWDIR%%/app/views/monitoring.dashboard.list.php +%%WWWDIR%%/app/views/monitoring.dashboard.print.php +%%WWWDIR%%/app/views/monitoring.dashboard.view.php +%%WWWDIR%%/app/views/monitoring.discovery.view.php +%%WWWDIR%%/app/views/monitoring.host.dashboard.view.php +%%WWWDIR%%/app/views/monitoring.host.view.php +%%WWWDIR%%/app/views/monitoring.host.view.refresh.php +%%WWWDIR%%/app/views/monitoring.latest.view.php +%%WWWDIR%%/app/views/monitoring.latest.view.refresh.php +%%WWWDIR%%/app/views/monitoring.map.view.php +%%WWWDIR%%/app/views/monitoring.problem.view.php +%%WWWDIR%%/app/views/monitoring.problem.view.refresh.php +%%WWWDIR%%/app/views/monitoring.web.view.php +%%WWWDIR%%/app/views/popup.acknowledge.edit.php +%%WWWDIR%%/app/views/popup.action.edit.php +%%WWWDIR%%/app/views/popup.action.operations.list.php +%%WWWDIR%%/app/views/popup.condition.edit.php +%%WWWDIR%%/app/views/popup.dashboard.share.edit.php +%%WWWDIR%%/app/views/popup.discovery.check.php +%%WWWDIR%%/app/views/popup.generic.php +%%WWWDIR%%/app/views/popup.host.edit.php +%%WWWDIR%%/app/views/popup.hostgroup.edit.php +%%WWWDIR%%/app/views/popup.import.compare.php +%%WWWDIR%%/app/views/popup.import.php +%%WWWDIR%%/app/views/popup.itemtestedit.view.php +%%WWWDIR%%/app/views/popup.ldap.edit.php +%%WWWDIR%%/app/views/popup.ldap.test.edit.php +%%WWWDIR%%/app/views/popup.lldoperation.php +%%WWWDIR%%/app/views/popup.lldoverride.php +%%WWWDIR%%/app/views/popup.massupdate.host.php +%%WWWDIR%%/app/views/popup.massupdate.service.php +%%WWWDIR%%/app/views/popup.media.php +%%WWWDIR%%/app/views/popup.mediatypemapping.edit.php +%%WWWDIR%%/app/views/popup.operation.edit.php +%%WWWDIR%%/app/views/popup.proxy.edit.php +%%WWWDIR%%/app/views/popup.proxygroup.edit.php +%%WWWDIR%%/app/views/popup.scheduledreport.edit.php +%%WWWDIR%%/app/views/popup.scheduledreport.list.php +%%WWWDIR%%/app/views/popup.scheduledreport.subscription.php +%%WWWDIR%%/app/views/popup.scheduledreport.test.php +%%WWWDIR%%/app/views/popup.scriptexec.php +%%WWWDIR%%/app/views/popup.service.edit.php +%%WWWDIR%%/app/views/popup.service.statusrule.edit.php +%%WWWDIR%%/app/views/popup.services.php +%%WWWDIR%%/app/views/popup.sla.edit.php +%%WWWDIR%%/app/views/popup.sla.excludeddowntime.edit.php +%%WWWDIR%%/app/views/popup.tabfilter.edit.php +%%WWWDIR%%/app/views/popup.templategroup.edit.php +%%WWWDIR%%/app/views/popup.testtriggerexpr.php +%%WWWDIR%%/app/views/popup.token.edit.php +%%WWWDIR%%/app/views/popup.token.view.php +%%WWWDIR%%/app/views/popup.triggerexpr.php +%%WWWDIR%%/app/views/popup.usergroupmapping.edit.php +%%WWWDIR%%/app/views/popup.valuemap.edit.php +%%WWWDIR%%/app/views/popup.view.php +%%WWWDIR%%/app/views/report.status.php +%%WWWDIR%%/app/views/reports.actionlog.list.csv.php +%%WWWDIR%%/app/views/reports.actionlog.list.php +%%WWWDIR%%/app/views/reports.auditlog.list.php +%%WWWDIR%%/app/views/reports.scheduledreport.edit.php +%%WWWDIR%%/app/views/reports.scheduledreport.list.php +%%WWWDIR%%/app/views/reports.toptriggers.list.php +%%WWWDIR%%/app/views/script.userinput.edit.php +%%WWWDIR%%/app/views/search.php +%%WWWDIR%%/app/views/service.list.edit.php +%%WWWDIR%%/app/views/service.list.edit.refresh.php +%%WWWDIR%%/app/views/service.list.php +%%WWWDIR%%/app/views/service.list.refresh.php +%%WWWDIR%%/app/views/sla.list.php +%%WWWDIR%%/app/views/slareport.list.php +%%WWWDIR%%/app/views/system.warning.php +%%WWWDIR%%/app/views/template.edit.php +%%WWWDIR%%/app/views/template.list.php +%%WWWDIR%%/app/views/template.massupdate.php +%%WWWDIR%%/app/views/trigger.edit.php +%%WWWDIR%%/app/views/trigger.expression.constructor.php +%%WWWDIR%%/app/views/trigger.list.php +%%WWWDIR%%/app/views/trigger.massupdate.php +%%WWWDIR%%/app/views/trigger.prototype.edit.php +%%WWWDIR%%/app/views/trigger.prototype.list.php +%%WWWDIR%%/app/views/usergroup.edit.php +%%WWWDIR%%/app/views/usergroup.list.php +%%WWWDIR%%/app/views/usergroup.tagfilter.edit.php +%%WWWDIR%%/app/views/usergroup.tagfilter.list.php +%%WWWDIR%%/app/views/webscenario.step.edit.php +%%WWWDIR%%/app/views/widget.edit.php +%%WWWDIR%%/app/views/widget.view.php +%%WWWDIR%%/assets/fonts/DejaVuSans.ttf +%%WWWDIR%%/assets/fonts/zabbix-icons.svg +%%WWWDIR%%/assets/fonts/zabbix-icons.ttf +%%WWWDIR%%/assets/fonts/zabbix-icons.woff +%%WWWDIR%%/assets/fonts/zabbix-icons.woff2 +%%WWWDIR%%/assets/img/apple-touch-icon-120x120-precomposed.png +%%WWWDIR%%/assets/img/apple-touch-icon-152x152-precomposed.png +%%WWWDIR%%/assets/img/apple-touch-icon-180x180-precomposed.png +%%WWWDIR%%/assets/img/apple-touch-icon-76x76-precomposed.png +%%WWWDIR%%/assets/img/browser-sprite.png +%%WWWDIR%%/assets/img/ms-tile-144x144.png +%%WWWDIR%%/assets/img/touch-icon-192x192.png +%%WWWDIR%%/assets/styles/blue-theme.css +%%WWWDIR%%/assets/styles/dark-theme.css +%%WWWDIR%%/assets/styles/hc-dark.css +%%WWWDIR%%/assets/styles/hc-light.css +%%WWWDIR%%/assets/styles/vendors/Leaflet/LICENSE +%%WWWDIR%%/assets/styles/vendors/Leaflet/leaflet.css +%%WWWDIR%%/audio/alarm_average.mp3 +%%WWWDIR%%/audio/alarm_disaster.mp3 +%%WWWDIR%%/audio/alarm_high.mp3 +%%WWWDIR%%/audio/alarm_information.mp3 +%%WWWDIR%%/audio/alarm_ok.mp3 +%%WWWDIR%%/audio/alarm_warning.mp3 +%%WWWDIR%%/audio/no_sound.mp3 +%%WWWDIR%%/browserwarning.php +%%WWWDIR%%/chart.php +%%WWWDIR%%/chart2.php +%%WWWDIR%%/chart3.php +%%WWWDIR%%/chart4.php +%%WWWDIR%%/chart6.php +%%WWWDIR%%/chart7.php +%%WWWDIR%%/composer.json +%%WWWDIR%%/composer.lock +%%WWWDIR%%/conf/.htaccess +%%WWWDIR%%/conf/maintenance.inc.php +%%WWWDIR%%/conf/zabbix.conf.php.example +%%WWWDIR%%/data/top_passwords.txt +%%WWWDIR%%/favicon.ico +%%WWWDIR%%/graphs.php +%%WWWDIR%%/history.php +%%WWWDIR%%/host_discovery.php +%%WWWDIR%%/host_prototypes.php +%%WWWDIR%%/hostinventories.php +%%WWWDIR%%/hostinventoriesoverview.php +%%WWWDIR%%/httpconf.php +%%WWWDIR%%/httpdetails.php +%%WWWDIR%%/image.php +%%WWWDIR%%/imgstore.php +%%WWWDIR%%/include/.htaccess +%%WWWDIR%%/include/actions.inc.php +%%WWWDIR%%/include/blocks.inc.php +%%WWWDIR%%/include/classes/api/API.php +%%WWWDIR%%/include/classes/api/APIException.php +%%WWWDIR%%/include/classes/api/CApiClientResponse.php +%%WWWDIR%%/include/classes/api/CApiService.php +%%WWWDIR%%/include/classes/api/CApiServiceFactory.php +%%WWWDIR%%/include/classes/api/CAudit.php +%%WWWDIR%%/include/classes/api/CAuditOld.php +%%WWWDIR%%/include/classes/api/CItemTypeFactory.php +%%WWWDIR%%/include/classes/api/CRelationMap.php +%%WWWDIR%%/include/classes/api/clients/CApiClient.php +%%WWWDIR%%/include/classes/api/clients/CLocalApiClient.php +%%WWWDIR%%/include/classes/api/helpers/CApiHostHelper.php +%%WWWDIR%%/include/classes/api/helpers/CApiTagHelper.php +%%WWWDIR%%/include/classes/api/item_types/CItemType.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeBrowser.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeCalculated.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeDbMonitor.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeDependent.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeExternal.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeHttpAgent.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeInternal.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeIpmi.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeJmx.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeScript.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeSimple.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeSnmp.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeSnmpTrap.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeSsh.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeTelnet.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeTrapper.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeZabbix.php +%%WWWDIR%%/include/classes/api/item_types/CItemTypeZabbixActive.php +%%WWWDIR%%/include/classes/api/managers/CGraphManager.php +%%WWWDIR%%/include/classes/api/managers/CGraphPrototypeManager.php +%%WWWDIR%%/include/classes/api/managers/CHistoryManager.php +%%WWWDIR%%/include/classes/api/managers/CHttpTestManager.php +%%WWWDIR%%/include/classes/api/managers/CTriggerManager.php +%%WWWDIR%%/include/classes/api/managers/CTriggerPrototypeManager.php +%%WWWDIR%%/include/classes/api/services/CAPIInfo.php +%%WWWDIR%%/include/classes/api/services/CAction.php +%%WWWDIR%%/include/classes/api/services/CAlert.php +%%WWWDIR%%/include/classes/api/services/CAuditLog.php +%%WWWDIR%%/include/classes/api/services/CAuthentication.php +%%WWWDIR%%/include/classes/api/services/CAutoregistration.php +%%WWWDIR%%/include/classes/api/services/CConfiguration.php +%%WWWDIR%%/include/classes/api/services/CConnector.php +%%WWWDIR%%/include/classes/api/services/CCorrelation.php +%%WWWDIR%%/include/classes/api/services/CDCheck.php +%%WWWDIR%%/include/classes/api/services/CDHost.php +%%WWWDIR%%/include/classes/api/services/CDRule.php +%%WWWDIR%%/include/classes/api/services/CDService.php +%%WWWDIR%%/include/classes/api/services/CDashboard.php +%%WWWDIR%%/include/classes/api/services/CDashboardGeneral.php +%%WWWDIR%%/include/classes/api/services/CDiscoveryRule.php +%%WWWDIR%%/include/classes/api/services/CEvent.php +%%WWWDIR%%/include/classes/api/services/CGraph.php +%%WWWDIR%%/include/classes/api/services/CGraphGeneral.php +%%WWWDIR%%/include/classes/api/services/CGraphItem.php +%%WWWDIR%%/include/classes/api/services/CGraphPrototype.php +%%WWWDIR%%/include/classes/api/services/CHaNode.php +%%WWWDIR%%/include/classes/api/services/CHistory.php +%%WWWDIR%%/include/classes/api/services/CHost.php +%%WWWDIR%%/include/classes/api/services/CHostBase.php +%%WWWDIR%%/include/classes/api/services/CHostGeneral.php +%%WWWDIR%%/include/classes/api/services/CHostGroup.php +%%WWWDIR%%/include/classes/api/services/CHostInterface.php +%%WWWDIR%%/include/classes/api/services/CHostPrototype.php +%%WWWDIR%%/include/classes/api/services/CHousekeeping.php +%%WWWDIR%%/include/classes/api/services/CHttpTest.php +%%WWWDIR%%/include/classes/api/services/CIconMap.php +%%WWWDIR%%/include/classes/api/services/CImage.php +%%WWWDIR%%/include/classes/api/services/CItem.php +%%WWWDIR%%/include/classes/api/services/CItemGeneral.php +%%WWWDIR%%/include/classes/api/services/CItemPrototype.php +%%WWWDIR%%/include/classes/api/services/CMaintenance.php +%%WWWDIR%%/include/classes/api/services/CMap.php +%%WWWDIR%%/include/classes/api/services/CMapElement.php +%%WWWDIR%%/include/classes/api/services/CMediatype.php +%%WWWDIR%%/include/classes/api/services/CMfa.php +%%WWWDIR%%/include/classes/api/services/CModule.php +%%WWWDIR%%/include/classes/api/services/CProblem.php +%%WWWDIR%%/include/classes/api/services/CProxy.php +%%WWWDIR%%/include/classes/api/services/CProxyGroup.php +%%WWWDIR%%/include/classes/api/services/CRegexp.php +%%WWWDIR%%/include/classes/api/services/CReport.php +%%WWWDIR%%/include/classes/api/services/CRole.php +%%WWWDIR%%/include/classes/api/services/CScript.php +%%WWWDIR%%/include/classes/api/services/CService.php +%%WWWDIR%%/include/classes/api/services/CSettings.php +%%WWWDIR%%/include/classes/api/services/CSla.php +%%WWWDIR%%/include/classes/api/services/CTask.php +%%WWWDIR%%/include/classes/api/services/CTemplate.php +%%WWWDIR%%/include/classes/api/services/CTemplateDashboard.php +%%WWWDIR%%/include/classes/api/services/CTemplateGroup.php +%%WWWDIR%%/include/classes/api/services/CToken.php +%%WWWDIR%%/include/classes/api/services/CTrend.php +%%WWWDIR%%/include/classes/api/services/CTrigger.php +%%WWWDIR%%/include/classes/api/services/CTriggerGeneral.php +%%WWWDIR%%/include/classes/api/services/CTriggerPrototype.php +%%WWWDIR%%/include/classes/api/services/CUser.php +%%WWWDIR%%/include/classes/api/services/CUserDirectory.php +%%WWWDIR%%/include/classes/api/services/CUserGroup.php +%%WWWDIR%%/include/classes/api/services/CUserMacro.php +%%WWWDIR%%/include/classes/api/services/CValueMap.php +%%WWWDIR%%/include/classes/api/wrappers/CApiWrapper.php +%%WWWDIR%%/include/classes/api/wrappers/CFrontendApiWrapper.php +%%WWWDIR%%/include/classes/core/APP.php +%%WWWDIR%%/include/classes/core/CAjaxResponse.php +%%WWWDIR%%/include/classes/core/CAutoloader.php +%%WWWDIR%%/include/classes/core/CComponentRegistry.php +%%WWWDIR%%/include/classes/core/CConfigFile.php +%%WWWDIR%%/include/classes/core/CCookieSession.php +%%WWWDIR%%/include/classes/core/CEncryptedCookieSession.php +%%WWWDIR%%/include/classes/core/CHttpRequest.php +%%WWWDIR%%/include/classes/core/CJsonRpc.php +%%WWWDIR%%/include/classes/core/CModule.php +%%WWWDIR%%/include/classes/core/CModuleManager.php +%%WWWDIR%%/include/classes/core/CRegistryFactory.php +%%WWWDIR%%/include/classes/core/CWidget.php +%%WWWDIR%%/include/classes/core/ConfigFileException.php +%%WWWDIR%%/include/classes/core/Manager.php +%%WWWDIR%%/include/classes/core/ZBase.php +%%WWWDIR%%/include/classes/data/CAggFunctionData.php +%%WWWDIR%%/include/classes/data/CHistFunctionData.php +%%WWWDIR%%/include/classes/data/CItemData.php +%%WWWDIR%%/include/classes/data/CMathFunctionData.php +%%WWWDIR%%/include/classes/data/CWidgetsData.php +%%WWWDIR%%/include/classes/db/DB.php +%%WWWDIR%%/include/classes/db/DBException.php +%%WWWDIR%%/include/classes/db/DbBackend.php +%%WWWDIR%%/include/classes/db/MysqlDbBackend.php +%%WWWDIR%%/include/classes/db/OracleDbBackend.php +%%WWWDIR%%/include/classes/db/PostgresqlDbBackend.php +%%WWWDIR%%/include/classes/debug/CProfiler.php +%%WWWDIR%%/include/classes/export/CConfigurationExport.php +%%WWWDIR%%/include/classes/export/CConfigurationExportBuilder.php +%%WWWDIR%%/include/classes/export/CConfigurationExportException.php +%%WWWDIR%%/include/classes/export/writers/CExportWriter.php +%%WWWDIR%%/include/classes/export/writers/CExportWriterFactory.php +%%WWWDIR%%/include/classes/export/writers/CJsonExportWriter.php +%%WWWDIR%%/include/classes/export/writers/CRawExportWriter.php +%%WWWDIR%%/include/classes/export/writers/CXmlExportWriter.php +%%WWWDIR%%/include/classes/export/writers/CYamlExportWriter.php +%%WWWDIR%%/include/classes/graph/CSvgGraph.php +%%WWWDIR%%/include/classes/graphdraw/CGraphDraw.php +%%WWWDIR%%/include/classes/graphdraw/CLineGraphDraw.php +%%WWWDIR%%/include/classes/graphdraw/CPieGraphDraw.php +%%WWWDIR%%/include/classes/helpers/CArrayHelper.php +%%WWWDIR%%/include/classes/helpers/CAuthenticationHelper.php +%%WWWDIR%%/include/classes/helpers/CBrandHelper.php +%%WWWDIR%%/include/classes/helpers/CConditionHelper.php +%%WWWDIR%%/include/classes/helpers/CCookieHelper.php +%%WWWDIR%%/include/classes/helpers/CCorrelationHelper.php +%%WWWDIR%%/include/classes/helpers/CCsrfTokenHelper.php +%%WWWDIR%%/include/classes/helpers/CCuid.php +%%WWWDIR%%/include/classes/helpers/CDashboardHelper.php +%%WWWDIR%%/include/classes/helpers/CDataCacheHelper.php +%%WWWDIR%%/include/classes/helpers/CDocHelper.php +%%WWWDIR%%/include/classes/helpers/CElasticsearchHelper.php +%%WWWDIR%%/include/classes/helpers/CEncryptHelper.php +%%WWWDIR%%/include/classes/helpers/CGraphGeneralHelper.php +%%WWWDIR%%/include/classes/helpers/CGraphHelper.php +%%WWWDIR%%/include/classes/helpers/CGraphPrototypeHelper.php +%%WWWDIR%%/include/classes/helpers/CHintBoxHelper.php +%%WWWDIR%%/include/classes/helpers/CHostPrototypeHelper.php +%%WWWDIR%%/include/classes/helpers/CHousekeepingHelper.php +%%WWWDIR%%/include/classes/helpers/CItemGeneralHelper.php +%%WWWDIR%%/include/classes/helpers/CItemHelper.php +%%WWWDIR%%/include/classes/helpers/CItemPrototypeHelper.php +%%WWWDIR%%/include/classes/helpers/CLldRuleHelper.php +%%WWWDIR%%/include/classes/helpers/CMaintenanceHelper.php +%%WWWDIR%%/include/classes/helpers/CMapHelper.php +%%WWWDIR%%/include/classes/helpers/CMathHelper.php +%%WWWDIR%%/include/classes/helpers/CMediatypeHelper.php +%%WWWDIR%%/include/classes/helpers/CMenuHelper.php +%%WWWDIR%%/include/classes/helpers/CMenuPopupHelper.php +%%WWWDIR%%/include/classes/helpers/CMessageHelper.php +%%WWWDIR%%/include/classes/helpers/CPagerHelper.php +%%WWWDIR%%/include/classes/helpers/CRegexHelper.php +%%WWWDIR%%/include/classes/helpers/CRoleHelper.php +%%WWWDIR%%/include/classes/helpers/CServiceHelper.php +%%WWWDIR%%/include/classes/helpers/CSessionHelper.php +%%WWWDIR%%/include/classes/helpers/CSettingsHelper.php +%%WWWDIR%%/include/classes/helpers/CSeverityHelper.php +%%WWWDIR%%/include/classes/helpers/CSlaHelper.php +%%WWWDIR%%/include/classes/helpers/CSystemInfoHelper.php +%%WWWDIR%%/include/classes/helpers/CTagFilterFieldHelper.php +%%WWWDIR%%/include/classes/helpers/CTemplateHelper.php +%%WWWDIR%%/include/classes/helpers/CTimePeriodHelper.php +%%WWWDIR%%/include/classes/helpers/CTimezoneHelper.php +%%WWWDIR%%/include/classes/helpers/CTriggerGeneralHelper.php +%%WWWDIR%%/include/classes/helpers/CTriggerHelper.php +%%WWWDIR%%/include/classes/helpers/CTriggerPrototypeHelper.php +%%WWWDIR%%/include/classes/helpers/CUploadFile.php +%%WWWDIR%%/include/classes/helpers/CValueMapHelper.php +%%WWWDIR%%/include/classes/helpers/CViewHelper.php +%%WWWDIR%%/include/classes/html/CActionButtonList.php +%%WWWDIR%%/include/classes/html/CBarGauge.php +%%WWWDIR%%/include/classes/html/CBreadcrumbs.php +%%WWWDIR%%/include/classes/html/CButton.php +%%WWWDIR%%/include/classes/html/CButtonCancel.php +%%WWWDIR%%/include/classes/html/CButtonDelete.php +%%WWWDIR%%/include/classes/html/CButtonDropdown.php +%%WWWDIR%%/include/classes/html/CButtonExport.php +%%WWWDIR%%/include/classes/html/CButtonIcon.php +%%WWWDIR%%/include/classes/html/CButtonLink.php +%%WWWDIR%%/include/classes/html/CButtonQMessage.php +%%WWWDIR%%/include/classes/html/CCheckBox.php +%%WWWDIR%%/include/classes/html/CCheckBoxList.php +%%WWWDIR%%/include/classes/html/CClock.php +%%WWWDIR%%/include/classes/html/CCol.php +%%WWWDIR%%/include/classes/html/CColHeader.php +%%WWWDIR%%/include/classes/html/CColor.php +%%WWWDIR%%/include/classes/html/CDateSelector.php +%%WWWDIR%%/include/classes/html/CDiv.php +%%WWWDIR%%/include/classes/html/CExpandableSubfilter.php +%%WWWDIR%%/include/classes/html/CFile.php +%%WWWDIR%%/include/classes/html/CFilter.php +%%WWWDIR%%/include/classes/html/CForm.php +%%WWWDIR%%/include/classes/html/CFormActions.php +%%WWWDIR%%/include/classes/html/CFormField.php +%%WWWDIR%%/include/classes/html/CFormFieldset.php +%%WWWDIR%%/include/classes/html/CFormFieldsetCollapsible.php +%%WWWDIR%%/include/classes/html/CFormGrid.php +%%WWWDIR%%/include/classes/html/CFormList.php +%%WWWDIR%%/include/classes/html/CHorList.php +%%WWWDIR%%/include/classes/html/CHostAvailability.php +%%WWWDIR%%/include/classes/html/CHtmlEntity.php +%%WWWDIR%%/include/classes/html/CHtmlPage.php +%%WWWDIR%%/include/classes/html/CHtmlPageHeader.php +%%WWWDIR%%/include/classes/html/CIFrame.php +%%WWWDIR%%/include/classes/html/CIcon.php +%%WWWDIR%%/include/classes/html/CImageTextTable.php +%%WWWDIR%%/include/classes/html/CImg.php +%%WWWDIR%%/include/classes/html/CInput.php +%%WWWDIR%%/include/classes/html/CInputSecret.php +%%WWWDIR%%/include/classes/html/CJsScript.php +%%WWWDIR%%/include/classes/html/CLabel.php +%%WWWDIR%%/include/classes/html/CLink.php +%%WWWDIR%%/include/classes/html/CLinkAction.php +%%WWWDIR%%/include/classes/html/CList.php +%%WWWDIR%%/include/classes/html/CListItem.php +%%WWWDIR%%/include/classes/html/CMacroValue.php +%%WWWDIR%%/include/classes/html/CMenu.php +%%WWWDIR%%/include/classes/html/CMenuItem.php +%%WWWDIR%%/include/classes/html/CMultiSelect.php +%%WWWDIR%%/include/classes/html/CMultilineInput.php +%%WWWDIR%%/include/classes/html/CNumericBox.php +%%WWWDIR%%/include/classes/html/CObject.php +%%WWWDIR%%/include/classes/html/CPassBox.php +%%WWWDIR%%/include/classes/html/CPatternSelect.php +%%WWWDIR%%/include/classes/html/CPre.php +%%WWWDIR%%/include/classes/html/CRadioButtonList.php +%%WWWDIR%%/include/classes/html/CRangeControl.php +%%WWWDIR%%/include/classes/html/CRedirectButton.php +%%WWWDIR%%/include/classes/html/CRow.php +%%WWWDIR%%/include/classes/html/CRowHeader.php +%%WWWDIR%%/include/classes/html/CScriptTag.php +%%WWWDIR%%/include/classes/html/CSection.php +%%WWWDIR%%/include/classes/html/CSectionCollapsible.php +%%WWWDIR%%/include/classes/html/CSelect.php +%%WWWDIR%%/include/classes/html/CSelectOption.php +%%WWWDIR%%/include/classes/html/CSelectOptionGroup.php +%%WWWDIR%%/include/classes/html/CSeverity.php +%%WWWDIR%%/include/classes/html/CSimpleButton.php +%%WWWDIR%%/include/classes/html/CSpan.php +%%WWWDIR%%/include/classes/html/CSubmit.php +%%WWWDIR%%/include/classes/html/CSubmitButton.php +%%WWWDIR%%/include/classes/html/CSup.php +%%WWWDIR%%/include/classes/html/CTabFilter.php +%%WWWDIR%%/include/classes/html/CTabView.php +%%WWWDIR%%/include/classes/html/CTable.php +%%WWWDIR%%/include/classes/html/CTableColumn.php +%%WWWDIR%%/include/classes/html/CTableInfo.php +%%WWWDIR%%/include/classes/html/CTag.php +%%WWWDIR%%/include/classes/html/CTemplateTag.php +%%WWWDIR%%/include/classes/html/CTextArea.php +%%WWWDIR%%/include/classes/html/CTextAreaFlexible.php +%%WWWDIR%%/include/classes/html/CTextBox.php +%%WWWDIR%%/include/classes/html/CVar.php +%%WWWDIR%%/include/classes/html/CVisibilityBox.php +%%WWWDIR%%/include/classes/html/CWarning.php +%%WWWDIR%%/include/classes/html/interfaces/CButtonInterface.php +%%WWWDIR%%/include/classes/html/svg/CSvg.php +%%WWWDIR%%/include/classes/html/svg/CSvgArrow.php +%%WWWDIR%%/include/classes/html/svg/CSvgCircle.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphArea.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphAxis.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphClipArea.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphGrid.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphLine.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphMetricsBar.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphMetricsLine.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphMetricsPoint.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphPercentile.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphProblems.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphSimpleTrigger.php +%%WWWDIR%%/include/classes/html/svg/CSvgGraphWorkingTime.php +%%WWWDIR%%/include/classes/html/svg/CSvgGroup.php +%%WWWDIR%%/include/classes/html/svg/CSvgLine.php +%%WWWDIR%%/include/classes/html/svg/CSvgPath.php +%%WWWDIR%%/include/classes/html/svg/CSvgPolygon.php +%%WWWDIR%%/include/classes/html/svg/CSvgRect.php +%%WWWDIR%%/include/classes/html/svg/CSvgTag.php +%%WWWDIR%%/include/classes/html/svg/CSvgText.php +%%WWWDIR%%/include/classes/html/widgets/CWidgetFieldView.php +%%WWWDIR%%/include/classes/html/widgets/CWidgetFieldsGroupView.php +%%WWWDIR%%/include/classes/html/widgets/CWidgetFormFieldsetCollapsibleView.php +%%WWWDIR%%/include/classes/html/widgets/CWidgetFormView.php +%%WWWDIR%%/include/classes/html/widgets/CWidgetView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldCheckBoxListView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldCheckBoxView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldColorView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldColumnsListView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldDatePickerView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldHostPatternSelectView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldIntegerBoxView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldLatLngView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldMultiSelectActionView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldMultiSelectGraphPrototypeView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldMultiSelectGraphView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldMultiSelectGroupView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldMultiSelectHostView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldMultiSelectItemPrototypeView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldMultiSelectItemView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldMultiSelectMapView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldMultiSelectMediaTypeView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldMultiSelectOverrideHostView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldMultiSelectServiceView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldMultiSelectSlaView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldMultiSelectUserView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldMultiSelectView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldNumericBoxView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldPatternSelectItemView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldPatternSelectView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldRadioButtonListView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldRangeControlView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldSelectView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldSeveritiesView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldTagsView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldTextAreaView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldTextBoxView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldThresholdsView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldTimePeriodView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldTimeZoneView.php +%%WWWDIR%%/include/classes/html/widgets/fields/CWidgetFieldUrlView.php +%%WWWDIR%%/include/classes/import/CConfigurationImport.php +%%WWWDIR%%/include/classes/import/CConfigurationImportcompare.php +%%WWWDIR%%/include/classes/import/CImportDataAdapter.php +%%WWWDIR%%/include/classes/import/CImportReferencer.php +%%WWWDIR%%/include/classes/import/CImportedObjectContainer.php +%%WWWDIR%%/include/classes/import/converters/C10ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C10ItemKeyConverter.php +%%WWWDIR%%/include/classes/import/converters/C10TriggerConverter.php +%%WWWDIR%%/include/classes/import/converters/C20ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C20ItemKeyConverter.php +%%WWWDIR%%/include/classes/import/converters/C20TriggerConverter.php +%%WWWDIR%%/include/classes/import/converters/C30ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C32ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C34ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C40ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C42ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C44ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C50ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C52AggregateItemKeyConverter.php +%%WWWDIR%%/include/classes/import/converters/C52CalculatedItemConverter.php +%%WWWDIR%%/include/classes/import/converters/C52EventNameConverter.php +%%WWWDIR%%/include/classes/import/converters/C52ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C52TriggerExpressionConverter.php +%%WWWDIR%%/include/classes/import/converters/C54ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C54SimpleMacroConverter.php +%%WWWDIR%%/include/classes/import/converters/C60ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C62ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/C64ImportConverter.php +%%WWWDIR%%/include/classes/import/converters/CConstantImportConverter.php +%%WWWDIR%%/include/classes/import/converters/CConverter.php +%%WWWDIR%%/include/classes/import/converters/CDefaultImportConverter.php +%%WWWDIR%%/include/classes/import/converters/CImportConverterFactory.php +%%WWWDIR%%/include/classes/import/converters/CImportDataNormalizer.php +%%WWWDIR%%/include/classes/import/converters/CTemplateScreenConverter.php +%%WWWDIR%%/include/classes/import/importers/CHostImporter.php +%%WWWDIR%%/include/classes/import/importers/CImporter.php +%%WWWDIR%%/include/classes/import/importers/CMapImporter.php +%%WWWDIR%%/include/classes/import/importers/CTemplateDashboardImporter.php +%%WWWDIR%%/include/classes/import/importers/CTemplateImporter.php +%%WWWDIR%%/include/classes/import/readers/CImportReader.php +%%WWWDIR%%/include/classes/import/readers/CImportReaderFactory.php +%%WWWDIR%%/include/classes/import/readers/CJsonImportReader.php +%%WWWDIR%%/include/classes/import/readers/CXmlImportReader.php +%%WWWDIR%%/include/classes/import/readers/CYamlImportReader.php +%%WWWDIR%%/include/classes/import/validators/C10XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C20XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C30XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C32XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C34XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C40XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C42XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C44XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C50XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C52XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C54XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C60XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C62XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C64XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/C70XmlValidator.php +%%WWWDIR%%/include/classes/import/validators/CImportValidatorFactory.php +%%WWWDIR%%/include/classes/import/validators/CXmlValidator.php +%%WWWDIR%%/include/classes/import/validators/CXmlValidatorGeneral.php +%%WWWDIR%%/include/classes/ldap/CLdap.php +%%WWWDIR%%/include/classes/macros/CMacroFunction.php +%%WWWDIR%%/include/classes/macros/CMacrosResolver.php +%%WWWDIR%%/include/classes/macros/CMacrosResolverGeneral.php +%%WWWDIR%%/include/classes/macros/CMacrosResolverHelper.php +%%WWWDIR%%/include/classes/mvc/CAccessDeniedException.php +%%WWWDIR%%/include/classes/mvc/CController.php +%%WWWDIR%%/include/classes/mvc/CControllerResponse.php +%%WWWDIR%%/include/classes/mvc/CControllerResponseData.php +%%WWWDIR%%/include/classes/mvc/CControllerResponseFatal.php +%%WWWDIR%%/include/classes/mvc/CControllerResponseRedirect.php +%%WWWDIR%%/include/classes/mvc/CLegacyAction.php +%%WWWDIR%%/include/classes/mvc/CPartial.php +%%WWWDIR%%/include/classes/mvc/CRouter.php +%%WWWDIR%%/include/classes/mvc/CView.php +%%WWWDIR%%/include/classes/parsers/C10ExpressionMacroParser.php +%%WWWDIR%%/include/classes/parsers/C10FunctionMacroParser.php +%%WWWDIR%%/include/classes/parsers/C10FunctionParser.php +%%WWWDIR%%/include/classes/parsers/C10TriggerExpression.php +%%WWWDIR%%/include/classes/parsers/CADNameAttributeParser.php +%%WWWDIR%%/include/classes/parsers/CAbsoluteTimeParser.php +%%WWWDIR%%/include/classes/parsers/CConditionFormula.php +%%WWWDIR%%/include/classes/parsers/CDnsParser.php +%%WWWDIR%%/include/classes/parsers/CEscapedStringParser.php +%%WWWDIR%%/include/classes/parsers/CExpressionMacroFunctionParser.php +%%WWWDIR%%/include/classes/parsers/CExpressionMacroParser.php +%%WWWDIR%%/include/classes/parsers/CExpressionParser.php +%%WWWDIR%%/include/classes/parsers/CFilterParser.php +%%WWWDIR%%/include/classes/parsers/CFlexibleIntervalParser.php +%%WWWDIR%%/include/classes/parsers/CFunctionIdParser.php +%%WWWDIR%%/include/classes/parsers/CGeomapCoordinatesParser.php +%%WWWDIR%%/include/classes/parsers/CHistFunctionParser.php +%%WWWDIR%%/include/classes/parsers/CHostGroupNameParser.php +%%WWWDIR%%/include/classes/parsers/CHostNameParser.php +%%WWWDIR%%/include/classes/parsers/CIPParser.php +%%WWWDIR%%/include/classes/parsers/CIPRangeParser.php +%%WWWDIR%%/include/classes/parsers/CIPv4Parser.php +%%WWWDIR%%/include/classes/parsers/CIPv6Parser.php +%%WWWDIR%%/include/classes/parsers/CItemKey.php +%%WWWDIR%%/include/classes/parsers/CLLDMacroFunctionParser.php +%%WWWDIR%%/include/classes/parsers/CLLDMacroParser.php +%%WWWDIR%%/include/classes/parsers/CMacroFunctionParser.php +%%WWWDIR%%/include/classes/parsers/CMacroParser.php +%%WWWDIR%%/include/classes/parsers/CNumberParser.php +%%WWWDIR%%/include/classes/parsers/CParser.php +%%WWWDIR%%/include/classes/parsers/CPeriodParser.php +%%WWWDIR%%/include/classes/parsers/CPrometheusOutputParser.php +%%WWWDIR%%/include/classes/parsers/CPrometheusPatternParser.php +%%WWWDIR%%/include/classes/parsers/CQueryParser.php +%%WWWDIR%%/include/classes/parsers/CRangeParser.php +%%WWWDIR%%/include/classes/parsers/CRangeTimeParser.php +%%WWWDIR%%/include/classes/parsers/CRangesParser.php +%%WWWDIR%%/include/classes/parsers/CReferenceParser.php +%%WWWDIR%%/include/classes/parsers/CRelativeTimeParser.php +%%WWWDIR%%/include/classes/parsers/CSchedulingIntervalParser.php +%%WWWDIR%%/include/classes/parsers/CSetParser.php +%%WWWDIR%%/include/classes/parsers/CSimpleIntervalParser.php +%%WWWDIR%%/include/classes/parsers/CTimePeriodParser.php +%%WWWDIR%%/include/classes/parsers/CTimePeriodsParser.php +%%WWWDIR%%/include/classes/parsers/CUpdateIntervalParser.php +%%WWWDIR%%/include/classes/parsers/CUserMacroFunctionParser.php +%%WWWDIR%%/include/classes/parsers/CUserMacroParser.php +%%WWWDIR%%/include/classes/parsers/CValidationRule.php +%%WWWDIR%%/include/classes/parsers/CVaultSecretParser.php +%%WWWDIR%%/include/classes/parsers/results/C10TriggerExprParserResult.php +%%WWWDIR%%/include/classes/parsers/results/CExpressionParserResult.php +%%WWWDIR%%/include/classes/parsers/results/CParserResult.php +%%WWWDIR%%/include/classes/regexp/CGlobalRegexp.php +%%WWWDIR%%/include/classes/routing/CUrl.php +%%WWWDIR%%/include/classes/routing/CUrlFactory.php +%%WWWDIR%%/include/classes/scim/API.php +%%WWWDIR%%/include/classes/scim/HttpResponse.php +%%WWWDIR%%/include/classes/scim/ScimApiService.php +%%WWWDIR%%/include/classes/scim/clients/ScimApiClient.php +%%WWWDIR%%/include/classes/scim/services/Group.php +%%WWWDIR%%/include/classes/scim/services/ServiceProviderConfig.php +%%WWWDIR%%/include/classes/scim/services/User.php +%%WWWDIR%%/include/classes/screens/CScreenBase.php +%%WWWDIR%%/include/classes/screens/CScreenBuilder.php +%%WWWDIR%%/include/classes/screens/CScreenDiscovery.php +%%WWWDIR%%/include/classes/screens/CScreenHistory.php +%%WWWDIR%%/include/classes/screens/CScreenHttpTest.php +%%WWWDIR%%/include/classes/screens/CScreenHttpTestDetails.php +%%WWWDIR%%/include/classes/screens/CScreenMap.php +%%WWWDIR%%/include/classes/screens/CScreenProblem.php +%%WWWDIR%%/include/classes/server/CZabbixServer.php +%%WWWDIR%%/include/classes/services/CTabFilterProfile.php +%%WWWDIR%%/include/classes/setup/CFrontendSetup.php +%%WWWDIR%%/include/classes/setup/CSetupWizard.php +%%WWWDIR%%/include/classes/user/CFavorite.php +%%WWWDIR%%/include/classes/user/CProfile.php +%%WWWDIR%%/include/classes/user/CProvisioning.php +%%WWWDIR%%/include/classes/user/CWebUser.php +%%WWWDIR%%/include/classes/validators/CActionCondValidator.php +%%WWWDIR%%/include/classes/validators/CApiInputValidator.php +%%WWWDIR%%/include/classes/validators/CColorValidator.php +%%WWWDIR%%/include/classes/validators/CEmailValidator.php +%%WWWDIR%%/include/classes/validators/CEventCorrCondValidator.php +%%WWWDIR%%/include/classes/validators/CEventNameValidator.php +%%WWWDIR%%/include/classes/validators/CExpressionValidator.php +%%WWWDIR%%/include/classes/validators/CHistFunctionValidator.php +%%WWWDIR%%/include/classes/validators/CHtmlUrlValidator.php +%%WWWDIR%%/include/classes/validators/CIdValidator.php +%%WWWDIR%%/include/classes/validators/CLdapAuthValidator.php +%%WWWDIR%%/include/classes/validators/CLimitedSetValidator.php +%%WWWDIR%%/include/classes/validators/CMathFunctionValidator.php +%%WWWDIR%%/include/classes/validators/CNewValidator.php +%%WWWDIR%%/include/classes/validators/CPartialValidatorInterface.php +%%WWWDIR%%/include/classes/validators/CPasswordComplexityValidator.php +%%WWWDIR%%/include/classes/validators/CRegexValidator.php +%%WWWDIR%%/include/classes/validators/CStringValidator.php +%%WWWDIR%%/include/classes/validators/CValidator.php +%%WWWDIR%%/include/classes/validators/host/CHostNormalValidator.php +%%WWWDIR%%/include/classes/validators/object/CUpdateDiscoveredValidator.php +%%WWWDIR%%/include/classes/vaults/CVault.php +%%WWWDIR%%/include/classes/vaults/CVaultCyberArk.php +%%WWWDIR%%/include/classes/vaults/CVaultHashiCorp.php +%%WWWDIR%%/include/classes/widgets/CWidgetField.php +%%WWWDIR%%/include/classes/widgets/CWidgetForm.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldCheckBox.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldCheckBoxList.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldColor.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldColumnsList.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldDatePicker.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldHostPatternSelect.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldIntegerBox.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldLatLng.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldMultiSelect.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldMultiSelectAction.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldMultiSelectGraph.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldMultiSelectGraphPrototype.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldMultiSelectGroup.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldMultiSelectHost.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldMultiSelectItem.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldMultiSelectItemPrototype.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldMultiSelectMap.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldMultiSelectMediaType.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldMultiSelectOverrideHost.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldMultiSelectService.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldMultiSelectSla.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldMultiSelectUser.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldNavTree.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldNumericBox.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldPatternSelect.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldPatternSelectItem.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldRadioButtonList.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldRangeControl.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldReference.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldSelect.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldSeverities.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldTags.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldTextArea.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldTextBox.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldThresholds.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldTimePeriod.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldTimeZone.php +%%WWWDIR%%/include/classes/widgets/fields/CWidgetFieldUrl.php +%%WWWDIR%%/include/classes/xml/CXmlConstantName.php +%%WWWDIR%%/include/classes/xml/CXmlConstantValue.php +%%WWWDIR%%/include/config.inc.php +%%WWWDIR%%/include/db.inc.php +%%WWWDIR%%/include/debug.inc.php +%%WWWDIR%%/include/defines.inc.php +%%WWWDIR%%/include/discovery.inc.php +%%WWWDIR%%/include/draw.inc.php +%%WWWDIR%%/include/events.inc.php +%%WWWDIR%%/include/forms.inc.php +%%WWWDIR%%/include/func.inc.php +%%WWWDIR%%/include/gettextwrapper.inc.php +%%WWWDIR%%/include/graphs.inc.php +%%WWWDIR%%/include/hostgroups.inc.php +%%WWWDIR%%/include/hosts.inc.php +%%WWWDIR%%/include/html.inc.php +%%WWWDIR%%/include/httptest.inc.php +%%WWWDIR%%/include/images.inc.php +%%WWWDIR%%/include/items.inc.php +%%WWWDIR%%/include/js.inc.php +%%WWWDIR%%/include/locales.inc.php +%%WWWDIR%%/include/maps.inc.php +%%WWWDIR%%/include/page_footer.php +%%WWWDIR%%/include/page_header.php +%%WWWDIR%%/include/perm.inc.php +%%WWWDIR%%/include/schema.inc.php +%%WWWDIR%%/include/sounds.inc.php +%%WWWDIR%%/include/translateDefines.inc.php +%%WWWDIR%%/include/triggers.inc.php +%%WWWDIR%%/include/users.inc.php +%%WWWDIR%%/include/validate.inc.php +%%WWWDIR%%/include/views/configuration.graph.edit.php +%%WWWDIR%%/include/views/configuration.graph.list.php +%%WWWDIR%%/include/views/configuration.host.discovery.edit.php +%%WWWDIR%%/include/views/configuration.host.discovery.list.php +%%WWWDIR%%/include/views/configuration.host.prototype.edit.php +%%WWWDIR%%/include/views/configuration.host.prototype.list.php +%%WWWDIR%%/include/views/configuration.httpconf.edit.php +%%WWWDIR%%/include/views/configuration.httpconf.list.php +%%WWWDIR%%/include/views/general.browserwarning.php +%%WWWDIR%%/include/views/general.login.php +%%WWWDIR%%/include/views/general.warning.php +%%WWWDIR%%/include/views/inventory.host.list.php +%%WWWDIR%%/include/views/inventory.host.view.php +%%WWWDIR%%/include/views/js/common.init.js.php +%%WWWDIR%%/include/views/js/common.item.edit.js.php +%%WWWDIR%%/include/views/js/configuration.graph.edit.js.php +%%WWWDIR%%/include/views/js/configuration.graph.list.js.php +%%WWWDIR%%/include/views/js/configuration.host.discovery.edit.js.php +%%WWWDIR%%/include/views/js/configuration.host.discovery.edit.overr.js.php +%%WWWDIR%%/include/views/js/configuration.host.discovery.list.js.php +%%WWWDIR%%/include/views/js/configuration.host.prototype.edit.js.php +%%WWWDIR%%/include/views/js/configuration.host.prototype.list.js.php +%%WWWDIR%%/include/views/js/configuration.httpconf.edit.js.php +%%WWWDIR%%/include/views/js/configuration.httpconf.list.js.php +%%WWWDIR%%/include/views/js/inventory.host.view.js.php +%%WWWDIR%%/include/views/js/item.preprocessing.js.php +%%WWWDIR%%/include/views/js/itemtest.js.php +%%WWWDIR%%/include/views/js/mfa.login.js.php +%%WWWDIR%%/include/views/js/monitoring.history.js.php +%%WWWDIR%%/include/views/js/monitoring.sysmap.edit.js.php +%%WWWDIR%%/include/views/js/monitoring.sysmaps.js.php +%%WWWDIR%%/include/views/js/tr_events.js.php +%%WWWDIR%%/include/views/mfa.login.php +%%WWWDIR%%/include/views/monitoring.history.php +%%WWWDIR%%/include/views/monitoring.sysmap.constructor.php +%%WWWDIR%%/include/views/monitoring.sysmap.edit.php +%%WWWDIR%%/include/views/monitoring.sysmap.list.php +%%WWWDIR%%/index.php +%%WWWDIR%%/index_http.php +%%WWWDIR%%/index_mfa.php +%%WWWDIR%%/index_sso.php +%%WWWDIR%%/js/browsers.js +%%WWWDIR%%/js/chkbxrange.js +%%WWWDIR%%/js/class.base-component.js +%%WWWDIR%%/js/class.browsertab.js +%%WWWDIR%%/js/class.calendar.js +%%WWWDIR%%/js/class.cdate.js +%%WWWDIR%%/js/class.cdebug.js +%%WWWDIR%%/js/class.cmap.js +%%WWWDIR%%/js/class.cnavtree.js +%%WWWDIR%%/js/class.cookie.js +%%WWWDIR%%/js/class.coverride.js +%%WWWDIR%%/js/class.crangecontrol.js +%%WWWDIR%%/js/class.csuggest.js +%%WWWDIR%%/js/class.csvggraph.js +%%WWWDIR%%/js/class.curl.js +%%WWWDIR%%/js/class.cverticalaccordion.js +%%WWWDIR%%/js/class.cviewswitcher.js +%%WWWDIR%%/js/class.dashboard.js +%%WWWDIR%%/js/class.dashboard.page.js +%%WWWDIR%%/js/class.dashboard.print.js +%%WWWDIR%%/js/class.dashboard.widget.placeholder.js +%%WWWDIR%%/js/class.event-hub.js +%%WWWDIR%%/js/class.expandable.subfilter.js +%%WWWDIR%%/js/class.form.fieldset.collapsible.js +%%WWWDIR%%/js/class.geomaps.js +%%WWWDIR%%/js/class.localstorage.js +%%WWWDIR%%/js/class.menu-item.js +%%WWWDIR%%/js/class.menu.js +%%WWWDIR%%/js/class.navigationtree.js +%%WWWDIR%%/js/class.notification.collection.js +%%WWWDIR%%/js/class.notification.js +%%WWWDIR%%/js/class.notifications.audio.js +%%WWWDIR%%/js/class.notifications.js +%%WWWDIR%%/js/class.overlay.js +%%WWWDIR%%/js/class.overlaycollection.js +%%WWWDIR%%/js/class.rpc.js +%%WWWDIR%%/js/class.script.js +%%WWWDIR%%/js/class.scrollable.js +%%WWWDIR%%/js/class.sidebar.js +%%WWWDIR%%/js/class.software-version-check.js +%%WWWDIR%%/js/class.sortable.js +%%WWWDIR%%/js/class.tab-indicators.js +%%WWWDIR%%/js/class.tabfilter.js +%%WWWDIR%%/js/class.tabfilteritem.js +%%WWWDIR%%/js/class.tagfilteritem.js +%%WWWDIR%%/js/class.template.js +%%WWWDIR%%/js/class.widget-base.js +%%WWWDIR%%/js/class.widget-field.checkbox-list.js +%%WWWDIR%%/js/class.widget-field.multiselect.js +%%WWWDIR%%/js/class.widget-field.time-period.js +%%WWWDIR%%/js/class.widget-select.popup.js +%%WWWDIR%%/js/class.widget.inaccessible.js +%%WWWDIR%%/js/class.widget.iterator.js +%%WWWDIR%%/js/class.widget.js +%%WWWDIR%%/js/class.widget.misconfigured.js +%%WWWDIR%%/js/class.widget.paste-placeholder.js +%%WWWDIR%%/js/class.widgets-data.js +%%WWWDIR%%/js/colorpicker.js +%%WWWDIR%%/js/common.js +%%WWWDIR%%/js/component.z-bar-gauge.js +%%WWWDIR%%/js/component.z-select.js +%%WWWDIR%%/js/defines.js +%%WWWDIR%%/js/flickerfreescreen.js +%%WWWDIR%%/js/functions.js +%%WWWDIR%%/js/gtlc.js +%%WWWDIR%%/js/hostinterfacemanager.js +%%WWWDIR%%/js/hostmacrosmanager.js +%%WWWDIR%%/js/init.js +%%WWWDIR%%/js/inputsecret.js +%%WWWDIR%%/js/layout.mode.js +%%WWWDIR%%/js/macrovalue.js +%%WWWDIR%%/js/main.js +%%WWWDIR%%/js/menupopup.js +%%WWWDIR%%/js/multilineinput.js +%%WWWDIR%%/js/multiselect.js +%%WWWDIR%%/js/pages/items.js +%%WWWDIR%%/js/pages/report2.js +%%WWWDIR%%/js/pages/report4.js +%%WWWDIR%%/js/pages/setup.js +%%WWWDIR%%/js/servercheck.js +%%WWWDIR%%/js/textareaflexible.js +%%WWWDIR%%/js/vector/class.svg.canvas.js +%%WWWDIR%%/js/vector/class.svg.map.js +%%WWWDIR%%/js/vendors/D3/LICENSE +%%WWWDIR%%/js/vendors/D3/d3.js +%%WWWDIR%%/js/vendors/Leaflet.markercluster/LICENSE +%%WWWDIR%%/js/vendors/Leaflet.markercluster/leaflet.markercluster.js +%%WWWDIR%%/js/vendors/Leaflet/LICENSE +%%WWWDIR%%/js/vendors/Leaflet/leaflet.js +%%WWWDIR%%/js/vendors/jQuery/LICENSE +%%WWWDIR%%/js/vendors/jQuery/jquery.js +%%WWWDIR%%/js/vendors/jQueryUI/LICENSE +%%WWWDIR%%/js/vendors/jQueryUI/jquery-ui.js +%%WWWDIR%%/js/vendors/qrcode/LICENSE +%%WWWDIR%%/js/vendors/qrcode/qrcode.js +%%WWWDIR%%/jsLoader.php +%%WWWDIR%%/jsrpc.php +%%WWWDIR%%/local/.htaccess +%%WWWDIR%%/local/README +%%WWWDIR%%/locale/README +%%WWWDIR%%/locale/add_new_language.sh +%%WWWDIR%%/locale/bg/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/bg/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/ca/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/ca/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/cs/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/cs/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/da/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/da/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/de/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/de/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/el/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/el/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/en_GB/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/en_GB/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/en_US/LC_MESSAGES/frontend.pot +%%WWWDIR%%/locale/es/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/es/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/fa/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/fa/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/fi/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/fi/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/fr/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/fr/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/he/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/he/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/hr/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/hr/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/hu/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/hu/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/id/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/id/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/it/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/it/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/ja/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/ja/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/ka/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/ka/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/kk/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/kk/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/ko/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/ko/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/lt/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/lt/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/lv/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/lv/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/make_mo.sh +%%WWWDIR%%/locale/nb_NO/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/nb_NO/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/nl/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/nl/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/pl/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/pl/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/pt_PT/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/pt_PT/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/ro/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/ro/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/ru/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/ru/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/sk/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/sk/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/sv_SE/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/sv_SE/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/tr/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/tr/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/uk/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/uk/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/update_po.sh +%%WWWDIR%%/locale/vi/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/vi/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/zh_CN/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/zh_CN/LC_MESSAGES/frontend.po +%%WWWDIR%%/locale/zh_TW/LC_MESSAGES/frontend.mo +%%WWWDIR%%/locale/zh_TW/LC_MESSAGES/frontend.po +%%WWWDIR%%/map.php +%%WWWDIR%%/report2.php +%%WWWDIR%%/report4.php +%%WWWDIR%%/robots.txt +%%WWWDIR%%/setup.php +%%WWWDIR%%/sysmap.php +%%WWWDIR%%/sysmaps.php +%%WWWDIR%%/tr_events.php +%%WWWDIR%%/vendor/autoload.php +%%WWWDIR%%/vendor/bin/yaml-lint +%%WWWDIR%%/vendor/bin/yaml-lint.bat +%%WWWDIR%%/vendor/composer/ClassLoader.php +%%WWWDIR%%/vendor/composer/InstalledVersions.php +%%WWWDIR%%/vendor/composer/LICENSE +%%WWWDIR%%/vendor/composer/autoload_classmap.php +%%WWWDIR%%/vendor/composer/autoload_files.php +%%WWWDIR%%/vendor/composer/autoload_namespaces.php +%%WWWDIR%%/vendor/composer/autoload_psr4.php +%%WWWDIR%%/vendor/composer/autoload_real.php +%%WWWDIR%%/vendor/composer/autoload_static.php +%%WWWDIR%%/vendor/composer/installed.json +%%WWWDIR%%/vendor/composer/installed.php +%%WWWDIR%%/vendor/composer/platform_check.php +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/.duo_linting.xml +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/.github/workflows/php_ci.yml +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/LICENSE +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/README.md +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/SECURITY.md +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/composer.json +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/example/README.md +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/example/composer.json +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/example/dockerfile +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/example/duo.conf +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/example/index.php +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/example/static/images/logo.png +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/example/static/style.css +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/example/templates/login.php +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/example/templates/success.php +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/src/Client.php +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/src/DuoException.php +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/src/ca_certs.pem +%%WWWDIR%%/vendor/duosecurity/duo_universal_php/tests/ClientTest.php +%%WWWDIR%%/vendor/firebase/php-jwt/CHANGELOG.md +%%WWWDIR%%/vendor/firebase/php-jwt/LICENSE +%%WWWDIR%%/vendor/firebase/php-jwt/README.md +%%WWWDIR%%/vendor/firebase/php-jwt/composer.json +%%WWWDIR%%/vendor/firebase/php-jwt/src/BeforeValidException.php +%%WWWDIR%%/vendor/firebase/php-jwt/src/CachedKeySet.php +%%WWWDIR%%/vendor/firebase/php-jwt/src/ExpiredException.php +%%WWWDIR%%/vendor/firebase/php-jwt/src/JWK.php +%%WWWDIR%%/vendor/firebase/php-jwt/src/JWT.php +%%WWWDIR%%/vendor/firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php +%%WWWDIR%%/vendor/firebase/php-jwt/src/Key.php +%%WWWDIR%%/vendor/firebase/php-jwt/src/SignatureInvalidException.php +%%WWWDIR%%/vendor/onelogin/php-saml/CHANGELOG +%%WWWDIR%%/vendor/onelogin/php-saml/LICENSE +%%WWWDIR%%/vendor/onelogin/php-saml/README.md +%%WWWDIR%%/vendor/onelogin/php-saml/_toolkit_loader.php +%%WWWDIR%%/vendor/onelogin/php-saml/advanced_settings_example.php +%%WWWDIR%%/vendor/onelogin/php-saml/certs/README +%%WWWDIR%%/vendor/onelogin/php-saml/composer.json +%%WWWDIR%%/vendor/onelogin/php-saml/phpunit.xml +%%WWWDIR%%/vendor/onelogin/php-saml/settings_example.php +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/Auth.php +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/AuthnRequest.php +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/Constants.php +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/Error.php +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/IdPMetadataParser.php +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/LogoutRequest.php +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/LogoutResponse.php +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/Metadata.php +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/Response.php +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/Settings.php +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/Utils.php +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/ValidationError.php +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/schemas/saml-schema-assertion-2.0.xsd +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/schemas/saml-schema-authn-context-2.0.xsd +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/schemas/saml-schema-authn-context-types-2.0.xsd +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/schemas/saml-schema-metadata-2.0.xsd +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/schemas/saml-schema-protocol-2.0.xsd +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/schemas/sstc-metadata-attr.xsd +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/schemas/sstc-saml-attribute-ext.xsd +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/schemas/sstc-saml-metadata-algsupport-v1.0.xsd +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/schemas/sstc-saml-metadata-ui-v1.0.xsd +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/schemas/xenc-schema.xsd +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/schemas/xml.xsd +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/schemas/xmldsig-core-schema.xsd +%%WWWDIR%%/vendor/onelogin/php-saml/src/Saml2/version.json +%%WWWDIR%%/vendor/paragonie/constant_time_encoding/LICENSE.txt +%%WWWDIR%%/vendor/paragonie/constant_time_encoding/README.md +%%WWWDIR%%/vendor/paragonie/constant_time_encoding/composer.json +%%WWWDIR%%/vendor/paragonie/constant_time_encoding/src/Base32.php +%%WWWDIR%%/vendor/paragonie/constant_time_encoding/src/Base32Hex.php +%%WWWDIR%%/vendor/paragonie/constant_time_encoding/src/Base64.php +%%WWWDIR%%/vendor/paragonie/constant_time_encoding/src/Base64DotSlash.php +%%WWWDIR%%/vendor/paragonie/constant_time_encoding/src/Base64DotSlashOrdered.php +%%WWWDIR%%/vendor/paragonie/constant_time_encoding/src/Base64UrlSafe.php +%%WWWDIR%%/vendor/paragonie/constant_time_encoding/src/Binary.php +%%WWWDIR%%/vendor/paragonie/constant_time_encoding/src/EncoderInterface.php +%%WWWDIR%%/vendor/paragonie/constant_time_encoding/src/Encoding.php +%%WWWDIR%%/vendor/paragonie/constant_time_encoding/src/Hex.php +%%WWWDIR%%/vendor/paragonie/constant_time_encoding/src/RFC4648.php +%%WWWDIR%%/vendor/pragmarx/google2fa/CHANGELOG.md +%%WWWDIR%%/vendor/pragmarx/google2fa/LICENSE.md +%%WWWDIR%%/vendor/pragmarx/google2fa/README.md +%%WWWDIR%%/vendor/pragmarx/google2fa/composer.json +%%WWWDIR%%/vendor/pragmarx/google2fa/src/Exceptions/Contracts/Google2FA.php +%%WWWDIR%%/vendor/pragmarx/google2fa/src/Exceptions/Contracts/IncompatibleWithGoogleAuthenticator.php +%%WWWDIR%%/vendor/pragmarx/google2fa/src/Exceptions/Contracts/InvalidAlgorithm.php +%%WWWDIR%%/vendor/pragmarx/google2fa/src/Exceptions/Contracts/InvalidCharacters.php +%%WWWDIR%%/vendor/pragmarx/google2fa/src/Exceptions/Contracts/SecretKeyTooShort.php +%%WWWDIR%%/vendor/pragmarx/google2fa/src/Exceptions/Google2FAException.php +%%WWWDIR%%/vendor/pragmarx/google2fa/src/Exceptions/IncompatibleWithGoogleAuthenticatorException.php +%%WWWDIR%%/vendor/pragmarx/google2fa/src/Exceptions/InvalidAlgorithmException.php +%%WWWDIR%%/vendor/pragmarx/google2fa/src/Exceptions/InvalidCharactersException.php +%%WWWDIR%%/vendor/pragmarx/google2fa/src/Exceptions/SecretKeyTooShortException.php +%%WWWDIR%%/vendor/pragmarx/google2fa/src/Google2FA.php +%%WWWDIR%%/vendor/pragmarx/google2fa/src/Support/Base32.php +%%WWWDIR%%/vendor/pragmarx/google2fa/src/Support/Constants.php +%%WWWDIR%%/vendor/pragmarx/google2fa/src/Support/QRCode.php +%%WWWDIR%%/vendor/robrichards/xmlseclibs/CHANGELOG.txt +%%WWWDIR%%/vendor/robrichards/xmlseclibs/LICENSE +%%WWWDIR%%/vendor/robrichards/xmlseclibs/README.md +%%WWWDIR%%/vendor/robrichards/xmlseclibs/composer.json +%%WWWDIR%%/vendor/robrichards/xmlseclibs/src/Utils/XPath.php +%%WWWDIR%%/vendor/robrichards/xmlseclibs/src/XMLSecEnc.php +%%WWWDIR%%/vendor/robrichards/xmlseclibs/src/XMLSecurityDSig.php +%%WWWDIR%%/vendor/robrichards/xmlseclibs/src/XMLSecurityKey.php +%%WWWDIR%%/vendor/robrichards/xmlseclibs/xmlseclibs.php +%%WWWDIR%%/vendor/symfony/deprecation-contracts/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/deprecation-contracts/LICENSE +%%WWWDIR%%/vendor/symfony/deprecation-contracts/README.md +%%WWWDIR%%/vendor/symfony/deprecation-contracts/composer.json +%%WWWDIR%%/vendor/symfony/deprecation-contracts/function.php +%%WWWDIR%%/vendor/symfony/polyfill-ctype/Ctype.php +%%WWWDIR%%/vendor/symfony/polyfill-ctype/LICENSE +%%WWWDIR%%/vendor/symfony/polyfill-ctype/README.md +%%WWWDIR%%/vendor/symfony/polyfill-ctype/bootstrap.php +%%WWWDIR%%/vendor/symfony/polyfill-ctype/bootstrap80.php +%%WWWDIR%%/vendor/symfony/polyfill-ctype/composer.json +%%WWWDIR%%/vendor/symfony/yaml/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/yaml/Command/LintCommand.php +%%WWWDIR%%/vendor/symfony/yaml/Dumper.php +%%WWWDIR%%/vendor/symfony/yaml/Escaper.php +%%WWWDIR%%/vendor/symfony/yaml/Exception/DumpException.php +%%WWWDIR%%/vendor/symfony/yaml/Exception/ExceptionInterface.php +%%WWWDIR%%/vendor/symfony/yaml/Exception/ParseException.php +%%WWWDIR%%/vendor/symfony/yaml/Exception/RuntimeException.php +%%WWWDIR%%/vendor/symfony/yaml/Inline.php +%%WWWDIR%%/vendor/symfony/yaml/LICENSE +%%WWWDIR%%/vendor/symfony/yaml/Parser.php +%%WWWDIR%%/vendor/symfony/yaml/README.md +%%WWWDIR%%/vendor/symfony/yaml/Resources/bin/yaml-lint +%%WWWDIR%%/vendor/symfony/yaml/Tag/TaggedValue.php +%%WWWDIR%%/vendor/symfony/yaml/Unescaper.php +%%WWWDIR%%/vendor/symfony/yaml/Yaml.php +%%WWWDIR%%/vendor/symfony/yaml/composer.json +%%WWWDIR%%/widgets/actionlog/Widget.php +%%WWWDIR%%/widgets/actionlog/actions/WidgetView.php +%%WWWDIR%%/widgets/actionlog/assets/js/class.widget.js +%%WWWDIR%%/widgets/actionlog/includes/WidgetForm.php +%%WWWDIR%%/widgets/actionlog/manifest.json +%%WWWDIR%%/widgets/actionlog/views/widget.edit.php +%%WWWDIR%%/widgets/actionlog/views/widget.view.php +%%WWWDIR%%/widgets/clock/Widget.php +%%WWWDIR%%/widgets/clock/actions/WidgetView.php +%%WWWDIR%%/widgets/clock/assets/js/class.widget.js +%%WWWDIR%%/widgets/clock/includes/WidgetForm.php +%%WWWDIR%%/widgets/clock/manifest.json +%%WWWDIR%%/widgets/clock/views/widget.edit.js.php +%%WWWDIR%%/widgets/clock/views/widget.edit.php +%%WWWDIR%%/widgets/clock/views/widget.view.php +%%WWWDIR%%/widgets/dataover/Widget.php +%%WWWDIR%%/widgets/dataover/actions/WidgetView.php +%%WWWDIR%%/widgets/dataover/includes/WidgetForm.php +%%WWWDIR%%/widgets/dataover/manifest.json +%%WWWDIR%%/widgets/dataover/partials/table.left.php +%%WWWDIR%%/widgets/dataover/partials/table.top.php +%%WWWDIR%%/widgets/dataover/views/widget.edit.php +%%WWWDIR%%/widgets/dataover/views/widget.view.php +%%WWWDIR%%/widgets/discovery/Widget.php +%%WWWDIR%%/widgets/discovery/actions/WidgetView.php +%%WWWDIR%%/widgets/discovery/manifest.json +%%WWWDIR%%/widgets/discovery/views/widget.view.php +%%WWWDIR%%/widgets/favgraphs/Widget.php +%%WWWDIR%%/widgets/favgraphs/actions/WidgetView.php +%%WWWDIR%%/widgets/favgraphs/manifest.json +%%WWWDIR%%/widgets/favgraphs/views/widget.view.php +%%WWWDIR%%/widgets/favmaps/Widget.php +%%WWWDIR%%/widgets/favmaps/actions/WidgetView.php +%%WWWDIR%%/widgets/favmaps/manifest.json +%%WWWDIR%%/widgets/favmaps/views/widget.view.php +%%WWWDIR%%/widgets/gauge/Widget.php +%%WWWDIR%%/widgets/gauge/actions/WidgetView.php +%%WWWDIR%%/widgets/gauge/assets/js/class.svggauge.js +%%WWWDIR%%/widgets/gauge/assets/js/class.widget.js +%%WWWDIR%%/widgets/gauge/includes/WidgetForm.php +%%WWWDIR%%/widgets/gauge/manifest.json +%%WWWDIR%%/widgets/gauge/views/widget.edit.js.php +%%WWWDIR%%/widgets/gauge/views/widget.edit.php +%%WWWDIR%%/widgets/gauge/views/widget.view.php +%%WWWDIR%%/widgets/geomap/Widget.php +%%WWWDIR%%/widgets/geomap/actions/WidgetView.php +%%WWWDIR%%/widgets/geomap/assets/js/class.widget.js +%%WWWDIR%%/widgets/geomap/includes/WidgetForm.php +%%WWWDIR%%/widgets/geomap/manifest.json +%%WWWDIR%%/widgets/geomap/views/widget.edit.php +%%WWWDIR%%/widgets/geomap/views/widget.view.php +%%WWWDIR%%/widgets/graph/Widget.php +%%WWWDIR%%/widgets/graph/actions/WidgetView.php +%%WWWDIR%%/widgets/graph/assets/js/class.widget.js +%%WWWDIR%%/widgets/graph/includes/WidgetForm.php +%%WWWDIR%%/widgets/graph/manifest.json +%%WWWDIR%%/widgets/graph/views/widget.edit.js.php +%%WWWDIR%%/widgets/graph/views/widget.edit.php +%%WWWDIR%%/widgets/graph/views/widget.view.php +%%WWWDIR%%/widgets/graphprototype/Widget.php +%%WWWDIR%%/widgets/graphprototype/actions/WidgetView.php +%%WWWDIR%%/widgets/graphprototype/assets/js/class.widget.js +%%WWWDIR%%/widgets/graphprototype/includes/WidgetForm.php +%%WWWDIR%%/widgets/graphprototype/manifest.json +%%WWWDIR%%/widgets/graphprototype/views/widget.edit.js.php +%%WWWDIR%%/widgets/graphprototype/views/widget.edit.php +%%WWWDIR%%/widgets/honeycomb/Widget.php +%%WWWDIR%%/widgets/honeycomb/actions/WidgetView.php +%%WWWDIR%%/widgets/honeycomb/assets/js/class.svghoneycomb.js +%%WWWDIR%%/widgets/honeycomb/assets/js/class.widget.js +%%WWWDIR%%/widgets/honeycomb/includes/WidgetForm.php +%%WWWDIR%%/widgets/honeycomb/manifest.json +%%WWWDIR%%/widgets/honeycomb/views/widget.edit.js.php +%%WWWDIR%%/widgets/honeycomb/views/widget.edit.php +%%WWWDIR%%/widgets/honeycomb/views/widget.view.php +%%WWWDIR%%/widgets/hostavail/Widget.php +%%WWWDIR%%/widgets/hostavail/actions/WidgetView.php +%%WWWDIR%%/widgets/hostavail/assets/js/class.widget.js +%%WWWDIR%%/widgets/hostavail/includes/WidgetForm.php +%%WWWDIR%%/widgets/hostavail/manifest.json +%%WWWDIR%%/widgets/hostavail/views/widget.edit.js.php +%%WWWDIR%%/widgets/hostavail/views/widget.edit.php +%%WWWDIR%%/widgets/hostavail/views/widget.view.php +%%WWWDIR%%/widgets/hostnavigator/Widget.php +%%WWWDIR%%/widgets/hostnavigator/actions/WidgetView.php +%%WWWDIR%%/widgets/hostnavigator/assets/js/class.hostnavigator.js +%%WWWDIR%%/widgets/hostnavigator/assets/js/class.widget-field.host-grouping.js +%%WWWDIR%%/widgets/hostnavigator/assets/js/class.widget.js +%%WWWDIR%%/widgets/hostnavigator/includes/CWidgetFieldHostGrouping.php +%%WWWDIR%%/widgets/hostnavigator/includes/CWidgetFieldHostGroupingView.php +%%WWWDIR%%/widgets/hostnavigator/includes/WidgetForm.php +%%WWWDIR%%/widgets/hostnavigator/manifest.json +%%WWWDIR%%/widgets/hostnavigator/views/widget.edit.php +%%WWWDIR%%/widgets/hostnavigator/views/widget.view.php +%%WWWDIR%%/widgets/item/Widget.php +%%WWWDIR%%/widgets/item/actions/WidgetView.php +%%WWWDIR%%/widgets/item/assets/js/class.widget.js +%%WWWDIR%%/widgets/item/includes/WidgetForm.php +%%WWWDIR%%/widgets/item/manifest.json +%%WWWDIR%%/widgets/item/views/widget.edit.js.php +%%WWWDIR%%/widgets/item/views/widget.edit.php +%%WWWDIR%%/widgets/item/views/widget.view.php +%%WWWDIR%%/widgets/itemhistory/Widget.php +%%WWWDIR%%/widgets/itemhistory/actions/BinaryValueGet.php +%%WWWDIR%%/widgets/itemhistory/actions/ColumnEdit.php +%%WWWDIR%%/widgets/itemhistory/actions/ImageValueGet.php +%%WWWDIR%%/widgets/itemhistory/actions/ValueCheck.php +%%WWWDIR%%/widgets/itemhistory/actions/WidgetView.php +%%WWWDIR%%/widgets/itemhistory/assets/js/class.widget.js +%%WWWDIR%%/widgets/itemhistory/includes/CWidgetFieldColumnsList.php +%%WWWDIR%%/widgets/itemhistory/includes/CWidgetFieldColumnsListView.php +%%WWWDIR%%/widgets/itemhistory/includes/WidgetForm.php +%%WWWDIR%%/widgets/itemhistory/manifest.json +%%WWWDIR%%/widgets/itemhistory/views/column.edit.js.php +%%WWWDIR%%/widgets/itemhistory/views/column.edit.php +%%WWWDIR%%/widgets/itemhistory/views/widget.edit.js.php +%%WWWDIR%%/widgets/itemhistory/views/widget.edit.php +%%WWWDIR%%/widgets/itemhistory/views/widget.view.php +%%WWWDIR%%/widgets/itemnavigator/Widget.php +%%WWWDIR%%/widgets/itemnavigator/actions/WidgetView.php +%%WWWDIR%%/widgets/itemnavigator/assets/js/class.itemnavigator.js +%%WWWDIR%%/widgets/itemnavigator/assets/js/class.widget-field.item-grouping.js +%%WWWDIR%%/widgets/itemnavigator/assets/js/class.widget.js +%%WWWDIR%%/widgets/itemnavigator/includes/CWidgetFieldItemGrouping.php +%%WWWDIR%%/widgets/itemnavigator/includes/CWidgetFieldItemGroupingView.php +%%WWWDIR%%/widgets/itemnavigator/includes/WidgetForm.php +%%WWWDIR%%/widgets/itemnavigator/manifest.json +%%WWWDIR%%/widgets/itemnavigator/views/widget.edit.php +%%WWWDIR%%/widgets/itemnavigator/views/widget.view.php +%%WWWDIR%%/widgets/map/Widget.php +%%WWWDIR%%/widgets/map/actions/WidgetView.php +%%WWWDIR%%/widgets/map/assets/js/class.widget.js +%%WWWDIR%%/widgets/map/includes/WidgetForm.php +%%WWWDIR%%/widgets/map/includes/WidgetMap.php +%%WWWDIR%%/widgets/map/manifest.json +%%WWWDIR%%/widgets/map/views/widget.edit.php +%%WWWDIR%%/widgets/map/views/widget.view.php +%%WWWDIR%%/widgets/navtree/Widget.php +%%WWWDIR%%/widgets/navtree/actions/NavTreeItemEdit.php +%%WWWDIR%%/widgets/navtree/actions/NavTreeItemUpdate.php +%%WWWDIR%%/widgets/navtree/actions/WidgetView.php +%%WWWDIR%%/widgets/navtree/assets/js/class.widget.js +%%WWWDIR%%/widgets/navtree/includes/NavigationTree.php +%%WWWDIR%%/widgets/navtree/includes/WidgetForm.php +%%WWWDIR%%/widgets/navtree/manifest.json +%%WWWDIR%%/widgets/navtree/views/navtreeitem.edit.js.php +%%WWWDIR%%/widgets/navtree/views/navtreeitem.edit.php +%%WWWDIR%%/widgets/navtree/views/widget.edit.php +%%WWWDIR%%/widgets/navtree/views/widget.view.php +%%WWWDIR%%/widgets/piechart/Widget.php +%%WWWDIR%%/widgets/piechart/actions/WidgetView.php +%%WWWDIR%%/widgets/piechart/assets/js/class.svgpie.js +%%WWWDIR%%/widgets/piechart/assets/js/class.widget.js +%%WWWDIR%%/widgets/piechart/includes/CWidgetFieldDataSet.php +%%WWWDIR%%/widgets/piechart/includes/CWidgetFieldDataSetView.php +%%WWWDIR%%/widgets/piechart/includes/WidgetForm.php +%%WWWDIR%%/widgets/piechart/manifest.json +%%WWWDIR%%/widgets/piechart/views/widget.edit.js.php +%%WWWDIR%%/widgets/piechart/views/widget.edit.php +%%WWWDIR%%/widgets/piechart/views/widget.view.php +%%WWWDIR%%/widgets/problemhosts/Widget.php +%%WWWDIR%%/widgets/problemhosts/actions/WidgetView.php +%%WWWDIR%%/widgets/problemhosts/assets/js/class.widget.js +%%WWWDIR%%/widgets/problemhosts/includes/WidgetForm.php +%%WWWDIR%%/widgets/problemhosts/manifest.json +%%WWWDIR%%/widgets/problemhosts/views/widget.edit.php +%%WWWDIR%%/widgets/problemhosts/views/widget.view.php +%%WWWDIR%%/widgets/problems/Widget.php +%%WWWDIR%%/widgets/problems/actions/WidgetView.php +%%WWWDIR%%/widgets/problems/assets/js/class.widget.js +%%WWWDIR%%/widgets/problems/includes/WidgetForm.php +%%WWWDIR%%/widgets/problems/includes/WidgetProblems.php +%%WWWDIR%%/widgets/problems/manifest.json +%%WWWDIR%%/widgets/problems/views/widget.edit.js.php +%%WWWDIR%%/widgets/problems/views/widget.edit.php +%%WWWDIR%%/widgets/problems/views/widget.view.php +%%WWWDIR%%/widgets/problemsbysv/Widget.php +%%WWWDIR%%/widgets/problemsbysv/actions/WidgetView.php +%%WWWDIR%%/widgets/problemsbysv/assets/js/class.widget.js +%%WWWDIR%%/widgets/problemsbysv/includes/WidgetForm.php +%%WWWDIR%%/widgets/problemsbysv/manifest.json +%%WWWDIR%%/widgets/problemsbysv/views/widget.edit.js.php +%%WWWDIR%%/widgets/problemsbysv/views/widget.edit.php +%%WWWDIR%%/widgets/problemsbysv/views/widget.view.php +%%WWWDIR%%/widgets/slareport/Widget.php +%%WWWDIR%%/widgets/slareport/actions/WidgetView.php +%%WWWDIR%%/widgets/slareport/includes/WidgetForm.php +%%WWWDIR%%/widgets/slareport/manifest.json +%%WWWDIR%%/widgets/slareport/views/widget.edit.js.php +%%WWWDIR%%/widgets/slareport/views/widget.edit.php +%%WWWDIR%%/widgets/slareport/views/widget.view.php +%%WWWDIR%%/widgets/svggraph/Widget.php +%%WWWDIR%%/widgets/svggraph/actions/WidgetView.php +%%WWWDIR%%/widgets/svggraph/assets/js/class.widget.js +%%WWWDIR%%/widgets/svggraph/includes/CSvgGraphHelper.php +%%WWWDIR%%/widgets/svggraph/includes/CSvgGraphLegend.php +%%WWWDIR%%/widgets/svggraph/includes/CWidgetFieldDataSet.php +%%WWWDIR%%/widgets/svggraph/includes/CWidgetFieldDataSetView.php +%%WWWDIR%%/widgets/svggraph/includes/CWidgetFieldOverride.php +%%WWWDIR%%/widgets/svggraph/includes/CWidgetFieldOverrideView.php +%%WWWDIR%%/widgets/svggraph/includes/WidgetForm.php +%%WWWDIR%%/widgets/svggraph/manifest.json +%%WWWDIR%%/widgets/svggraph/views/widget.edit.js.php +%%WWWDIR%%/widgets/svggraph/views/widget.edit.php +%%WWWDIR%%/widgets/svggraph/views/widget.view.php +%%WWWDIR%%/widgets/systeminfo/Widget.php +%%WWWDIR%%/widgets/systeminfo/actions/WidgetView.php +%%WWWDIR%%/widgets/systeminfo/includes/WidgetForm.php +%%WWWDIR%%/widgets/systeminfo/manifest.json +%%WWWDIR%%/widgets/systeminfo/views/widget.edit.js.php +%%WWWDIR%%/widgets/systeminfo/views/widget.edit.php +%%WWWDIR%%/widgets/systeminfo/views/widget.view.php +%%WWWDIR%%/widgets/tophosts/Widget.php +%%WWWDIR%%/widgets/tophosts/actions/ColumnEdit.php +%%WWWDIR%%/widgets/tophosts/actions/WidgetView.php +%%WWWDIR%%/widgets/tophosts/assets/js/class.widget.js +%%WWWDIR%%/widgets/tophosts/includes/WidgetForm.php +%%WWWDIR%%/widgets/tophosts/manifest.json +%%WWWDIR%%/widgets/tophosts/views/column.edit.js.php +%%WWWDIR%%/widgets/tophosts/views/column.edit.php +%%WWWDIR%%/widgets/tophosts/views/widget.edit.js.php +%%WWWDIR%%/widgets/tophosts/views/widget.edit.php +%%WWWDIR%%/widgets/tophosts/views/widget.view.php +%%WWWDIR%%/widgets/toptriggers/Widget.php +%%WWWDIR%%/widgets/toptriggers/actions/WidgetView.php +%%WWWDIR%%/widgets/toptriggers/assets/js/class.widget.js +%%WWWDIR%%/widgets/toptriggers/includes/WidgetForm.php +%%WWWDIR%%/widgets/toptriggers/manifest.json +%%WWWDIR%%/widgets/toptriggers/views/widget.edit.php +%%WWWDIR%%/widgets/toptriggers/views/widget.view.php +%%WWWDIR%%/widgets/trigover/Widget.php +%%WWWDIR%%/widgets/trigover/actions/WidgetView.php +%%WWWDIR%%/widgets/trigover/assets/js/class.widget.js +%%WWWDIR%%/widgets/trigover/includes/ViewHelper.php +%%WWWDIR%%/widgets/trigover/includes/WidgetForm.php +%%WWWDIR%%/widgets/trigover/manifest.json +%%WWWDIR%%/widgets/trigover/partials/table.left.php +%%WWWDIR%%/widgets/trigover/partials/table.top.php +%%WWWDIR%%/widgets/trigover/views/widget.edit.php +%%WWWDIR%%/widgets/trigover/views/widget.view.php +%%WWWDIR%%/widgets/url/Widget.php +%%WWWDIR%%/widgets/url/actions/WidgetView.php +%%WWWDIR%%/widgets/url/assets/js/class.widget.js +%%WWWDIR%%/widgets/url/includes/WidgetForm.php +%%WWWDIR%%/widgets/url/manifest.json +%%WWWDIR%%/widgets/url/views/widget.edit.php +%%WWWDIR%%/widgets/url/views/widget.view.php +%%WWWDIR%%/widgets/web/Widget.php +%%WWWDIR%%/widgets/web/actions/WidgetView.php +%%WWWDIR%%/widgets/web/assets/js/class.widget.js +%%WWWDIR%%/widgets/web/includes/WidgetForm.php +%%WWWDIR%%/widgets/web/manifest.json +%%WWWDIR%%/widgets/web/views/widget.edit.php +%%WWWDIR%%/widgets/web/views/widget.view.php +%%WWWDIR%%/zabbix.php +@dir %%WWWDIR%%/conf/certs +@dir %%WWWDIR%%/local/app/controllers +@dir %%WWWDIR%%/local/app/partials +@dir %%WWWDIR%%/local/app/views +@dir %%WWWDIR%%/local/conf +@dir %%WWWDIR%%/modules diff --git a/net-mgmt/zabbix7-server/pkg-plist.java b/net-mgmt/zabbix7-server/pkg-plist.java new file mode 100644 index 000000000000..3c583b91a9e9 --- /dev/null +++ b/net-mgmt/zabbix7-server/pkg-plist.java @@ -0,0 +1,11 @@ +sbin/zabbix_java/shutdown.sh +sbin/zabbix_java/lib/logback-console.xml +sbin/zabbix_java/lib/logback-core-1.2.9.jar +sbin/zabbix_java/lib/logback-classic-1.2.9.jar +sbin/zabbix_java/lib/logback.xml +sbin/zabbix_java/lib/slf4j-api-1.7.32.jar +sbin/zabbix_java/lib/android-json-4.3_r3.1.jar +@sample sbin/zabbix_java/settings.sh.sample +sbin/zabbix_java/startup.sh +sbin/zabbix_java/bin/zabbix-java-gateway-%%DISTVERSION%%.jar +@dir(zabbix,zabbix,755) /var/run/zabbix |