From 6c3c76369792e17701a04a42d2e17e2c6109af8e Mon Sep 17 00:00:00 2001 From: nobody-nobody <> Date: Mon, 13 Nov 2017 21:15:39 +0100 Subject: Added support for dnsdist --- conf.d/python.d/dnsdist.conf | 85 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 conf.d/python.d/dnsdist.conf (limited to 'conf.d') diff --git a/conf.d/python.d/dnsdist.conf b/conf.d/python.d/dnsdist.conf new file mode 100644 index 0000000000..aec58b8e19 --- /dev/null +++ b/conf.d/python.d/dnsdist.conf @@ -0,0 +1,85 @@ +# netdata python.d.plugin configuration for dnsdist +# +# This file is in YaML format. Generally the format is: +# +# name: value +# +# There are 2 sections: +# - global variables +# - one or more JOBS +# +# JOBS allow you to collect values from multiple sources. +# Each source will have its own set of charts. +# +# JOB parameters have to be indented (using spaces only, example below). + +# ---------------------------------------------------------------------- +# Global Variables +# These variables set the defaults for all JOBs, however each JOB +# may define its own, overriding the defaults. + +# update_every sets the default data collection frequency. +# If unset, the python.d.plugin default is used. +#update_every: 1 + +# priority controls the order of charts at the netdata dashboard. +# Lower numbers move the charts towards the top of the page. +# If unset, the default for python.d.plugin is used. +# priority: 60000 + +# retries sets the number of retries to be made in case of failures. +# If unset, the default for python.d.plugin is used. +# Attempts to restore the service are made once every update_every +# and only if the module has collected values in the past. +#retries: 600000 + +# autodetection_retry sets the job re-check interval in seconds. +# The job is not deleted if check fails. +# Attempts to start the job are made once every autodetection_retry. +# This feature is disabled by default. +#autodetection_retry: 1 + +# ---------------------------------------------------------------------- +# JOBS (data collection sources) +# +# The default JOBS share the same *name*. JOBS with the same name +# are mutually exclusive. Only one of them will be allowed running at +# any time. This allows autodetection to try several alternatives and +# pick the one that works. +# +# Any number of jobs is supported. +# +# All python.d.plugin JOBS (for all its modules) support a set of +# predefined parameters. These are: +# +# job_name: +# name: myname # the JOB's name as it will appear at the +# # dashboard (by default is the job_name) +# # JOBs sharing a name are mutually exclusive +# update_every: 1 # the JOB's data collection frequency +# priority: 60000 # the JOB's order on the dashboard +# retries: 60 # the JOB's number of restoration attempts +# autodetection_retry: 0 # the JOB's re-check interval in seconds +# +# +# Additionally to the above, dnsdist also supports the following: +# +# url: 'URL' # the URL to fetch dnsdist performance statistics +# user: 'username' # username for basic auth +# pass: 'password' # password for basic auth +# header: +# X-API-Key: 'Key' # API key +# +# ---------------------------------------------------------------------- +# AUTO-DETECTION JOBS +# only one of them will run (they have the same name) + +# localhost: +# name : 'local' +# url : 'http://127.0.0.1:5053/jsonstat?command=stats' +# user : 'username' +# pass : 'password' +# header: +# X-API-Key: 'dnsdist-api-key' + + -- cgit v1.2.3 From c55978499cc157929febcb46b238838ceba88007 Mon Sep 17 00:00:00 2001 From: nobody-nobody <> Date: Mon, 13 Nov 2017 21:16:30 +0100 Subject: Added support for dnsdist --- conf.d/python.d.conf | 1 + 1 file changed, 1 insertion(+) (limited to 'conf.d') diff --git a/conf.d/python.d.conf b/conf.d/python.d.conf index 7ec7a53653..2c3d400cad 100644 --- a/conf.d/python.d.conf +++ b/conf.d/python.d.conf @@ -29,6 +29,7 @@ chrony: no # cpufreq: yes # cpuidle: yes # dns_query_time: yes +# dnsdist: yes # dovecot: yes # elasticsearch: yes -- cgit v1.2.3 From 47fa5f74de3556c6730b9ae05a9c17fd6d71fa29 Mon Sep 17 00:00:00 2001 From: nobody-nobody <> Date: Mon, 11 Dec 2017 19:40:13 +0100 Subject: Minor changes --- conf.d/apps_groups.conf | 1 + 1 file changed, 1 insertion(+) (limited to 'conf.d') diff --git a/conf.d/apps_groups.conf b/conf.d/apps_groups.conf index 23f9393afa..2dbab4cfd2 100644 --- a/conf.d/apps_groups.conf +++ b/conf.d/apps_groups.conf @@ -182,6 +182,7 @@ dhcp: *dhcp* # name servers and clients named: named rncd dig +dnsdist: dnsdist # ----------------------------------------------------------------------------- # installation / compilation / debugging -- cgit v1.2.3