Page MenuHomeFreeBSD

netdata-1421-no-h2o-v2.patch

Authored By
diizzy
Aug 26 2023, 6:50 PM
Size
26 KB
Referenced Files
None
Subscribers
None

netdata-1421-no-h2o-v2.patch

diff --git a/net-mgmt/netdata/Makefile b/net-mgmt/netdata/Makefile
index 7049be9a6b31..57636ba9e425 100644
--- a/net-mgmt/netdata/Makefile
+++ b/net-mgmt/netdata/Makefile
@@ -1,7 +1,6 @@
PORTNAME= netdata
DISTVERSIONPREFIX= v
-DISTVERSION= 1.40.1
-PORTREVISION= 1
+DISTVERSION= 1.42.1
CATEGORIES= net-mgmt
MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/v${DISTVERSION}/
@@ -30,10 +29,10 @@ BINARY_ALIAS= ar=llvm-ar ranlib=llvm-ranlib
# Libs that you can't unbundle...
# SQLite3, --exclude database/sqlite/sqlite3*
# (lib)judy, --exclude libnetdata/libjudy
-EXTRACT_AFTER_ARGS= --exclude httpd --exclude ml/dlib
+EXTRACT_AFTER_ARGS= --exclude ml/dlib --exclude web/server/h2o
GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --disable-unit-tests --disable-httpd
+CONFIGURE_ARGS= --disable-h2o --disable-unit-tests
INSTALL_TARGET= install-strip
CPPFLAGS+= -D_WANT_VMMETER
@@ -51,7 +50,7 @@ PLIST_SUB= NETDATA_CACHE=${NETDATA_CACHE} \
NETDATA_PERST=${NETDATA_PERST}
OPTIONS_DEFINE= CLOUD CUPS DBENGINE FREEIPMI GOPLUGIN LTO ML
-OPTIONS_DEFAULT= CLOUD DBENGINE LTO
+OPTIONS_DEFAULT= CLOUD DBENGINE LTO ML
OPTIONS_EXCLUDE_riscv64= LTO
OPTIONS_SUB= YES
@@ -106,6 +105,8 @@ post-install:
${STAGEDIR}${LOCALBASE}/lib/${PORTNAME}/conf.d/*/*.txt ; do \
${MV} $$fi $$fi".sample"; \
done)
+ ${RM} ${STAGEDIR}${ETCDIR}/netdata-updater.conf
+ ${RM} -r ${STAGEDIR}${PREFIX}/lib/netdata/system
post-install-CLOUD-off:
rm ${STAGEDIR}${PREFIX}/sbin/netdata-claim.sh
diff --git a/net-mgmt/netdata/distinfo b/net-mgmt/netdata/distinfo
index 34e0816e4986..7fe0c3bed3de 100644
--- a/net-mgmt/netdata/distinfo
+++ b/net-mgmt/netdata/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1687890826
-SHA256 (netdata-v1.40.1.tar.gz) = cc86172acd5e6ec05bc0fa86a50d967502a264d8adf7f79293923ccd8febb251
-SIZE (netdata-v1.40.1.tar.gz) = 43354949
+TIMESTAMP = 1692204867
+SHA256 (netdata-v1.42.1.tar.gz) = 2728f74ec499bb8cce4d046b1ed3980bf3c84ad225a77d0be3b70f653a787a76
+SIZE (netdata-v1.42.1.tar.gz) = 46044731
diff --git a/net-mgmt/netdata/files/netdata.in b/net-mgmt/netdata/files/netdata.in
index c070b886b576..664bf30a5b05 100644
--- a/net-mgmt/netdata/files/netdata.in
+++ b/net-mgmt/netdata/files/netdata.in
@@ -34,26 +34,8 @@ load_rc_config $name
: ${netdata_enable="NO"}
: ${netdata_conf="%%ETCDIR%%/${name}.conf"}
: ${netdata_pid="%%NETDATA_PERST%%/${name}.pid"}
-: # netdata_user set below, it may also be pulled from the netdata_conf file
: ${netdata_stop_maxwait=30}
-# read netdata_conf and print the "run as user =" RHS, or print nothing if unset
-#
-# only permits ASCII letters, digits, dash, underscore - does not permit
-# backtick, curly braces, angle brackets, backslash although passwd(5) would
-# permit these.
-get_user_from_conf() {
- $SED -n '/^\[global\]/,/^\[/{s/^[[:space:]]*run as user.*=[[:space:]]*\(.*\)[[:space:]]*$/\1/p;}' "${netdata_conf}" \
- | $TR -c -d 'a-zA-Z0-9_-'
-}
-
-# check if the rc.conf* file set and netdata_conf agree on the name to run the bundle as
-check_user_consistency() {
- cfusr=$(get_user_from_conf)
- if [ -z "$cfusr" -o "$cfusr" = "${netdata_user}" ] ; then return 0 ; fi
- err 1 "${netdata_conf} sets 'run as user = $cfusr', but rc.conf* sets '${netdata_user}'. Both must be consistent."
-}
-
# this is more or less a copy of /etc/rc.subr from 12.1-RELEASE
# around Early April 2020, but with a timeout, killing children,
# and SIGKILL added because sometimes netdata hangs.
@@ -103,20 +85,12 @@ stop_postcmd() {
rm -f "${netdata_pid}"
}
-# obtain default user, first from configuration, or default to "netdata"
- _netdata_user_default=$(get_user_from_conf)
-: ${_netdata_user_default:="netdata"}
-# and then, if rc.conf* don't set it, use the default
-: ${netdata_user="${_netdata_user_default}"}
-
procname="%%PREFIX%%/sbin/${name}"
command="/usr/sbin/daemon"
-command_args="-c -f \"${procname}\" -u \"${netdata_user}\" -P \"${netdata_pid}\" ${netdata_args}"
+command_args="-c -f \"${procname}\" -P \"${netdata_pid}\" ${netdata_args}"
required_files="${netdata_conf}"
-start_precmd=check_user_consistency
-
stop_cmd=stop_cmd
stop_postcmd=stop_postcmd # netdata always leaves its pid file behind.
diff --git a/net-mgmt/netdata/files/patch-Makefile.am b/net-mgmt/netdata/files/patch-Makefile.am
index 367db902e3fb..78700a0f1ed9 100644
--- a/net-mgmt/netdata/files/patch-Makefile.am
+++ b/net-mgmt/netdata/files/patch-Makefile.am
@@ -1,6 +1,6 @@
---- Makefile.am.orig 2023-06-17 06:42:31 UTC
-+++ Makefile.am
-@@ -39,7 +39,6 @@ EXTRA_DIST = \
+--- Makefile.am.orig 2023-07-23 18:43:42.030677684 -0600
++++ Makefile.am 2023-07-23 18:44:09.820603732 -0600
+@@ -39,7 +39,6 @@
build/m4/ax_c__generic.m4 \
build/m4/ax_compiler_vendor.m4 \
build/m4/ax_cxx_compile_stdcxx.m4 \
@@ -8,7 +8,7 @@
README.md \
LICENSE \
REDISTRIBUTED.md \
-@@ -256,16 +255,15 @@ ML_FILES += \
+@@ -254,16 +253,15 @@
ml/ad_charts.h \
ml/ad_charts.cc \
ml/Config.cc \
diff --git a/net-mgmt/netdata/files/patch-configure.ac b/net-mgmt/netdata/files/patch-configure.ac
index a6431180f241..4cba0240a7a7 100644
--- a/net-mgmt/netdata/files/patch-configure.ac
+++ b/net-mgmt/netdata/files/patch-configure.ac
@@ -1,5 +1,5 @@
---- configure.ac.orig 2023-06-14 15:07:47 UTC
-+++ configure.ac
+--- configure.ac.orig 2023-07-23 18:34:41.165387302 -0600
++++ configure.ac 2023-07-23 18:42:45.117534306 -0600
@@ -5,11 +5,11 @@
AC_PREREQ(2.60)
@@ -16,7 +16,7 @@
AM_MAINTAINER_MODE([disable])
if test x"$USE_MAINTAINER_MODE" = xyes; then
-@@ -1261,14 +1261,14 @@ if test "${enable_ml}" = "yes" -a "${have_uuid}" != "y
+@@ -1354,15 +1354,15 @@
fi
# Check if submodules have not been fetched. Fail if ML was explicitly requested.
@@ -27,6 +27,7 @@
+# if test -f "ml/dlib/dlib/all/source.cpp"; then
+# AC_MSG_RESULT([yes])
have_ml_submodules="yes"
+ AC_DEFINE([HAVE_DLIB], [1], [dlib availability])
-else
- AC_MSG_RESULT([no])
- have_ml_submodules="no"
@@ -38,7 +39,7 @@
if test "${enable_ml}" = "yes" -a "${have_ml_submodules}" = "no"; then
AC_MSG_ERROR([You have explicitly requested --enable-ml functionality but it cannot be built because the required git submodules are missing.])
-@@ -1288,8 +1288,8 @@ fi
+@@ -1382,8 +1382,8 @@
AM_CONDITIONAL([ENABLE_ML], [test "${build_ml}" = "yes"])
if test "${build_ml}" = "yes"; then
AC_DEFINE([ENABLE_ML], [1], [anomaly detection usability])
@@ -49,7 +50,7 @@
fi
-@@ -1694,14 +1694,14 @@ AC_SUBST([OPTIONAL_DL_LIBS])
+@@ -1788,14 +1788,14 @@
AC_DEFINE_UNQUOTED([NETDATA_USER], ["${with_user}"], [use this user to drop privileged])
diff --git a/net-mgmt/netdata/files/patch-daemon_main.c b/net-mgmt/netdata/files/patch-daemon_main.c
new file mode 100644
index 000000000000..f9cc3eff6928
--- /dev/null
+++ b/net-mgmt/netdata/files/patch-daemon_main.c
@@ -0,0 +1,12 @@
+--- daemon/main.c.orig 2023-08-09 19:47:06.833144000 +0000
++++ daemon/main.c 2023-08-09 19:47:43.035728000 +0000
+@@ -1108,8 +1108,7 @@
+ netdata_configured_web_dir = config_get(CONFIG_SECTION_DIRECTORIES, "web", netdata_configured_web_dir);
+ netdata_configured_cache_dir = config_get(CONFIG_SECTION_DIRECTORIES, "cache", netdata_configured_cache_dir);
+ netdata_configured_varlib_dir = config_get(CONFIG_SECTION_DIRECTORIES, "lib", netdata_configured_varlib_dir);
+- char *env_home=getenv("HOME");
+- netdata_configured_home_dir = config_get(CONFIG_SECTION_DIRECTORIES, "home", env_home?env_home:netdata_configured_home_dir);
++ netdata_configured_home_dir = config_get(CONFIG_SECTION_DIRECTORIES, "home", netdata_configured_home_dir);
+
+ netdata_configured_lock_dir = initialize_lock_directory_path(netdata_configured_varlib_dir);
+
diff --git a/net-mgmt/netdata/pkg-plist b/net-mgmt/netdata/pkg-plist
index b3212affc100..a4012726f335 100644
--- a/net-mgmt/netdata/pkg-plist
+++ b/net-mgmt/netdata/pkg-plist
@@ -51,6 +51,7 @@
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/elasticsearch.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/entropy.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/exporting.conf.sample
+@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/file_descriptors.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/gearman.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/geth.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/go.d.plugin.conf.sample
@@ -163,20 +164,6 @@
@sample(netdata,netdata,0640) lib/netdata/conf.d/statsd.d/k6.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/stream.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/vnodes/vnodes.conf.sample
-lib/netdata/system/cron/netdata-updater-daily
-lib/netdata/system/freebsd/rc.d/netdata
-lib/netdata/system/initd/init.d/netdata
-lib/netdata/system/launchd/netdata.plist
-lib/netdata/system/logrotate/netdata
-lib/netdata/system/lsb/init.d/netdata
-lib/netdata/system/openrc/conf.d/netdata
-lib/netdata/system/openrc/init.d/netdata
-lib/netdata/system/runit/run
-lib/netdata/system/systemd/50-netdata.preset
-lib/netdata/system/systemd/netdata-updater.service
-lib/netdata/system/systemd/netdata-updater.timer
-lib/netdata/system/systemd/netdata.service
-lib/netdata/system/systemd/netdata.service.v235
libexec/netdata/charts.d/ap.chart.sh
libexec/netdata/charts.d/apcupsd.chart.sh
libexec/netdata/charts.d/example.chart.sh
@@ -191,11 +178,12 @@ libexec/netdata/plugins.d/alarm-notify.sh
libexec/netdata/plugins.d/alarm-test.sh
libexec/netdata/plugins.d/alarm.sh
libexec/netdata/plugins.d/anonymous-statistics.sh
-@(,netdata,4750) libexec/netdata/plugins.d/apps.plugin
+@(root,netdata,4750) libexec/netdata/plugins.d/apps.plugin
libexec/netdata/plugins.d/cgroup-name.sh
libexec/netdata/plugins.d/cgroup-network-helper.sh
libexec/netdata/plugins.d/charts.d.dryrun-helper.sh
libexec/netdata/plugins.d/charts.d.plugin
+libexec/netdata/plugins.d/ebpf_thread_function.sh
%%CUPS%%libexec/netdata/plugins.d/cups.plugin
%%FREEIPMI%%libexec/netdata/plugins.d/freeipmi.plugin
libexec/netdata/plugins.d/get-kubernetes-labels.sh
@@ -386,8 +374,11 @@ sbin/netdatacli
%%DATADIR%%/web/netdata-swagger.json
%%DATADIR%%/web/netdata-swagger.yaml
%%DATADIR%%/web/old/index.html
-%%DATADIR%%/web/precache-manifest.21dcd7c609bff6504512face054c360f.js
+%%DATADIR%%/web/precache-manifest.e2d3811ef5e4b7e75e1f56d6ee92ef2c.js
%%DATADIR%%/web/refresh-badges.js
+%%DATADIR%%/web/registry-access.html
+%%DATADIR%%/web/registry-alert-redirect.html
+%%DATADIR%%/web/registry-hello.html
%%DATADIR%%/web/robots.txt
%%DATADIR%%/web/service-worker.js
%%DATADIR%%/web/sitemap.xml
@@ -400,9 +391,9 @@ sbin/netdatacli
%%DATADIR%%/web/static/img/netdata-logomark.svg
%%DATADIR%%/web/static/js/10.a5cd7d0e.chunk.js
%%DATADIR%%/web/static/js/10.a5cd7d0e.chunk.js.map
-%%DATADIR%%/web/static/js/2.ae48988e.chunk.js
-%%DATADIR%%/web/static/js/2.ae48988e.chunk.js.LICENSE
-%%DATADIR%%/web/static/js/2.ae48988e.chunk.js.map
+%%DATADIR%%/web/static/js/2.62d105c5.chunk.js
+%%DATADIR%%/web/static/js/2.62d105c5.chunk.js.LICENSE
+%%DATADIR%%/web/static/js/2.62d105c5.chunk.js.map
%%DATADIR%%/web/static/js/3.f137faca.chunk.js
%%DATADIR%%/web/static/js/3.f137faca.chunk.js.map
%%DATADIR%%/web/static/js/4.2dbcd906.chunk.js
@@ -418,9 +409,9 @@ sbin/netdatacli
%%DATADIR%%/web/static/js/8.b4161ea2.chunk.js.map
%%DATADIR%%/web/static/js/9.a4363968.chunk.js
%%DATADIR%%/web/static/js/9.a4363968.chunk.js.map
-%%DATADIR%%/web/static/js/main.76dfe4de.chunk.js
-%%DATADIR%%/web/static/js/main.76dfe4de.chunk.js.LICENSE
-%%DATADIR%%/web/static/js/main.76dfe4de.chunk.js.map
+%%DATADIR%%/web/static/js/main.e248095a.chunk.js
+%%DATADIR%%/web/static/js/main.e248095a.chunk.js.LICENSE
+%%DATADIR%%/web/static/js/main.e248095a.chunk.js.map
%%DATADIR%%/web/static/js/runtime-main.08abed8f.js
%%DATADIR%%/web/static/js/runtime-main.08abed8f.js.map
%%DATADIR%%/web/static/media/ibm-plex-sans-latin-100.245539db.woff2
@@ -452,8 +443,265 @@ sbin/netdatacli
%%DATADIR%%/web/static/media/ibm-plex-sans-latin-700italic.02954bee.woff2
%%DATADIR%%/web/static/media/ibm-plex-sans-latin-700italic.72e9af40.woff
%%DATADIR%%/web/static/media/material-icons.0509ab09.woff2
+%%DATADIR%%/web/switch.html
%%DATADIR%%/web/tv-react.html
%%DATADIR%%/web/tv.html
+%%DATADIR%%/web/v0/index.html
+%%DATADIR%%/web/v1/index.html
+%%DATADIR%%/web/v2/102.625f7fb40793758916f1.chunk.js
+%%DATADIR%%/web/v2/129.1d087d9f7fb4bfa3cb72.chunk.js
+%%DATADIR%%/web/v2/147.d9a3ab5a852935e0e203.chunk.js
+%%DATADIR%%/web/v2/18.89d32c7ee15496f689f3.chunk.js
+%%DATADIR%%/web/v2/18.89d32c7ee15496f689f3.chunk.js.LICENSE.txt
+%%DATADIR%%/web/v2/193.6c0f51af21cfef8bce9d.chunk.js
+%%DATADIR%%/web/v2/20.625d62276782f5f021c5.chunk.js
+%%DATADIR%%/web/v2/241.dcc517f9189cb747150e.chunk.js
+%%DATADIR%%/web/v2/252.c34ade07cc21e6fd9b8e.chunk.js
+%%DATADIR%%/web/v2/264.296e4fe770b1756ed46b.chunk.js
+%%DATADIR%%/web/v2/27.23f7ef0669e969b74f95.chunk.js
+%%DATADIR%%/web/v2/27.23f7ef0669e969b74f95.chunk.js.LICENSE.txt
+%%DATADIR%%/web/v2/27.384da655707f4c3b6153.css
+%%DATADIR%%/web/v2/282.112f65cb06615e413141.chunk.js
+%%DATADIR%%/web/v2/324.328e79181dbe63b612fa.chunk.js
+%%DATADIR%%/web/v2/359.aefe439f4f7fb9a02e15.chunk.js
+%%DATADIR%%/web/v2/360.a55ccd8aeddca3df6bd0.chunk.js
+%%DATADIR%%/web/v2/376.e533843d1907d4e8dafa.js
+%%DATADIR%%/web/v2/376.e533843d1907d4e8dafa.js.LICENSE.txt
+%%DATADIR%%/web/v2/3D_PARTY_LICENSES.txt
+%%DATADIR%%/web/v2/43.36c13bf5ecbdd5373881.chunk.js
+%%DATADIR%%/web/v2/447.99c65cf897c2e7a4e174.chunk.js
+%%DATADIR%%/web/v2/451.aec55cb715f41fc72a63.chunk.js
+%%DATADIR%%/web/v2/470.5ab9b3dc905a52581ba0.chunk.js
+%%DATADIR%%/web/v2/502.517f9b221f4ed676c586.chunk.js
+%%DATADIR%%/web/v2/510.ea4a79b1c75b8035f760.chunk.js
+%%DATADIR%%/web/v2/514.af9132e943f111b25f1c.chunk.js
+%%DATADIR%%/web/v2/514.af9132e943f111b25f1c.chunk.js.LICENSE.txt
+%%DATADIR%%/web/v2/533.7791da896bd0af46ae45.chunk.js
+%%DATADIR%%/web/v2/564.2354fe745e05d75abbf2.chunk.js
+%%DATADIR%%/web/v2/575.76dcaacb1c2276f86dea.chunk.js
+%%DATADIR%%/web/v2/575.76dcaacb1c2276f86dea.chunk.js.LICENSE.txt
+%%DATADIR%%/web/v2/597.cb6f23362a28e63af220.chunk.js
+%%DATADIR%%/web/v2/610.1001494a66c38627ff37.chunk.js
+%%DATADIR%%/web/v2/654.67b0714ebd49a65d277c.chunk.js
+%%DATADIR%%/web/v2/655.6b819502f310febec992.chunk.js
+%%DATADIR%%/web/v2/663.a89b1206f4b293aabe4b.chunk.js
+%%DATADIR%%/web/v2/676.4ce73c27b29d5f4672bb.chunk.js
+%%DATADIR%%/web/v2/676.ccb665950325037c0dda.css
+%%DATADIR%%/web/v2/723.44a07361b47c51d272dd.chunk.js
+%%DATADIR%%/web/v2/723.cc9fa5f3bdc0bf3ab2fc.css
+%%DATADIR%%/web/v2/765.e7fa6ef71a637cc3ae4d.chunk.js
+%%DATADIR%%/web/v2/814.3332136a855b7f4da0ef.chunk.js
+%%DATADIR%%/web/v2/817.cd5bd5294b2afab8578f.chunk.js
+%%DATADIR%%/web/v2/837.bedee580bb54cbbff07c.chunk.js
+%%DATADIR%%/web/v2/851.7d3f8a7b3ffc933098b8.chunk.js
+%%DATADIR%%/web/v2/86.a471108ca7f6fc7080fe.chunk.js
+%%DATADIR%%/web/v2/915.c5be29433632e593abf9.chunk.js
+%%DATADIR%%/web/v2/934.627b38e3de836130d875.chunk.js
+%%DATADIR%%/web/v2/952.8782ae4b4eb5f5d394ba.chunk.js
+%%DATADIR%%/web/v2/952.8782ae4b4eb5f5d394ba.chunk.js.LICENSE.txt
+%%DATADIR%%/web/v2/969.64ecdcbb7383f4baee16.chunk.js
+%%DATADIR%%/web/v2/977.f955167348f6c9037af1.chunk.js
+%%DATADIR%%/web/v2/LICENSE.md
+%%DATADIR%%/web/v2/agent.html
+%%DATADIR%%/web/v2/allFiles.6.28.0.json
+%%DATADIR%%/web/v2/allFiles.6.json
+%%DATADIR%%/web/v2/app.04e10fe5e2e2b4abb9de.js
+%%DATADIR%%/web/v2/app.0917ff2bf5d3b8b0678d.css
+%%DATADIR%%/web/v2/bundlesManifest.6.json
+%%DATADIR%%/web/v2/editor.2c7891085085940ad860.chunk.js
+%%DATADIR%%/web/v2/favicon.ico
+%%DATADIR%%/web/v2/index.html
+%%DATADIR%%/web/v2/local-agent.html
+%%DATADIR%%/web/v2/npm.react.dom.5f194c629d90a617d1ac.js
+%%DATADIR%%/web/v2/npm.react.dom.5f194c629d90a617d1ac.js.LICENSE.txt
+%%DATADIR%%/web/v2/registry-access.html
+%%DATADIR%%/web/v2/registry-alert-redirect.html
+%%DATADIR%%/web/v2/registry-hello.html
+%%DATADIR%%/web/v2/runtime.519955e002a87da88924.js
+%%DATADIR%%/web/v2/static/email/img/clea_badge.png
+%%DATADIR%%/web/v2/static/email/img/clea_siren.png
+%%DATADIR%%/web/v2/static/email/img/community_icon.png
+%%DATADIR%%/web/v2/static/email/img/configure_icon.png
+%%DATADIR%%/web/v2/static/email/img/crit_badge.png
+%%DATADIR%%/web/v2/static/email/img/crit_siren.png
+%%DATADIR%%/web/v2/static/email/img/flood_siren.png
+%%DATADIR%%/web/v2/static/email/img/full_logo.png
+%%DATADIR%%/web/v2/static/email/img/header.png
+%%DATADIR%%/web/v2/static/email/img/isotype_600.png
+%%DATADIR%%/web/v2/static/email/img/label_critical.png
+%%DATADIR%%/web/v2/static/email/img/label_recovered.png
+%%DATADIR%%/web/v2/static/email/img/label_warning.png
+%%DATADIR%%/web/v2/static/email/img/reachability_siren.png
+%%DATADIR%%/web/v2/static/email/img/warn_badge.png
+%%DATADIR%%/web/v2/static/email/img/warn_siren.png
+%%DATADIR%%/web/v2/static/img/list-style-image.svg
+%%DATADIR%%/web/v2/static/img/logos/os/alpine.svg
+%%DATADIR%%/web/v2/static/img/logos/os/arch.svg
+%%DATADIR%%/web/v2/static/img/logos/os/centos.svg
+%%DATADIR%%/web/v2/static/img/logos/os/coreos.svg
+%%DATADIR%%/web/v2/static/img/logos/os/debian.svg
+%%DATADIR%%/web/v2/static/img/logos/os/docker.svg
+%%DATADIR%%/web/v2/static/img/logos/os/fedora.svg
+%%DATADIR%%/web/v2/static/img/logos/os/freebsd.svg
+%%DATADIR%%/web/v2/static/img/logos/os/freenas.svg
+%%DATADIR%%/web/v2/static/img/logos/os/gentoo.svg
+%%DATADIR%%/web/v2/static/img/logos/os/kubernetes.svg
+%%DATADIR%%/web/v2/static/img/logos/os/linux-small.svg
+%%DATADIR%%/web/v2/static/img/logos/os/linux.svg
+%%DATADIR%%/web/v2/static/img/logos/os/macos.svg
+%%DATADIR%%/web/v2/static/img/logos/os/manjaro.svg
+%%DATADIR%%/web/v2/static/img/logos/os/openstack.svg
+%%DATADIR%%/web/v2/static/img/logos/os/opensuse.svg
+%%DATADIR%%/web/v2/static/img/logos/os/openwrt.svg
+%%DATADIR%%/web/v2/static/img/logos/os/oracle.svg
+%%DATADIR%%/web/v2/static/img/logos/os/pfsense.svg
+%%DATADIR%%/web/v2/static/img/logos/os/placeholder.svg
+%%DATADIR%%/web/v2/static/img/logos/os/raspberry-pi.svg
+%%DATADIR%%/web/v2/static/img/logos/os/redhat.svg
+%%DATADIR%%/web/v2/static/img/logos/os/suse.svg
+%%DATADIR%%/web/v2/static/img/logos/os/ubuntu.svg
+%%DATADIR%%/web/v2/static/img/logos/services/access-point.svg
+%%DATADIR%%/web/v2/static/img/logos/services/activemq.svg
+%%DATADIR%%/web/v2/static/img/logos/services/adaptec.svg
+%%DATADIR%%/web/v2/static/img/logos/services/alerta.svg
+%%DATADIR%%/web/v2/static/img/logos/services/apache.svg
+%%DATADIR%%/web/v2/static/img/logos/services/apc.svg
+%%DATADIR%%/web/v2/static/img/logos/services/aws-sns.svg
+%%DATADIR%%/web/v2/static/img/logos/services/aws.svg
+%%DATADIR%%/web/v2/static/img/logos/services/beanstalkd.svg
+%%DATADIR%%/web/v2/static/img/logos/services/boinc.svg
+%%DATADIR%%/web/v2/static/img/logos/services/btrfs.svg
+%%DATADIR%%/web/v2/static/img/logos/services/ceph.svg
+%%DATADIR%%/web/v2/static/img/logos/services/chrony.svg
+%%DATADIR%%/web/v2/static/img/logos/services/cloud.svg
+%%DATADIR%%/web/v2/static/img/logos/services/concul.svg
+%%DATADIR%%/web/v2/static/img/logos/services/consul.svg
+%%DATADIR%%/web/v2/static/img/logos/services/container.svg
+%%DATADIR%%/web/v2/static/img/logos/services/couchdb.svg
+%%DATADIR%%/web/v2/static/img/logos/services/cups.svg
+%%DATADIR%%/web/v2/static/img/logos/services/data-encryption.svg
+%%DATADIR%%/web/v2/static/img/logos/services/ddos.svg
+%%DATADIR%%/web/v2/static/img/logos/services/discord.svg
+%%DATADIR%%/web/v2/static/img/logos/services/dns.svg
+%%DATADIR%%/web/v2/static/img/logos/services/docker.svg
+%%DATADIR%%/web/v2/static/img/logos/services/dovecot.svg
+%%DATADIR%%/web/v2/static/img/logos/services/elasticsearch.svg
+%%DATADIR%%/web/v2/static/img/logos/services/email.svg
+%%DATADIR%%/web/v2/static/img/logos/services/exim.svg
+%%DATADIR%%/web/v2/static/img/logos/services/fail2ban.svg
+%%DATADIR%%/web/v2/static/img/logos/services/flock.svg
+%%DATADIR%%/web/v2/static/img/logos/services/fluentd.svg
+%%DATADIR%%/web/v2/static/img/logos/services/fping.svg
+%%DATADIR%%/web/v2/static/img/logos/services/freeradius.svg
+%%DATADIR%%/web/v2/static/img/logos/services/fronius.svg
+%%DATADIR%%/web/v2/static/img/logos/services/gnu-freeipmi.svg
+%%DATADIR%%/web/v2/static/img/logos/services/golang.svg
+%%DATADIR%%/web/v2/static/img/logos/services/grafana.svg
+%%DATADIR%%/web/v2/static/img/logos/services/graphite.svg
+%%DATADIR%%/web/v2/static/img/logos/services/haproxy.svg
+%%DATADIR%%/web/v2/static/img/logos/services/hub.svg
+%%DATADIR%%/web/v2/static/img/logos/services/icecast.svg
+%%DATADIR%%/web/v2/static/img/logos/services/influxdb.svg
+%%DATADIR%%/web/v2/static/img/logos/services/ipfs.svg
+%%DATADIR%%/web/v2/static/img/logos/services/irc.svg
+%%DATADIR%%/web/v2/static/img/logos/services/isc.svg
+%%DATADIR%%/web/v2/static/img/logos/services/kafka.svg
+%%DATADIR%%/web/v2/static/img/logos/services/kairosdb.svg
+%%DATADIR%%/web/v2/static/img/logos/services/kavenegar.svg
+%%DATADIR%%/web/v2/static/img/logos/services/key-file.svg
+%%DATADIR%%/web/v2/static/img/logos/services/kubernetes.svg
+%%DATADIR%%/web/v2/static/img/logos/services/libreswan.svg
+%%DATADIR%%/web/v2/static/img/logos/services/libvirt.svg
+%%DATADIR%%/web/v2/static/img/logos/services/lighthttpd.svg
+%%DATADIR%%/web/v2/static/img/logos/services/linux.svg
+%%DATADIR%%/web/v2/static/img/logos/services/litespeed.svg
+%%DATADIR%%/web/v2/static/img/logos/services/lm-sensors.svg
+%%DATADIR%%/web/v2/static/img/logos/services/load-balancer.svg
+%%DATADIR%%/web/v2/static/img/logos/services/log-file.svg
+%%DATADIR%%/web/v2/static/img/logos/services/logstash.svg
+%%DATADIR%%/web/v2/static/img/logos/services/lxd.svg
+%%DATADIR%%/web/v2/static/img/logos/services/mariadb.svg
+%%DATADIR%%/web/v2/static/img/logos/services/memcached.svg
+%%DATADIR%%/web/v2/static/img/logos/services/messagebird.svg
+%%DATADIR%%/web/v2/static/img/logos/services/mongodb.svg
+%%DATADIR%%/web/v2/static/img/logos/services/monit.svg
+%%DATADIR%%/web/v2/static/img/logos/services/monitoring.svg
+%%DATADIR%%/web/v2/static/img/logos/services/mysql.svg
+%%DATADIR%%/web/v2/static/img/logos/services/netfilter.svg
+%%DATADIR%%/web/v2/static/img/logos/services/network-protocol.svg
+%%DATADIR%%/web/v2/static/img/logos/services/network.svg
+%%DATADIR%%/web/v2/static/img/logos/services/nfs.svg
+%%DATADIR%%/web/v2/static/img/logos/services/nginx-plus.svg
+%%DATADIR%%/web/v2/static/img/logos/services/nginx.svg
+%%DATADIR%%/web/v2/static/img/logos/services/notification-bell.svg
+%%DATADIR%%/web/v2/static/img/logos/services/nsd.svg
+%%DATADIR%%/web/v2/static/img/logos/services/ntpd.svg
+%%DATADIR%%/web/v2/static/img/logos/services/nut.svg
+%%DATADIR%%/web/v2/static/img/logos/services/nvidia.svg
+%%DATADIR%%/web/v2/static/img/logos/services/openldap.svg
+%%DATADIR%%/web/v2/static/img/logos/services/opensips.svg
+%%DATADIR%%/web/v2/static/img/logos/services/opentsdb.svg
+%%DATADIR%%/web/v2/static/img/logos/services/openvpn.svg
+%%DATADIR%%/web/v2/static/img/logos/services/openzfs.svg
+%%DATADIR%%/web/v2/static/img/logos/services/oracle.svg
+%%DATADIR%%/web/v2/static/img/logos/services/pagerduty.svg
+%%DATADIR%%/web/v2/static/img/logos/services/php-fpm.svg
+%%DATADIR%%/web/v2/static/img/logos/services/placeholder.svg
+%%DATADIR%%/web/v2/static/img/logos/services/postfix.svg
+%%DATADIR%%/web/v2/static/img/logos/services/postgresql.svg
+%%DATADIR%%/web/v2/static/img/logos/services/powerdns.svg
+%%DATADIR%%/web/v2/static/img/logos/services/processor.svg
+%%DATADIR%%/web/v2/static/img/logos/services/prometheus.svg
+%%DATADIR%%/web/v2/static/img/logos/services/prowl.svg
+%%DATADIR%%/web/v2/static/img/logos/services/proxysql.svg
+%%DATADIR%%/web/v2/static/img/logos/services/puppet.svg
+%%DATADIR%%/web/v2/static/img/logos/services/pushbullet.svg
+%%DATADIR%%/web/v2/static/img/logos/services/pushover.svg
+%%DATADIR%%/web/v2/static/img/logos/services/qos.svg
+%%DATADIR%%/web/v2/static/img/logos/services/rabbitmq.svg
+%%DATADIR%%/web/v2/static/img/logos/services/raspberry-pi.svg
+%%DATADIR%%/web/v2/static/img/logos/services/redis.svg
+%%DATADIR%%/web/v2/static/img/logos/services/rethinkdb.svg
+%%DATADIR%%/web/v2/static/img/logos/services/retroshare.svg
+%%DATADIR%%/web/v2/static/img/logos/services/rocketchat.svg
+%%DATADIR%%/web/v2/static/img/logos/services/samba.svg
+%%DATADIR%%/web/v2/static/img/logos/services/server-connection.svg
+%%DATADIR%%/web/v2/static/img/logos/services/slack.svg
+%%DATADIR%%/web/v2/static/img/logos/services/sma.svg
+%%DATADIR%%/web/v2/static/img/logos/services/smstools3.svg
+%%DATADIR%%/web/v2/static/img/logos/services/solr.svg
+%%DATADIR%%/web/v2/static/img/logos/services/spigot.svg
+%%DATADIR%%/web/v2/static/img/logos/services/springboot.svg
+%%DATADIR%%/web/v2/static/img/logos/services/squid.svg
+%%DATADIR%%/web/v2/static/img/logos/services/statsd.svg
+%%DATADIR%%/web/v2/static/img/logos/services/stiebel.svg
+%%DATADIR%%/web/v2/static/img/logos/services/systemd.svg
+%%DATADIR%%/web/v2/static/img/logos/services/telegram.svg
+%%DATADIR%%/web/v2/static/img/logos/services/temperature.svg
+%%DATADIR%%/web/v2/static/img/logos/services/tomcat.svg
+%%DATADIR%%/web/v2/static/img/logos/services/tor.svg
+%%DATADIR%%/web/v2/static/img/logos/services/traefik.svg
+%%DATADIR%%/web/v2/static/img/logos/services/twilio.svg
+%%DATADIR%%/web/v2/static/img/logos/services/unbound.svg
+%%DATADIR%%/web/v2/static/img/logos/services/uwsgi.svg
+%%DATADIR%%/web/v2/static/img/logos/services/varnish.svg
+%%DATADIR%%/web/v2/static/img/logos/services/veritas.svg
+%%DATADIR%%/web/v2/static/img/logos/services/xen.svg
+%%DATADIR%%/web/v2/static/img/mail/isotype.png
+%%DATADIR%%/web/v2/static/img/mail/isotype.svg
+%%DATADIR%%/web/v2/static/img/mail/logotype.png
+%%DATADIR%%/web/v2/static/img/mail/logotype.svg
+%%DATADIR%%/web/v2/static/img/no-filter-results.png
+%%DATADIR%%/web/v2/static/img/no-nodes-room.svg
+%%DATADIR%%/web/v2/static/img/rack.png
+%%DATADIR%%/web/v2/static/site/pages/holding-page-503/holding-page-503.css
+%%DATADIR%%/web/v2/static/site/pages/holding-page-503/holding-page-503.svg
+%%DATADIR%%/web/v2/static/site/pages/holding-page-503/index.html
+%%DATADIR%%/web/v2/static/site/pages/holding-page-503/multiple-logos-group.svg
+%%DATADIR%%/web/v2/static/site/pages/holding-page-503/netdata-logo-white.svg
+%%DATADIR%%/web/v2/static/site/pages/holding-page-503/reset.svg
+%%DATADIR%%/web/v2/static/splash.css
+%%DATADIR%%/web/v2/sw.js
%%DATADIR%%/web/version.txt
@mode
@owner

File Metadata

Mime Type
text/x-diff
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
6263329
Default Alt Text
netdata-1421-no-h2o-v2.patch (26 KB)

Event Timeline

diizzy changed the visibility from "diizzy (Daniel Engberg)" to "Public (No Login Required)".Aug 26 2023, 6:51 PM