net/mgmt/netdata: Update to 1.20.0

PR:		244323
Submitted by:	Dries Michiels <driesm.michiels@gmail.com>
Approved by:	maintainer timeout (mmohki@, 38 d)
This commit is contained in:
Matthias Andree 2020-04-01 08:59:14 +00:00
parent 75d7fd5db6
commit bcfbc9f97b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=530206
6 changed files with 182 additions and 116 deletions

View file

@ -2,9 +2,8 @@
# $FreeBSD$
PORTNAME= netdata
PORTVERSION= 1.19.0
PORTVERSION= 1.20.0
DISTVERSIONPREFIX= v
PORTREVISION= 1
CATEGORIES= net-mgmt
MAINTAINER= mmokhi@FreeBSD.org
@ -15,7 +14,9 @@ LICENSE= GPLv3
LIB_DEPENDS= libuuid.so:misc/e2fsprogs-libuuid
RUN_DEPENDS= bash:shells/bash \
curl:ftp/curl
curl:ftp/curl \
${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}urllib3>0:net/py-urllib3@${PY_FLAVOR}
USES= autoreconf cpe pathfix pkgconfig:both python shebangfix ssl
@ -28,8 +29,8 @@ NETDATA_LOG= /var/log/${PORTNAME}
NETDATA_PERST= /var/db/${PORTNAME}
GNU_CONFIGURE= yes
CPPFLAGS+= -D_WANT_VMMETER -I${LOCALBASE}/include
LIBS+= -L${LOCALBASE}/lib
CONFIGURE_ARGS= --disable-unit-tests
CPPFLAGS+= -D_WANT_VMMETER
INSTALL_TARGET= install-strip
SUB_LIST= NETDATA_CACHE=${NETDATA_CACHE} \

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1575076612
SHA256 (netdata-netdata-v1.19.0_GH0.tar.gz) = 007656f639d3544698af503f35550aeb4d4d5a06b81801bf5acf4ac21db68f6e
SIZE (netdata-netdata-v1.19.0_GH0.tar.gz) = 3443251
TIMESTAMP = 1583350154
SHA256 (netdata-netdata-v1.20.0_GH0.tar.gz) = c739e0fa8d6d7f433c0c7c8016b763e8f70519d67f0b5e7eca9ee5318f210d90
SIZE (netdata-netdata-v1.20.0_GH0.tar.gz) = 3598521

View file

@ -0,0 +1,112 @@
--- collectors/python.d.plugin/Makefile.am.orig 2020-02-21 01:50:30 UTC
+++ collectors/python.d.plugin/Makefile.am
@@ -142,109 +142,3 @@ dist_third_party_DATA = \
python_modules/third_party/boinc_client.py \
python_modules/third_party/monotonic.py \
$(NULL)
-
-pythonyaml2dir=$(pythonmodulesdir)/pyyaml2
-dist_pythonyaml2_DATA = \
- python_modules/pyyaml2/__init__.py \
- python_modules/pyyaml2/composer.py \
- python_modules/pyyaml2/constructor.py \
- python_modules/pyyaml2/cyaml.py \
- python_modules/pyyaml2/dumper.py \
- python_modules/pyyaml2/emitter.py \
- python_modules/pyyaml2/error.py \
- python_modules/pyyaml2/events.py \
- python_modules/pyyaml2/loader.py \
- python_modules/pyyaml2/nodes.py \
- python_modules/pyyaml2/parser.py \
- python_modules/pyyaml2/reader.py \
- python_modules/pyyaml2/representer.py \
- python_modules/pyyaml2/resolver.py \
- python_modules/pyyaml2/scanner.py \
- python_modules/pyyaml2/serializer.py \
- python_modules/pyyaml2/tokens.py \
- $(NULL)
-
-pythonyaml3dir=$(pythonmodulesdir)/pyyaml3
-dist_pythonyaml3_DATA = \
- python_modules/pyyaml3/__init__.py \
- python_modules/pyyaml3/composer.py \
- python_modules/pyyaml3/constructor.py \
- python_modules/pyyaml3/cyaml.py \
- python_modules/pyyaml3/dumper.py \
- python_modules/pyyaml3/emitter.py \
- python_modules/pyyaml3/error.py \
- python_modules/pyyaml3/events.py \
- python_modules/pyyaml3/loader.py \
- python_modules/pyyaml3/nodes.py \
- python_modules/pyyaml3/parser.py \
- python_modules/pyyaml3/reader.py \
- python_modules/pyyaml3/representer.py \
- python_modules/pyyaml3/resolver.py \
- python_modules/pyyaml3/scanner.py \
- python_modules/pyyaml3/serializer.py \
- python_modules/pyyaml3/tokens.py \
- $(NULL)
-
-python_urllib3dir=$(pythonmodulesdir)/urllib3
-dist_python_urllib3_DATA = \
- python_modules/urllib3/__init__.py \
- python_modules/urllib3/_collections.py \
- python_modules/urllib3/connection.py \
- python_modules/urllib3/connectionpool.py \
- python_modules/urllib3/exceptions.py \
- python_modules/urllib3/fields.py \
- python_modules/urllib3/filepost.py \
- python_modules/urllib3/response.py \
- python_modules/urllib3/poolmanager.py \
- python_modules/urllib3/request.py \
- $(NULL)
-
-python_urllib3_utildir=$(python_urllib3dir)/util
-dist_python_urllib3_util_DATA = \
- python_modules/urllib3/util/__init__.py \
- python_modules/urllib3/util/connection.py \
- python_modules/urllib3/util/request.py \
- python_modules/urllib3/util/response.py \
- python_modules/urllib3/util/retry.py \
- python_modules/urllib3/util/selectors.py \
- python_modules/urllib3/util/ssl_.py \
- python_modules/urllib3/util/timeout.py \
- python_modules/urllib3/util/url.py \
- python_modules/urllib3/util/wait.py \
- $(NULL)
-
-python_urllib3_packagesdir=$(python_urllib3dir)/packages
-dist_python_urllib3_packages_DATA = \
- python_modules/urllib3/packages/__init__.py \
- python_modules/urllib3/packages/ordered_dict.py \
- python_modules/urllib3/packages/six.py \
- $(NULL)
-
-python_urllib3_backportsdir=$(python_urllib3_packagesdir)/backports
-dist_python_urllib3_backports_DATA = \
- python_modules/urllib3/packages/backports/__init__.py \
- python_modules/urllib3/packages/backports/makefile.py \
- $(NULL)
-
-python_urllib3_ssl_match_hostnamedir=$(python_urllib3_packagesdir)/ssl_match_hostname
-dist_python_urllib3_ssl_match_hostname_DATA = \
- python_modules/urllib3/packages/ssl_match_hostname/__init__.py \
- python_modules/urllib3/packages/ssl_match_hostname/_implementation.py \
- $(NULL)
-
-python_urllib3_contribdir=$(python_urllib3dir)/contrib
-dist_python_urllib3_contrib_DATA = \
- python_modules/urllib3/contrib/__init__.py \
- python_modules/urllib3/contrib/appengine.py \
- python_modules/urllib3/contrib/ntlmpool.py \
- python_modules/urllib3/contrib/pyopenssl.py \
- python_modules/urllib3/contrib/securetransport.py \
- python_modules/urllib3/contrib/socks.py \
- $(NULL)
-
-python_urllib3_securetransportdir=$(python_urllib3_contribdir)/_securetransport
-dist_python_urllib3_securetransport_DATA = \
- python_modules/urllib3/contrib/_securetransport/__init__.py \
- python_modules/urllib3/contrib/_securetransport/bindings.py \
- python_modules/urllib3/contrib/_securetransport/low_level.py \
- $(NULL)

View file

@ -0,0 +1,14 @@
--- collectors/python.d.plugin/python_modules/bases/loaders.py.orig 2020-02-21 01:50:30 UTC
+++ collectors/python.d.plugin/python_modules/bases/loaders.py
@@ -10,9 +10,9 @@ PY_VERSION = version_info[:2]
try:
if PY_VERSION > (3, 1):
- from pyyaml3 import SafeLoader as YamlSafeLoader
+ from yaml import SafeLoader as YamlSafeLoader
else:
- from pyyaml2 import SafeLoader as YamlSafeLoader
+ from yaml import SafeLoader as YamlSafeLoader
except ImportError:
from yaml import SafeLoader as YamlSafeLoader

View file

@ -0,0 +1,33 @@
--- web/gui/index.html.orig 2020-02-21 01:50:30 UTC
+++ web/gui/index.html
@@ -93,10 +93,14 @@
<li title="Nodes view" data-toggle="tooltip" data-placement="bottom"><a onclick="openAuthenticatedUrl('console.html');" class="btn" target="_blank"><i class="fas fa-tv"></i>&nbsp;<span class="hidden-sm hidden-md">Nodes<sup class="beta"> beta</sup></span></a></li>
<li id="alarmsButton" title="check the health monitoring alarms and their log" data-toggle="tooltip" data-placement="bottom"><a href="#" class="btn" data-toggle="modal" data-target="#alarmsModal"><i class="fas fa-bell"></i>&nbsp;<span class="hidden-sm hidden-md">Alarms&nbsp;</span><span id="alarms_count_badge" class="badge"></span></a></li>
<li title="change dashboard settings" data-toggle="tooltip" data-placement="bottom"><a href="#" class="btn" data-toggle="modal" data-target="#optionsModal"><i class="fas fa-cog"></i>&nbsp;<span class="hidden-sm hidden-md">Settings</span></a></li>
+ <!--
<li title="check for netdata updates<br/>you should keep your netdata updated" data-toggle="tooltip" data-placement="bottom" class="hidden-sm" id="updateButton"><a href="#" class="btn" data-toggle="modal" data-target="#updateModal"><i class="fas fa-cloud-download-alt"></i> <span class="hidden-sm hidden-md">Update </span><span id="update_badge" class="badge"></span></a></li>
+ -->
+ <!--
<li title="the netdata wiki home at github<br/>remember to <b>give netdata a <i class=&quot;fas fa-star&quot;></i></b> !" data-toggle="tooltip" data-placement="bottom" class="hidden-xs hidden-sm hidden-md"><a href="https://github.com/netdata/netdata" class="btn" target="_blank"><i class="fab fa-github"></i></a></li>
<li title="follow netdata on twitter" data-toggle="tooltip" data-placement="bottom" class="hidden-xs hidden-sm hidden-md"><a href="https://twitter.com/linuxnetdata" class="btn" target="_blank"><i class="fab fa-twitter"></i></a></li>
<li title="like netdata on facebook" data-toggle="tooltip" data-placement="bottom" class="hidden-xs hidden-sm hidden-md"><a href="https://www.facebook.com/linuxnetdata/" class="btn" target="_blank"><i class="fab fa-facebook"></i></a></li>
+ -->
<li title="import / load a netdata snapshot" data-toggle="tooltip" data-placement="bottom" id="loadButton"><a href="#" class="btn" data-toggle="modal" data-target="#loadSnapshotModal"><i class="fas fa-download"></i>&nbsp;<span class="hidden-sm hidden-md hidden-lg">Import</span></a></li>
<li title="export / save a netdata snapshot" data-toggle="tooltip" data-placement="bottom" id="saveButton"><a href="#" class="btn" data-toggle="modal" data-target="#saveSnapshotModal"><i class="fas fa-upload"></i>&nbsp;<span class="hidden-sm hidden-md hidden-lg">Export</span></a></li>
<li title="print this dashboard to PDF" data-toggle="tooltip" data-placement="bottom" id="printButton"><a href="#" class="btn" data-toggle="modal" data-target="#printPreflightModal"><i class="fas fa-print"></i>&nbsp;<span class="hidden-sm hidden-md hidden-lg">Print</span></a></li>
@@ -110,6 +114,7 @@
<div id="navbar-highlight-content" class="navbar-highlight-content"></div>
</div>
+<!--
<div id="sign-in-banner" style="display: none">
<div class="container">
Like what you see?
@@ -120,6 +125,7 @@
</div>
</div>
</div>
+-->
<div id="masthead" style="display: none;">
<div class="container">

View file

@ -1,32 +1,15 @@
%%ETCDIR%%/charts.d/.keep
%%ETCDIR%%/edit-config
%%ETCDIR%%/health.d/.keep
%%ETCDIR%%/node.d/.keep
%%ETCDIR%%/python.d/.keep
%%ETCDIR%%/statsd.d/.keep
@sample(netdata,netdata,0640) lib/netdata/conf.d/apps_groups.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/aws_kinesis.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/ap.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/apache.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/apcupsd.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/cpu_apps.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/cpufreq.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/example.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/exim.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/hddtemp.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/libreswan.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/load_average.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/mem_apps.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/mysql.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/nginx.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/nut.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/opensips.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/phpfpm.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/postfix.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/sensors.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/squid.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/charts.d/tomcat.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/ebpf_process.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/fping.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/adaptec_raid.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/am2320.conf.sample
@ -40,6 +23,7 @@
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/btrfs.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/ceph.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/cgroups.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/cockroachdb.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/couchdb.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/cpu.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/dbengine.conf.sample
@ -84,6 +68,7 @@
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/redis.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/retroshare.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/riakkv.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/scaleio.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/softnet.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/squid.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/stiebeleltron.conf.sample
@ -94,6 +79,7 @@
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/tcp_orphans.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/tcp_resets.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/udp_errors.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/unbound.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/varnish.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/vcsa.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/health.d/vsphere.conf.sample
@ -131,6 +117,7 @@
@sample(netdata,netdata,0640) lib/netdata/conf.d/python.d/go_expvar.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/python.d/haproxy.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/python.d/hddtemp.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/python.d/hpssa.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/python.d/httpcheck.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/python.d/icecast.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/python.d/ipfs.conf.sample
@ -171,7 +158,6 @@
@sample(netdata,netdata,0640) lib/netdata/conf.d/python.d/tomcat.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/python.d/tor.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/python.d/traefik.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/python.d/unbound.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/python.d/uwsgi.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/python.d/varnish.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/python.d/w1sensor.conf.sample
@ -179,25 +165,12 @@
@sample(netdata,netdata,0640) lib/netdata/conf.d/statsd.d/example.conf.sample
@sample(netdata,netdata,0640) lib/netdata/conf.d/stream.conf.sample
libexec/netdata/charts.d/ap.chart.sh
libexec/netdata/charts.d/apache.chart.sh
libexec/netdata/charts.d/apcupsd.chart.sh
libexec/netdata/charts.d/cpu_apps.chart.sh
libexec/netdata/charts.d/cpufreq.chart.sh
libexec/netdata/charts.d/example.chart.sh
libexec/netdata/charts.d/exim.chart.sh
libexec/netdata/charts.d/hddtemp.chart.sh
libexec/netdata/charts.d/libreswan.chart.sh
libexec/netdata/charts.d/load_average.chart.sh
libexec/netdata/charts.d/mem_apps.chart.sh
libexec/netdata/charts.d/mysql.chart.sh
libexec/netdata/charts.d/nginx.chart.sh
libexec/netdata/charts.d/nut.chart.sh
libexec/netdata/charts.d/opensips.chart.sh
libexec/netdata/charts.d/phpfpm.chart.sh
libexec/netdata/charts.d/postfix.chart.sh
libexec/netdata/charts.d/sensors.chart.sh
libexec/netdata/charts.d/squid.chart.sh
libexec/netdata/charts.d/tomcat.chart.sh
libexec/netdata/node.d/fronius.node.js
libexec/netdata/node.d/named.node.js
libexec/netdata/node.d/node_modules/asn1-ber.js
@ -227,6 +200,7 @@ libexec/netdata/plugins.d/charts.d.plugin
%%CUPS%%libexec/netdata/plugins.d/cups.plugin
libexec/netdata/plugins.d/fping.plugin
%%FREEIPMI%%libexec/netdata/plugins.d/freeipmi.plugin
libexec/netdata/plugins.d/get-kubernetes-labels.sh
libexec/netdata/plugins.d/health-cmdapi-test.sh
libexec/netdata/plugins.d/ioping.plugin
libexec/netdata/plugins.d/loopsleepms.sh.inc
@ -259,6 +233,7 @@ libexec/netdata/python.d/gearman.chart.py
libexec/netdata/python.d/go_expvar.chart.py
libexec/netdata/python.d/haproxy.chart.py
libexec/netdata/python.d/hddtemp.chart.py
libexec/netdata/python.d/hpssa.chart.py
libexec/netdata/python.d/httpcheck.chart.py
libexec/netdata/python.d/icecast.chart.py
libexec/netdata/python.d/ipfs.chart.py
@ -298,82 +273,12 @@ libexec/netdata/python.d/python_modules/bases/charts.py
libexec/netdata/python.d/python_modules/bases/collection.py
libexec/netdata/python.d/python_modules/bases/loaders.py
libexec/netdata/python.d/python_modules/bases/loggers.py
libexec/netdata/python.d/python_modules/pyyaml2/__init__.py
libexec/netdata/python.d/python_modules/pyyaml2/composer.py
libexec/netdata/python.d/python_modules/pyyaml2/constructor.py
libexec/netdata/python.d/python_modules/pyyaml2/cyaml.py
libexec/netdata/python.d/python_modules/pyyaml2/dumper.py
libexec/netdata/python.d/python_modules/pyyaml2/emitter.py
libexec/netdata/python.d/python_modules/pyyaml2/error.py
libexec/netdata/python.d/python_modules/pyyaml2/events.py
libexec/netdata/python.d/python_modules/pyyaml2/loader.py
libexec/netdata/python.d/python_modules/pyyaml2/nodes.py
libexec/netdata/python.d/python_modules/pyyaml2/parser.py
libexec/netdata/python.d/python_modules/pyyaml2/reader.py
libexec/netdata/python.d/python_modules/pyyaml2/representer.py
libexec/netdata/python.d/python_modules/pyyaml2/resolver.py
libexec/netdata/python.d/python_modules/pyyaml2/scanner.py
libexec/netdata/python.d/python_modules/pyyaml2/serializer.py
libexec/netdata/python.d/python_modules/pyyaml2/tokens.py
libexec/netdata/python.d/python_modules/pyyaml3/__init__.py
libexec/netdata/python.d/python_modules/pyyaml3/composer.py
libexec/netdata/python.d/python_modules/pyyaml3/constructor.py
libexec/netdata/python.d/python_modules/pyyaml3/cyaml.py
libexec/netdata/python.d/python_modules/pyyaml3/dumper.py
libexec/netdata/python.d/python_modules/pyyaml3/emitter.py
libexec/netdata/python.d/python_modules/pyyaml3/error.py
libexec/netdata/python.d/python_modules/pyyaml3/events.py
libexec/netdata/python.d/python_modules/pyyaml3/loader.py
libexec/netdata/python.d/python_modules/pyyaml3/nodes.py
libexec/netdata/python.d/python_modules/pyyaml3/parser.py
libexec/netdata/python.d/python_modules/pyyaml3/reader.py
libexec/netdata/python.d/python_modules/pyyaml3/representer.py
libexec/netdata/python.d/python_modules/pyyaml3/resolver.py
libexec/netdata/python.d/python_modules/pyyaml3/scanner.py
libexec/netdata/python.d/python_modules/pyyaml3/serializer.py
libexec/netdata/python.d/python_modules/pyyaml3/tokens.py
libexec/netdata/python.d/python_modules/third_party/__init__.py
libexec/netdata/python.d/python_modules/third_party/boinc_client.py
libexec/netdata/python.d/python_modules/third_party/lm_sensors.py
libexec/netdata/python.d/python_modules/third_party/mcrcon.py
libexec/netdata/python.d/python_modules/third_party/monotonic.py
libexec/netdata/python.d/python_modules/third_party/ordereddict.py
libexec/netdata/python.d/python_modules/urllib3/__init__.py
libexec/netdata/python.d/python_modules/urllib3/_collections.py
libexec/netdata/python.d/python_modules/urllib3/connection.py
libexec/netdata/python.d/python_modules/urllib3/connectionpool.py
libexec/netdata/python.d/python_modules/urllib3/contrib/__init__.py
libexec/netdata/python.d/python_modules/urllib3/contrib/_securetransport/__init__.py
libexec/netdata/python.d/python_modules/urllib3/contrib/_securetransport/bindings.py
libexec/netdata/python.d/python_modules/urllib3/contrib/_securetransport/low_level.py
libexec/netdata/python.d/python_modules/urllib3/contrib/appengine.py
libexec/netdata/python.d/python_modules/urllib3/contrib/ntlmpool.py
libexec/netdata/python.d/python_modules/urllib3/contrib/pyopenssl.py
libexec/netdata/python.d/python_modules/urllib3/contrib/securetransport.py
libexec/netdata/python.d/python_modules/urllib3/contrib/socks.py
libexec/netdata/python.d/python_modules/urllib3/exceptions.py
libexec/netdata/python.d/python_modules/urllib3/fields.py
libexec/netdata/python.d/python_modules/urllib3/filepost.py
libexec/netdata/python.d/python_modules/urllib3/packages/__init__.py
libexec/netdata/python.d/python_modules/urllib3/packages/backports/__init__.py
libexec/netdata/python.d/python_modules/urllib3/packages/backports/makefile.py
libexec/netdata/python.d/python_modules/urllib3/packages/ordered_dict.py
libexec/netdata/python.d/python_modules/urllib3/packages/six.py
libexec/netdata/python.d/python_modules/urllib3/packages/ssl_match_hostname/__init__.py
libexec/netdata/python.d/python_modules/urllib3/packages/ssl_match_hostname/_implementation.py
libexec/netdata/python.d/python_modules/urllib3/poolmanager.py
libexec/netdata/python.d/python_modules/urllib3/request.py
libexec/netdata/python.d/python_modules/urllib3/response.py
libexec/netdata/python.d/python_modules/urllib3/util/__init__.py
libexec/netdata/python.d/python_modules/urllib3/util/connection.py
libexec/netdata/python.d/python_modules/urllib3/util/request.py
libexec/netdata/python.d/python_modules/urllib3/util/response.py
libexec/netdata/python.d/python_modules/urllib3/util/retry.py
libexec/netdata/python.d/python_modules/urllib3/util/selectors.py
libexec/netdata/python.d/python_modules/urllib3/util/ssl_.py
libexec/netdata/python.d/python_modules/urllib3/util/timeout.py
libexec/netdata/python.d/python_modules/urllib3/util/url.py
libexec/netdata/python.d/python_modules/urllib3/util/wait.py
libexec/netdata/python.d/rabbitmq.chart.py
libexec/netdata/python.d/redis.chart.py
libexec/netdata/python.d/rethinkdbs.chart.py
@ -388,12 +293,13 @@ libexec/netdata/python.d/squid.chart.py
libexec/netdata/python.d/tomcat.chart.py
libexec/netdata/python.d/tor.chart.py
libexec/netdata/python.d/traefik.chart.py
libexec/netdata/python.d/unbound.chart.py
libexec/netdata/python.d/uwsgi.chart.py
libexec/netdata/python.d/varnish.chart.py
libexec/netdata/python.d/w1sensor.chart.py
libexec/netdata/python.d/web_log.chart.py
sbin/netdata-claim.sh
sbin/netdata
sbin/netdatacli
@mode 4640
@owner netdata
@group netdata
@ -492,21 +398,21 @@ sbin/netdata
%%DATADIR%%/web/static/img/netdata-logomark.svg
%%DATADIR%%/web/tv.html
%%DATADIR%%/web/version.txt
%%NETDATA_CACHE%%/.keep
%%NETDATA_PERST%%/.keep
%%NETDATA_PERST%%/registry/.keep
%%NETDATA_LOG%%/.keep
@mode
@owner
@group
@sample(netdata,netdata,0640) %%ETCDIR%%/netdata.conf.sample
@dir(netdata,netdata,0750) %%ETCDIR%%
@dir(netdata,netdata,0750) %%ETCDIR%%/charts.d
@dir(netdata,netdata,0750) %%ETCDIR%%/custom-plugins.d
@dir(netdata,netdata,0750) %%ETCDIR%%/go.d
@dir(netdata,netdata,0750) %%ETCDIR%%/health.d
@dir(netdata,netdata,0750) %%ETCDIR%%/node.d
@dir(netdata,netdata,0750) %%ETCDIR%%/python.d
@dir(netdata,netdata,0750) %%ETCDIR%%/ssl
@dir(netdata,netdata,0750) %%ETCDIR%%/statsd.d
@dir(netdata,netdata,0750) %%DATADIR%%
@dir(netdata,netdata,0750) %%DATADIR%%/web
@dir(netdata,netdata,0750) %%NETDATA_CACHE%%
@dir(netdata,netdata,0750) %%NETDATA_PERST%%
@dir(netdata,netdata,0750) %%NETDATA_PERST%%/registry
@dir(netdata,netdata,0750) %%NETDATA_LOG%%