mirror of
https://github.com/netdata/netdata.git
synced 2025-04-17 03:02:41 +00:00
Fix make dist (#4401)
* fix make dist; fixes #4400 * added daemon dir * fix edit-config in dist * removed config.h from file dependencies * do not attempt to detect stock files on vanilla installations * add missing files to dist * another fix for missing dist files * modular plugins are now self-configured for automake * updated lgtm * fix cncf urls
This commit is contained in:
parent
6ea6dcc364
commit
d802f83e4a
96 changed files with 1240 additions and 224 deletions
.lgtm.ymlMakefile.amREADME.mdnetdata-installer.sh
collectors
charts.d.plugin
Makefile.am
ap
apache
apcupsd
cpu_apps
cpufreq
example
exim
hddtemp
libreswan
load_average
mem_apps
mysql
nginx
nut
opensips
phpfpm
postfix
sensors
squid
tomcat
node.d.plugin
python.d.plugin
Makefile.am
apache
beanstalk
bind_rndc
boinc
ceph
chrony
couchdb
cpufreq
cpuidle
dns_query_time
dnsdist
dockerd
dovecot
elasticsearch
example
exim
fail2ban
freeradius
go_expvar
haproxy
hddtemp
httpcheck
icecast
ipfs
isc_dhcpd
linux_power_supply
litespeed
logind
mdstat
megacli
memcached
mongodb
monit
mysql
nginx
nginx_plus
nsd
ntpd
ovpn_status_log
phpfpm
portcheck
postfix
postgres
powerdns
puppet
rabbitmq
redis
rethinkdbs
retroshare
samba
sensors
smartd_log
spigotmc
springboot
squid
tomcat
traefik
unbound
varnish
w1sensor
web_log
packaging
system
web/gui/images
|
@ -17,7 +17,7 @@ path_classifiers:
|
|||
- collectors/node.d.plugin/node_modules/extend.js
|
||||
- collectors/node.d.plugin/node_modules/net-snmp.js
|
||||
- collectors/node.d.plugin/node_modules/pixl-xml.js
|
||||
- web/lib/
|
||||
- web/css/
|
||||
- web/gui/lib/
|
||||
- web/gui/css/
|
||||
test:
|
||||
- tests/
|
||||
|
|
15
Makefile.am
15
Makefile.am
|
@ -24,8 +24,9 @@ EXTRA_DIST = \
|
|||
.eslintrc \
|
||||
.lgtm.yml \
|
||||
.travis \
|
||||
build/build.sh
|
||||
build/Dockerfile
|
||||
.github/CODEOWNERS \
|
||||
build/build.sh \
|
||||
build/Dockerfile \
|
||||
build/m4/jemalloc.m4 \
|
||||
build/m4/ax_c___atomic.m4 \
|
||||
build/m4/ax_check_enable_debug.m4 \
|
||||
|
@ -40,6 +41,7 @@ EXTRA_DIST = \
|
|||
build/m4/ax_c__generic.m4 \
|
||||
README.md \
|
||||
CONTRIBUTORS.md \
|
||||
CODE_OF_CONDUCT.md \
|
||||
LICENSE \
|
||||
REDISTRIBUTED.md \
|
||||
$(NULL)
|
||||
|
@ -77,6 +79,7 @@ dist_noinst_SCRIPTS= \
|
|||
SUBDIRS += \
|
||||
backends \
|
||||
collectors \
|
||||
daemon \
|
||||
database \
|
||||
health \
|
||||
libnetdata \
|
||||
|
@ -405,7 +408,7 @@ NETDATA_COMMON_LIBS = \
|
|||
|
||||
|
||||
sbin_PROGRAMS += netdata
|
||||
netdata_SOURCES = ../config.h $(NETDATA_FILES)
|
||||
netdata_SOURCES = $(NETDATA_FILES)
|
||||
netdata_LDADD = \
|
||||
$(NETDATA_COMMON_LIBS) \
|
||||
$(OPTIONAL_NFACCT_LIBS) \
|
||||
|
@ -413,7 +416,7 @@ netdata_LDADD = \
|
|||
|
||||
if ENABLE_PLUGIN_APPS
|
||||
plugins_PROGRAMS += apps.plugin
|
||||
apps_plugin_SOURCES = ../config.h $(APPS_PLUGIN_FILES)
|
||||
apps_plugin_SOURCES = $(APPS_PLUGIN_FILES)
|
||||
apps_plugin_LDADD = \
|
||||
$(NETDATA_COMMON_LIBS) \
|
||||
$(OPTIONAL_LIBCAP_LIBS) \
|
||||
|
@ -422,7 +425,7 @@ endif
|
|||
|
||||
if ENABLE_PLUGIN_CGROUP_NETWORK
|
||||
plugins_PROGRAMS += cgroup-network
|
||||
cgroup_network_SOURCES = ../config.h $(CGROUP_NETWORK_FILES)
|
||||
cgroup_network_SOURCES = $(CGROUP_NETWORK_FILES)
|
||||
cgroup_network_LDADD = \
|
||||
$(NETDATA_COMMON_LIBS) \
|
||||
$(NULL)
|
||||
|
@ -430,7 +433,7 @@ endif
|
|||
|
||||
if ENABLE_PLUGIN_FREEIPMI
|
||||
plugins_PROGRAMS += freeipmi.plugin
|
||||
freeipmi_plugin_SOURCES = ../config.h $(FREEIPMI_PLUGIN_FILES)
|
||||
freeipmi_plugin_SOURCES = $(FREEIPMI_PLUGIN_FILES)
|
||||
freeipmi_plugin_LDADD = \
|
||||
$(NETDATA_COMMON_LIBS) \
|
||||
$(OPTIONAL_IPMIMONITORING_LIBS) \
|
||||
|
|
|
@ -72,11 +72,11 @@ Netdata now has its own github organization `netdata`, so all github URLs are no
|
|||
|
||||
---
|
||||
|
||||
<img src="https://www.cncf.io/wp-content/uploads/2016/09/logo_cncf.png">
|
||||

|
||||
|
||||
`Jun 16, 2018` - **netdata in CNCF**
|
||||
|
||||
Netdata is now at the [Cloud Native Computing Foundation (CNCF) landscape](https://deploy-preview-842--landscape.netlify.com/grouping=no&sort=stars).
|
||||
Netdata is now at the [Cloud Native Computing Foundation (CNCF) landscape](https://landscape.cncf.io/grouping=no&sort=stars).
|
||||
|
||||
Read the [netdata presentation](https://docs.google.com/presentation/d/18C8bCTbtgKDWqPa57GXIjB2PbjjpjsUNkLtZEz6YK8s/edit?usp=sharing) we gave at CNCF TOC on Sep 18, 2018.
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
|
||||
|
||||
CLEANFILES = \
|
||||
charts.d.plugin \
|
||||
$(NULL)
|
||||
charts.d.plugin \
|
||||
$(NULL)
|
||||
|
||||
include $(top_srcdir)/build/subst.inc
|
||||
SUFFIXES = .in
|
||||
|
@ -14,81 +14,43 @@ dist_libconfig_DATA = \
|
|||
$(NULL)
|
||||
|
||||
dist_plugins_SCRIPTS = \
|
||||
charts.d.dryrun-helper.sh \
|
||||
charts.d.plugin \
|
||||
loopsleepms.sh.inc \
|
||||
$(NULL)
|
||||
charts.d.dryrun-helper.sh \
|
||||
charts.d.plugin \
|
||||
loopsleepms.sh.inc \
|
||||
$(NULL)
|
||||
|
||||
dist_noinst_DATA = \
|
||||
charts.d.plugin.in \
|
||||
ap/README.md \
|
||||
apache/README.md \
|
||||
apcupsd/README.md \
|
||||
cpu_apps/README.md \
|
||||
cpufreq/README.md \
|
||||
example/README.md \
|
||||
exim/README.md \
|
||||
hddtemp/README.md \
|
||||
libreswan/README.md \
|
||||
load_average/README.md \
|
||||
mem_apps/README.md \
|
||||
mysql/README.md \
|
||||
nginx/README.md \
|
||||
nut/README.md \
|
||||
opensips/README.md \
|
||||
phpfpm/README.md \
|
||||
postfix/README.md \
|
||||
sensors/README.md \
|
||||
squid/README.md \
|
||||
tomcat/README.md \
|
||||
$(NULL)
|
||||
charts.d.plugin.in \
|
||||
README.md \
|
||||
$(NULL)
|
||||
|
||||
dist_charts_SCRIPTS = \
|
||||
$(NULL)
|
||||
$(NULL)
|
||||
|
||||
dist_charts_DATA = \
|
||||
ap/ap.chart.sh \
|
||||
apcupsd/apcupsd.chart.sh \
|
||||
apache/apache.chart.sh \
|
||||
cpu_apps/cpu_apps.chart.sh \
|
||||
cpufreq/cpufreq.chart.sh \
|
||||
example/example.chart.sh \
|
||||
exim/exim.chart.sh \
|
||||
hddtemp/hddtemp.chart.sh \
|
||||
libreswan/libreswan.chart.sh \
|
||||
load_average/load_average.chart.sh \
|
||||
mem_apps/mem_apps.chart.sh \
|
||||
mysql/mysql.chart.sh \
|
||||
nginx/nginx.chart.sh \
|
||||
nut/nut.chart.sh \
|
||||
opensips/opensips.chart.sh \
|
||||
phpfpm/phpfpm.chart.sh \
|
||||
postfix/postfix.chart.sh \
|
||||
sensors/sensors.chart.sh \
|
||||
squid/squid.chart.sh \
|
||||
tomcat/tomcat.chart.sh \
|
||||
$(NULL)
|
||||
$(NULL)
|
||||
|
||||
chartsconfigdir=$(libconfigdir)/charts.d
|
||||
dist_chartsconfig_DATA = \
|
||||
ap/ap.conf \
|
||||
apache/apache.conf \
|
||||
apcupsd/apcupsd.conf \
|
||||
cpu_apps/cpu_apps.conf \
|
||||
cpufreq/cpufreq.conf \
|
||||
example/example.conf \
|
||||
exim/exim.conf \
|
||||
hddtemp/hddtemp.conf \
|
||||
libreswan/libreswan.conf \
|
||||
load_average/load_average.conf \
|
||||
mem_apps/mem_apps.conf \
|
||||
mysql/mysql.conf \
|
||||
nginx/nginx.conf \
|
||||
nut/nut.conf \
|
||||
opensips/opensips.conf \
|
||||
phpfpm/phpfpm.conf \
|
||||
postfix/postfix.conf \
|
||||
sensors/sensors.conf \
|
||||
squid/squid.conf \
|
||||
tomcat/tomcat.conf \
|
||||
$(NULL)
|
||||
|
||||
include ap/Makefile.inc
|
||||
include apache/Makefile.inc
|
||||
include apcupsd/Makefile.inc
|
||||
include cpu_apps/Makefile.inc
|
||||
include cpufreq/Makefile.inc
|
||||
include example/Makefile.inc
|
||||
include exim/Makefile.inc
|
||||
include hddtemp/Makefile.inc
|
||||
include libreswan/Makefile.inc
|
||||
include load_average/Makefile.inc
|
||||
include mem_apps/Makefile.inc
|
||||
include mysql/Makefile.inc
|
||||
include nginx/Makefile.inc
|
||||
include nut/Makefile.inc
|
||||
include opensips/Makefile.inc
|
||||
include phpfpm/Makefile.inc
|
||||
include postfix/Makefile.inc
|
||||
include sensors/Makefile.inc
|
||||
include squid/Makefile.inc
|
||||
include tomcat/Makefile.inc
|
||||
|
|
13
collectors/charts.d.plugin/ap/Makefile.inc
Normal file
13
collectors/charts.d.plugin/ap/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += ap/ap.chart.sh
|
||||
dist_chartsconfig_DATA += ap/ap.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += ap/README.md ap/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/apache/Makefile.inc
Normal file
13
collectors/charts.d.plugin/apache/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += apache/apache.chart.sh
|
||||
dist_chartsconfig_DATA += apache/apache.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += apache/README.md apache/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/apcupsd/Makefile.inc
Normal file
13
collectors/charts.d.plugin/apcupsd/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += apcupsd/apcupsd.chart.sh
|
||||
dist_chartsconfig_DATA += apcupsd/apcupsd.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += apcupsd/README.md apcupsd/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/cpu_apps/Makefile.inc
Normal file
13
collectors/charts.d.plugin/cpu_apps/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += cpu_apps/cpu_apps.chart.sh
|
||||
dist_chartsconfig_DATA += cpu_apps/cpu_apps.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += cpu_apps/README.md cpu_apps/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/cpufreq/Makefile.inc
Normal file
13
collectors/charts.d.plugin/cpufreq/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += cpufreq/cpufreq.chart.sh
|
||||
dist_chartsconfig_DATA += cpufreq/cpufreq.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += cpufreq/README.md cpufreq/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/example/Makefile.inc
Normal file
13
collectors/charts.d.plugin/example/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += example/example.chart.sh
|
||||
dist_chartsconfig_DATA += example/example.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += example/README.md example/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/exim/Makefile.inc
Normal file
13
collectors/charts.d.plugin/exim/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += exim/exim.chart.sh
|
||||
dist_chartsconfig_DATA += exim/exim.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += exim/README.md exim/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/hddtemp/Makefile.inc
Normal file
13
collectors/charts.d.plugin/hddtemp/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += hddtemp/hddtemp.chart.sh
|
||||
dist_chartsconfig_DATA += hddtemp/hddtemp.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += hddtemp/README.md hddtemp/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/libreswan/Makefile.inc
Normal file
13
collectors/charts.d.plugin/libreswan/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += libreswan/libreswan.chart.sh
|
||||
dist_chartsconfig_DATA += libreswan/libreswan.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += libreswan/README.md libreswan/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/load_average/Makefile.inc
Normal file
13
collectors/charts.d.plugin/load_average/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += load_average/load_average.chart.sh
|
||||
dist_chartsconfig_DATA += load_average/load_average.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += load_average/README.md load_average/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/mem_apps/Makefile.inc
Normal file
13
collectors/charts.d.plugin/mem_apps/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += mem_apps/mem_apps.chart.sh
|
||||
dist_chartsconfig_DATA += mem_apps/mem_apps.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += mem_apps/README.md mem_apps/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/mysql/Makefile.inc
Normal file
13
collectors/charts.d.plugin/mysql/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += mysql/mysql.chart.sh
|
||||
dist_chartsconfig_DATA += mysql/mysql.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += mysql/README.md mysql/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/nginx/Makefile.inc
Normal file
13
collectors/charts.d.plugin/nginx/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += nginx/nginx.chart.sh
|
||||
dist_chartsconfig_DATA += nginx/nginx.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += nginx/README.md nginx/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/nut/Makefile.inc
Normal file
13
collectors/charts.d.plugin/nut/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += nut/nut.chart.sh
|
||||
dist_chartsconfig_DATA += nut/nut.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += nut/README.md nut/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/opensips/Makefile.inc
Normal file
13
collectors/charts.d.plugin/opensips/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += opensips/opensips.chart.sh
|
||||
dist_chartsconfig_DATA += opensips/opensips.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += opensips/README.md opensips/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/phpfpm/Makefile.inc
Normal file
13
collectors/charts.d.plugin/phpfpm/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += phpfpm/phpfpm.chart.sh
|
||||
dist_chartsconfig_DATA += phpfpm/phpfpm.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += phpfpm/README.md phpfpm/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/postfix/Makefile.inc
Normal file
13
collectors/charts.d.plugin/postfix/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += postfix/postfix.chart.sh
|
||||
dist_chartsconfig_DATA += postfix/postfix.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += postfix/README.md postfix/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/sensors/Makefile.inc
Normal file
13
collectors/charts.d.plugin/sensors/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += sensors/sensors.chart.sh
|
||||
dist_chartsconfig_DATA += sensors/sensors.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += sensors/README.md sensors/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/squid/Makefile.inc
Normal file
13
collectors/charts.d.plugin/squid/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += squid/squid.chart.sh
|
||||
dist_chartsconfig_DATA += squid/squid.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += squid/README.md squid/Makefile.inc
|
||||
|
13
collectors/charts.d.plugin/tomcat/Makefile.inc
Normal file
13
collectors/charts.d.plugin/tomcat/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_charts_DATA += tomcat/tomcat.chart.sh
|
||||
dist_chartsconfig_DATA += tomcat/tomcat.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += tomcat/README.md tomcat/Makefile.inc
|
||||
|
|
@ -19,11 +19,6 @@ dist_plugins_SCRIPTS = \
|
|||
dist_noinst_DATA = \
|
||||
node.d.plugin.in \
|
||||
README.md \
|
||||
named/README.md \
|
||||
fronius/README.md \
|
||||
sma_webbox/README.md \
|
||||
snmp/README.md \
|
||||
stiebeleltron/README.md \
|
||||
$(NULL)
|
||||
|
||||
nodeconfigdir=$(libconfigdir)/node.d
|
||||
|
@ -31,13 +26,14 @@ dist_nodeconfig_DATA = \
|
|||
$(NULL)
|
||||
|
||||
dist_node_DATA = \
|
||||
named/named.node.js \
|
||||
fronius/fronius.node.js \
|
||||
sma_webbox/sma_webbox.node.js \
|
||||
snmp/snmp.node.js \
|
||||
stiebeleltron/stiebeleltron.node.js \
|
||||
$(NULL)
|
||||
|
||||
include fronius/Makefile.inc
|
||||
include named/Makefile.inc
|
||||
include sma_webbox/Makefile.inc
|
||||
include snmp/Makefile.inc
|
||||
include stiebeleltron/Makefile.inc
|
||||
|
||||
nodemodulesdir=$(nodedir)/node_modules
|
||||
dist_nodemodules_DATA = \
|
||||
node_modules/netdata.js \
|
||||
|
|
13
collectors/node.d.plugin/fronius/Makefile.inc
Normal file
13
collectors/node.d.plugin/fronius/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_node_DATA += fronius/fronius.node.js
|
||||
# dist_nodeconfig_DATA += fronius/fronius.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += fronius/README.md fronius/Makefile.inc
|
||||
|
13
collectors/node.d.plugin/named/Makefile.inc
Normal file
13
collectors/node.d.plugin/named/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_node_DATA += named/named.node.js
|
||||
# dist_nodeconfig_DATA += named/named.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += named/README.md named/Makefile.inc
|
||||
|
13
collectors/node.d.plugin/sma_webbox/Makefile.inc
Normal file
13
collectors/node.d.plugin/sma_webbox/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_node_DATA += sma_webbox/sma_webbox.node.js
|
||||
# dist_nodeconfig_DATA += sma_webbox/sma_webbox.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += sma_webbox/README.md sma_webbox/Makefile.inc
|
||||
|
13
collectors/node.d.plugin/snmp/Makefile.inc
Normal file
13
collectors/node.d.plugin/snmp/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_node_DATA += snmp/snmp.node.js
|
||||
# dist_nodeconfig_DATA += snmp/snmp.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += snmp/README.md snmp/Makefile.inc
|
||||
|
13
collectors/node.d.plugin/stiebeleltron/Makefile.inc
Normal file
13
collectors/node.d.plugin/stiebeleltron/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_node_DATA += stiebeleltron/stiebeleltron.node.js
|
||||
# dist_nodeconfig_DATA += stiebeleltron/stiebeleltron.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += stiebeleltron/README.md stiebeleltron/Makefile.inc
|
||||
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
|
||||
CLEANFILES = \
|
||||
python.d.plugin \
|
||||
$(NULL)
|
||||
python.d.plugin \
|
||||
$(NULL)
|
||||
|
||||
include $(top_srcdir)/build/subst.inc
|
||||
SUFFIXES = .in
|
||||
|
@ -13,146 +13,86 @@ dist_libconfig_DATA = \
|
|||
$(NULL)
|
||||
|
||||
dist_plugins_SCRIPTS = \
|
||||
python.d.plugin \
|
||||
$(NULL)
|
||||
python.d.plugin \
|
||||
$(NULL)
|
||||
|
||||
dist_noinst_DATA = \
|
||||
python.d.plugin.in \
|
||||
README.md \
|
||||
$(NULL)
|
||||
python.d.plugin.in \
|
||||
README.md \
|
||||
$(NULL)
|
||||
|
||||
pythonconfigdir=$(libconfigdir)/python.d
|
||||
dist_pythonconfig_DATA = \
|
||||
apache/apache.conf \
|
||||
beanstalk/beanstalk.conf \
|
||||
bind_rndc/bind_rndc.conf \
|
||||
boinc/boinc.conf \
|
||||
ceph/ceph.conf \
|
||||
chrony/chrony.conf \
|
||||
couchdb/couchdb.conf \
|
||||
cpuidle/cpuidle.conf \
|
||||
cpufreq/cpufreq.conf \
|
||||
dns_query_time/dns_query_time.conf \
|
||||
dnsdist/dnsdist.conf \
|
||||
dockerd/dockerd.conf \
|
||||
dovecot/dovecot.conf \
|
||||
elasticsearch/elasticsearch.conf \
|
||||
example/example.conf \
|
||||
exim/exim.conf \
|
||||
fail2ban/fail2ban.conf \
|
||||
freeradius/freeradius.conf \
|
||||
go_expvar/go_expvar.conf \
|
||||
haproxy/haproxy.conf \
|
||||
hddtemp/hddtemp.conf \
|
||||
httpcheck/httpcheck.conf \
|
||||
icecast/icecast.conf \
|
||||
ipfs/ipfs.conf \
|
||||
isc_dhcpd/isc_dhcpd.conf \
|
||||
linux_power_supply/linux_power_supply.conf \
|
||||
litespeed/litespeed.conf \
|
||||
logind/logind.conf \
|
||||
mdstat/mdstat.conf \
|
||||
megacli/megacli.conf \
|
||||
memcached/memcached.conf \
|
||||
mongodb/mongodb.conf \
|
||||
monit/monit.conf \
|
||||
mysql/mysql.conf \
|
||||
nginx/nginx.conf \
|
||||
nginx_plus/nginx_plus.conf \
|
||||
nsd/nsd.conf \
|
||||
ntpd/ntpd.conf \
|
||||
ovpn_status_log/ovpn_status_log.conf \
|
||||
phpfpm/phpfpm.conf \
|
||||
portcheck/portcheck.conf \
|
||||
postfix/postfix.conf \
|
||||
postgres/postgres.conf \
|
||||
powerdns/powerdns.conf \
|
||||
puppet/puppet.conf \
|
||||
rabbitmq/rabbitmq.conf \
|
||||
redis/redis.conf \
|
||||
rethinkdbs/rethinkdbs.conf \
|
||||
retroshare/retroshare.conf \
|
||||
samba/samba.conf \
|
||||
sensors/sensors.conf \
|
||||
springboot/springboot.conf \
|
||||
spigotmc/spigotmc.conf \
|
||||
squid/squid.conf \
|
||||
smartd_log/smartd_log.conf \
|
||||
tomcat/tomcat.conf \
|
||||
traefik/traefik.conf \
|
||||
unbound/unbound.conf \
|
||||
varnish/varnish.conf \
|
||||
w1sensor/w1sensor.conf \
|
||||
web_log/web_log.conf \
|
||||
$(NULL)
|
||||
|
||||
dist_python_SCRIPTS = \
|
||||
$(NULL)
|
||||
|
||||
dist_python_DATA = \
|
||||
apache/apache.chart.py \
|
||||
beanstalk/beanstalk.chart.py \
|
||||
bind_rndc/bind_rndc.chart.py \
|
||||
boinc/boinc.chart.py \
|
||||
ceph/ceph.chart.py \
|
||||
chrony/chrony.chart.py \
|
||||
couchdb/couchdb.chart.py \
|
||||
cpufreq/cpufreq.chart.py \
|
||||
cpuidle/cpuidle.chart.py \
|
||||
dns_query_time/dns_query_time.chart.py \
|
||||
dnsdist/dnsdist.chart.py \
|
||||
dockerd/dockerd.chart.py \
|
||||
dovecot/dovecot.chart.py \
|
||||
elasticsearch/elasticsearch.chart.py \
|
||||
example/example.chart.py \
|
||||
exim/exim.chart.py \
|
||||
fail2ban/fail2ban.chart.py \
|
||||
freeradius/freeradius.chart.py \
|
||||
go_expvar/go_expvar.chart.py \
|
||||
haproxy/haproxy.chart.py \
|
||||
hddtemp/hddtemp.chart.py \
|
||||
httpcheck/httpcheck.chart.py \
|
||||
icecast/icecast.chart.py \
|
||||
ipfs/ipfs.chart.py \
|
||||
isc_dhcpd/isc_dhcpd.chart.py \
|
||||
linux_power_supply/linux_power_supply.chart.py \
|
||||
litespeed/litespeed.chart.py \
|
||||
logind/logind.chart.py \
|
||||
mdstat/mdstat.chart.py \
|
||||
megacli/megacli.chart.py \
|
||||
memcached/memcached.chart.py \
|
||||
mongodb/mongodb.chart.py \
|
||||
monit/monit.chart.py \
|
||||
mysql/mysql.chart.py \
|
||||
nginx/nginx.chart.py \
|
||||
nginx_plus/nginx_plus.chart.py \
|
||||
nsd/nsd.chart.py \
|
||||
ntpd/ntpd.chart.py \
|
||||
ovpn_status_log/ovpn_status_log.chart.py \
|
||||
phpfpm/phpfpm.chart.py \
|
||||
portcheck/portcheck.chart.py \
|
||||
postfix/postfix.chart.py \
|
||||
postgres/postgres.chart.py \
|
||||
powerdns/powerdns.chart.py \
|
||||
puppet/puppet.chart.py \
|
||||
rabbitmq/rabbitmq.chart.py \
|
||||
redis/redis.chart.py \
|
||||
rethinkdbs/rethinkdbs.chart.py \
|
||||
retroshare/retroshare.chart.py \
|
||||
samba/samba.chart.py \
|
||||
sensors/sensors.chart.py \
|
||||
spigotmc/spigotmc.chart.py \
|
||||
springboot/springboot.chart.py \
|
||||
squid/squid.chart.py \
|
||||
smartd_log/smartd_log.chart.py \
|
||||
tomcat/tomcat.chart.py \
|
||||
traefik/traefik.chart.py \
|
||||
unbound/unbound.chart.py \
|
||||
varnish/varnish.chart.py \
|
||||
w1sensor/w1sensor.chart.py \
|
||||
web_log/web_log.chart.py \
|
||||
$(NULL)
|
||||
|
||||
include apache/Makefile.inc
|
||||
include beanstalk/Makefile.inc
|
||||
include bind_rndc/Makefile.inc
|
||||
include boinc/Makefile.inc
|
||||
include ceph/Makefile.inc
|
||||
include chrony/Makefile.inc
|
||||
include couchdb/Makefile.inc
|
||||
include cpufreq/Makefile.inc
|
||||
include cpuidle/Makefile.inc
|
||||
include dnsdist/Makefile.inc
|
||||
include dns_query_time/Makefile.inc
|
||||
include dockerd/Makefile.inc
|
||||
include dovecot/Makefile.inc
|
||||
include elasticsearch/Makefile.inc
|
||||
include example/Makefile.inc
|
||||
include exim/Makefile.inc
|
||||
include fail2ban/Makefile.inc
|
||||
include freeradius/Makefile.inc
|
||||
include go_expvar/Makefile.inc
|
||||
include haproxy/Makefile.inc
|
||||
include hddtemp/Makefile.inc
|
||||
include httpcheck/Makefile.inc
|
||||
include icecast/Makefile.inc
|
||||
include ipfs/Makefile.inc
|
||||
include isc_dhcpd/Makefile.inc
|
||||
include linux_power_supply/Makefile.inc
|
||||
include litespeed/Makefile.inc
|
||||
include logind/Makefile.inc
|
||||
include mdstat/Makefile.inc
|
||||
include megacli/Makefile.inc
|
||||
include memcached/Makefile.inc
|
||||
include mongodb/Makefile.inc
|
||||
include monit/Makefile.inc
|
||||
include mysql/Makefile.inc
|
||||
include nginx/Makefile.inc
|
||||
include nginx_plus/Makefile.inc
|
||||
include nsd/Makefile.inc
|
||||
include ntpd/Makefile.inc
|
||||
include ovpn_status_log/Makefile.inc
|
||||
include phpfpm/Makefile.inc
|
||||
include portcheck/Makefile.inc
|
||||
include postfix/Makefile.inc
|
||||
include postgres/Makefile.inc
|
||||
include powerdns/Makefile.inc
|
||||
include puppet/Makefile.inc
|
||||
include rabbitmq/Makefile.inc
|
||||
include redis/Makefile.inc
|
||||
include rethinkdbs/Makefile.inc
|
||||
include retroshare/Makefile.inc
|
||||
include samba/Makefile.inc
|
||||
include sensors/Makefile.inc
|
||||
include smartd_log/Makefile.inc
|
||||
include spigotmc/Makefile.inc
|
||||
include springboot/Makefile.inc
|
||||
include squid/Makefile.inc
|
||||
include tomcat/Makefile.inc
|
||||
include traefik/Makefile.inc
|
||||
include unbound/Makefile.inc
|
||||
include varnish/Makefile.inc
|
||||
include w1sensor/Makefile.inc
|
||||
include web_log/Makefile.inc
|
||||
|
||||
pythonmodulesdir=$(pythondir)/python_modules
|
||||
dist_pythonmodules_DATA = \
|
||||
python_modules/__init__.py \
|
||||
|
|
13
collectors/python.d.plugin/apache/Makefile.inc
Normal file
13
collectors/python.d.plugin/apache/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += apache/apache.chart.py
|
||||
dist_pythonconfig_DATA += apache/apache.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += apache/README.md apache/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/beanstalk/Makefile.inc
Normal file
13
collectors/python.d.plugin/beanstalk/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += beanstalk/beanstalk.chart.py
|
||||
dist_pythonconfig_DATA += beanstalk/beanstalk.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += beanstalk/README.md beanstalk/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/bind_rndc/Makefile.inc
Normal file
13
collectors/python.d.plugin/bind_rndc/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += bind_rndc/bind_rndc.chart.py
|
||||
dist_pythonconfig_DATA += bind_rndc/bind_rndc.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += bind_rndc/README.md bind_rndc/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/boinc/Makefile.inc
Normal file
13
collectors/python.d.plugin/boinc/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += boinc/boinc.chart.py
|
||||
dist_pythonconfig_DATA += boinc/boinc.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += boinc/README.md boinc/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/ceph/Makefile.inc
Normal file
13
collectors/python.d.plugin/ceph/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += ceph/ceph.chart.py
|
||||
dist_pythonconfig_DATA += ceph/ceph.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += ceph/README.md ceph/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/chrony/Makefile.inc
Normal file
13
collectors/python.d.plugin/chrony/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += chrony/chrony.chart.py
|
||||
dist_pythonconfig_DATA += chrony/chrony.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += chrony/README.md chrony/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/couchdb/Makefile.inc
Normal file
13
collectors/python.d.plugin/couchdb/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += couchdb/couchdb.chart.py
|
||||
dist_pythonconfig_DATA += couchdb/couchdb.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += couchdb/README.md couchdb/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/cpufreq/Makefile.inc
Normal file
13
collectors/python.d.plugin/cpufreq/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += cpufreq/cpufreq.chart.py
|
||||
dist_pythonconfig_DATA += cpufreq/cpufreq.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += cpufreq/README.md cpufreq/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/cpuidle/Makefile.inc
Normal file
13
collectors/python.d.plugin/cpuidle/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += cpuidle/cpuidle.chart.py
|
||||
dist_pythonconfig_DATA += cpuidle/cpuidle.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += cpuidle/README.md cpuidle/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/dns_query_time/Makefile.inc
Normal file
13
collectors/python.d.plugin/dns_query_time/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += dns_query_time/dns_query_time.chart.py
|
||||
dist_pythonconfig_DATA += dns_query_time/dns_query_time.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += dns_query_time/README.md dns_query_time/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/dnsdist/Makefile.inc
Normal file
13
collectors/python.d.plugin/dnsdist/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += dnsdist/dnsdist.chart.py
|
||||
dist_pythonconfig_DATA += dnsdist/dnsdist.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += dnsdist/README.md dnsdist/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/dockerd/Makefile.inc
Normal file
13
collectors/python.d.plugin/dockerd/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += dockerd/dockerd.chart.py
|
||||
dist_pythonconfig_DATA += dockerd/dockerd.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += dockerd/README.md dockerd/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/dovecot/Makefile.inc
Normal file
13
collectors/python.d.plugin/dovecot/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += dovecot/dovecot.chart.py
|
||||
dist_pythonconfig_DATA += dovecot/dovecot.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += dovecot/README.md dovecot/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/elasticsearch/Makefile.inc
Normal file
13
collectors/python.d.plugin/elasticsearch/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += elasticsearch/elasticsearch.chart.py
|
||||
dist_pythonconfig_DATA += elasticsearch/elasticsearch.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += elasticsearch/README.md elasticsearch/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/example/Makefile.inc
Normal file
13
collectors/python.d.plugin/example/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += example/example.chart.py
|
||||
dist_pythonconfig_DATA += example/example.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += example/README.md example/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/exim/Makefile.inc
Normal file
13
collectors/python.d.plugin/exim/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += exim/exim.chart.py
|
||||
dist_pythonconfig_DATA += exim/exim.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += exim/README.md exim/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/fail2ban/Makefile.inc
Normal file
13
collectors/python.d.plugin/fail2ban/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += fail2ban/fail2ban.chart.py
|
||||
dist_pythonconfig_DATA += fail2ban/fail2ban.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += fail2ban/README.md fail2ban/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/freeradius/Makefile.inc
Normal file
13
collectors/python.d.plugin/freeradius/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += freeradius/freeradius.chart.py
|
||||
dist_pythonconfig_DATA += freeradius/freeradius.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += freeradius/README.md freeradius/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/go_expvar/Makefile.inc
Normal file
13
collectors/python.d.plugin/go_expvar/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += go_expvar/go_expvar.chart.py
|
||||
dist_pythonconfig_DATA += go_expvar/go_expvar.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += go_expvar/README.md go_expvar/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/haproxy/Makefile.inc
Normal file
13
collectors/python.d.plugin/haproxy/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += haproxy/haproxy.chart.py
|
||||
dist_pythonconfig_DATA += haproxy/haproxy.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += haproxy/README.md haproxy/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/hddtemp/Makefile.inc
Normal file
13
collectors/python.d.plugin/hddtemp/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += hddtemp/hddtemp.chart.py
|
||||
dist_pythonconfig_DATA += hddtemp/hddtemp.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += hddtemp/README.md hddtemp/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/httpcheck/Makefile.inc
Normal file
13
collectors/python.d.plugin/httpcheck/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += httpcheck/httpcheck.chart.py
|
||||
dist_pythonconfig_DATA += httpcheck/httpcheck.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += httpcheck/README.md httpcheck/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/icecast/Makefile.inc
Normal file
13
collectors/python.d.plugin/icecast/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += icecast/icecast.chart.py
|
||||
dist_pythonconfig_DATA += icecast/icecast.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += icecast/README.md icecast/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/ipfs/Makefile.inc
Normal file
13
collectors/python.d.plugin/ipfs/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += ipfs/ipfs.chart.py
|
||||
dist_pythonconfig_DATA += ipfs/ipfs.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += ipfs/README.md ipfs/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/isc_dhcpd/Makefile.inc
Normal file
13
collectors/python.d.plugin/isc_dhcpd/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += isc_dhcpd/isc_dhcpd.chart.py
|
||||
dist_pythonconfig_DATA += isc_dhcpd/isc_dhcpd.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += isc_dhcpd/README.md isc_dhcpd/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/linux_power_supply/Makefile.inc
Normal file
13
collectors/python.d.plugin/linux_power_supply/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += linux_power_supply/linux_power_supply.chart.py
|
||||
dist_pythonconfig_DATA += linux_power_supply/linux_power_supply.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += linux_power_supply/README.md linux_power_supply/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/litespeed/Makefile.inc
Normal file
13
collectors/python.d.plugin/litespeed/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += litespeed/litespeed.chart.py
|
||||
dist_pythonconfig_DATA += litespeed/litespeed.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += litespeed/README.md litespeed/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/logind/Makefile.inc
Normal file
13
collectors/python.d.plugin/logind/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += logind/logind.chart.py
|
||||
dist_pythonconfig_DATA += logind/logind.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += logind/README.md logind/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/mdstat/Makefile.inc
Normal file
13
collectors/python.d.plugin/mdstat/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += mdstat/mdstat.chart.py
|
||||
dist_pythonconfig_DATA += mdstat/mdstat.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += mdstat/README.md mdstat/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/megacli/Makefile.inc
Normal file
13
collectors/python.d.plugin/megacli/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += megacli/megacli.chart.py
|
||||
dist_pythonconfig_DATA += megacli/megacli.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += megacli/README.md megacli/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/memcached/Makefile.inc
Normal file
13
collectors/python.d.plugin/memcached/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += memcached/memcached.chart.py
|
||||
dist_pythonconfig_DATA += memcached/memcached.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += memcached/README.md memcached/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/mongodb/Makefile.inc
Normal file
13
collectors/python.d.plugin/mongodb/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += mongodb/mongodb.chart.py
|
||||
dist_pythonconfig_DATA += mongodb/mongodb.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += mongodb/README.md mongodb/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/monit/Makefile.inc
Normal file
13
collectors/python.d.plugin/monit/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += monit/monit.chart.py
|
||||
dist_pythonconfig_DATA += monit/monit.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += monit/README.md monit/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/mysql/Makefile.inc
Normal file
13
collectors/python.d.plugin/mysql/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += mysql/mysql.chart.py
|
||||
dist_pythonconfig_DATA += mysql/mysql.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += mysql/README.md mysql/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/nginx/Makefile.inc
Normal file
13
collectors/python.d.plugin/nginx/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += nginx/nginx.chart.py
|
||||
dist_pythonconfig_DATA += nginx/nginx.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += nginx/README.md nginx/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/nginx_plus/Makefile.inc
Normal file
13
collectors/python.d.plugin/nginx_plus/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += nginx_plus/nginx_plus.chart.py
|
||||
dist_pythonconfig_DATA += nginx_plus/nginx_plus.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += nginx_plus/README.md nginx_plus/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/nsd/Makefile.inc
Normal file
13
collectors/python.d.plugin/nsd/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += nsd/nsd.chart.py
|
||||
dist_pythonconfig_DATA += nsd/nsd.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += nsd/README.md nsd/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/ntpd/Makefile.inc
Normal file
13
collectors/python.d.plugin/ntpd/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += ntpd/ntpd.chart.py
|
||||
dist_pythonconfig_DATA += ntpd/ntpd.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += ntpd/README.md ntpd/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/ovpn_status_log/Makefile.inc
Normal file
13
collectors/python.d.plugin/ovpn_status_log/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += ovpn_status_log/ovpn_status_log.chart.py
|
||||
dist_pythonconfig_DATA += ovpn_status_log/ovpn_status_log.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += ovpn_status_log/README.md ovpn_status_log/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/phpfpm/Makefile.inc
Normal file
13
collectors/python.d.plugin/phpfpm/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += phpfpm/phpfpm.chart.py
|
||||
dist_pythonconfig_DATA += phpfpm/phpfpm.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += phpfpm/README.md phpfpm/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/portcheck/Makefile.inc
Normal file
13
collectors/python.d.plugin/portcheck/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += portcheck/portcheck.chart.py
|
||||
dist_pythonconfig_DATA += portcheck/portcheck.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += portcheck/README.md portcheck/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/postfix/Makefile.inc
Normal file
13
collectors/python.d.plugin/postfix/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += postfix/postfix.chart.py
|
||||
dist_pythonconfig_DATA += postfix/postfix.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += postfix/README.md postfix/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/postgres/Makefile.inc
Normal file
13
collectors/python.d.plugin/postgres/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += postgres/postgres.chart.py
|
||||
dist_pythonconfig_DATA += postgres/postgres.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += postgres/README.md postgres/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/powerdns/Makefile.inc
Normal file
13
collectors/python.d.plugin/powerdns/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += powerdns/powerdns.chart.py
|
||||
dist_pythonconfig_DATA += powerdns/powerdns.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += powerdns/README.md powerdns/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/puppet/Makefile.inc
Normal file
13
collectors/python.d.plugin/puppet/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += puppet/puppet.chart.py
|
||||
dist_pythonconfig_DATA += puppet/puppet.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += puppet/README.md puppet/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/rabbitmq/Makefile.inc
Normal file
13
collectors/python.d.plugin/rabbitmq/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += rabbitmq/rabbitmq.chart.py
|
||||
dist_pythonconfig_DATA += rabbitmq/rabbitmq.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += rabbitmq/README.md rabbitmq/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/redis/Makefile.inc
Normal file
13
collectors/python.d.plugin/redis/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += redis/redis.chart.py
|
||||
dist_pythonconfig_DATA += redis/redis.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += redis/README.md redis/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/rethinkdbs/Makefile.inc
Normal file
13
collectors/python.d.plugin/rethinkdbs/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += rethinkdbs/rethinkdbs.chart.py
|
||||
dist_pythonconfig_DATA += rethinkdbs/rethinkdbs.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += rethinkdbs/README.md rethinkdbs/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/retroshare/Makefile.inc
Normal file
13
collectors/python.d.plugin/retroshare/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += retroshare/retroshare.chart.py
|
||||
dist_pythonconfig_DATA += retroshare/retroshare.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += retroshare/README.md retroshare/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/samba/Makefile.inc
Normal file
13
collectors/python.d.plugin/samba/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += samba/samba.chart.py
|
||||
dist_pythonconfig_DATA += samba/samba.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += samba/README.md samba/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/sensors/Makefile.inc
Normal file
13
collectors/python.d.plugin/sensors/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += sensors/sensors.chart.py
|
||||
dist_pythonconfig_DATA += sensors/sensors.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += sensors/README.md sensors/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/smartd_log/Makefile.inc
Normal file
13
collectors/python.d.plugin/smartd_log/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += smartd_log/smartd_log.chart.py
|
||||
dist_pythonconfig_DATA += smartd_log/smartd_log.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += smartd_log/README.md smartd_log/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/spigotmc/Makefile.inc
Normal file
13
collectors/python.d.plugin/spigotmc/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += spigotmc/spigotmc.chart.py
|
||||
dist_pythonconfig_DATA += spigotmc/spigotmc.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += spigotmc/README.md spigotmc/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/springboot/Makefile.inc
Normal file
13
collectors/python.d.plugin/springboot/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += springboot/springboot.chart.py
|
||||
dist_pythonconfig_DATA += springboot/springboot.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += springboot/README.md springboot/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/squid/Makefile.inc
Normal file
13
collectors/python.d.plugin/squid/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += squid/squid.chart.py
|
||||
dist_pythonconfig_DATA += squid/squid.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += squid/README.md squid/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/tomcat/Makefile.inc
Normal file
13
collectors/python.d.plugin/tomcat/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += tomcat/tomcat.chart.py
|
||||
dist_pythonconfig_DATA += tomcat/tomcat.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += tomcat/README.md tomcat/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/traefik/Makefile.inc
Normal file
13
collectors/python.d.plugin/traefik/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += traefik/traefik.chart.py
|
||||
dist_pythonconfig_DATA += traefik/traefik.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += traefik/README.md traefik/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/unbound/Makefile.inc
Normal file
13
collectors/python.d.plugin/unbound/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += unbound/unbound.chart.py
|
||||
dist_pythonconfig_DATA += unbound/unbound.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += unbound/README.md unbound/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/varnish/Makefile.inc
Normal file
13
collectors/python.d.plugin/varnish/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += varnish/varnish.chart.py
|
||||
dist_pythonconfig_DATA += varnish/varnish.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += varnish/README.md varnish/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/w1sensor/Makefile.inc
Normal file
13
collectors/python.d.plugin/w1sensor/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += w1sensor/w1sensor.chart.py
|
||||
dist_pythonconfig_DATA += w1sensor/w1sensor.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += w1sensor/README.md w1sensor/Makefile.inc
|
||||
|
13
collectors/python.d.plugin/web_log/Makefile.inc
Normal file
13
collectors/python.d.plugin/web_log/Makefile.inc
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
# THIS IS NOT A COMPLETE Makefile
|
||||
# IT IS INCLUDED BY ITS PARENT'S Makefile.am
|
||||
# IT IS REQUIRED TO REFERENCE ALL FILES RELATIVE TO THE PARENT
|
||||
|
||||
# install these files
|
||||
dist_python_DATA += web_log/web_log.chart.py
|
||||
dist_pythonconfig_DATA += web_log/web_log.conf
|
||||
|
||||
# do not install these files, but include them in the distribution
|
||||
dist_noinst_DATA += web_log/README.md web_log/Makefile.inc
|
||||
|
|
@ -570,9 +570,8 @@ then
|
|||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
touch "${NETDATA_PREFIX}/etc/netdata/.installer-cleanup-of-stock-configs-done"
|
||||
fi
|
||||
touch "${NETDATA_PREFIX}/etc/netdata/.installer-cleanup-of-stock-configs-done"
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
progress "Install netdata"
|
||||
|
|
|
@ -25,7 +25,6 @@ src/.deps/*
|
|||
stamp-h1
|
||||
tests/profile/*
|
||||
.travis.yml
|
||||
web/images/README.md
|
||||
END
|
||||
)
|
||||
|
||||
|
|
|
@ -22,7 +22,6 @@ dist_config_SCRIPTS = \
|
|||
$(NULL)
|
||||
|
||||
nodist_noinst_DATA = \
|
||||
edit-config.in \
|
||||
netdata-openrc \
|
||||
netdata.logrotate \
|
||||
netdata.service \
|
||||
|
@ -33,6 +32,7 @@ nodist_noinst_DATA = \
|
|||
$(NULL)
|
||||
|
||||
dist_noinst_DATA = \
|
||||
edit-config.in \
|
||||
netdata-openrc.in \
|
||||
netdata.logrotate.in \
|
||||
netdata.service.in \
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Icons provided by [IconsDB.com](http://www.iconsdb.com/red-icons/seo-performance-icon.html)
|
Loading…
Add table
Reference in a new issue