@cryptotaxi247 / netdata-1 / commits / 4b7d920b4

Integrate Go plugin with build system. (#17005)

* Integrate Go plugin with build system. * Fix Debian packaging rules. * Add FreeBSD support to Go toolchain handling. * Add Go ldflags handling. * Fix version detection when GCCGO is used. * Fix Go ldflags handling. * Correctly fix Go toolchain version detection. * Properly mark Go as a required dependency in CMake. * Disable VCS stamping as it does not work correctly on some platforms. * Autodetect minimum required Go version from go.mod files. This allows us to avoid needing to update the CMakeLists.txt file when the required version changes in a Go component’s go.mod file. * Prefix GoTools module name with Netdata to ensure we get our local module. * Update integrations code to use new Go plugin location. * Remove old go packaging files. * keep old logic for initial cleanup that is working * Re-sync Go plugin sources. * Fix search order for finding Go toolchain. * update module name * fix /usr/local/go overwrite condition --------- Co-authored-by: Fotis Voutsas <fotis@netdata.cloud> Co-authored-by: ilyam8 <ilya@netdata.cloud>

Austin S. Hemmelgarn committed Feb 26, 2024 at 09:10 UTC 4b7d920b44302adcc7c733bcea3bc5cf8fc3c63f
854 files changed +1992 -2042
.github/workflows/generate-integrations.yml
+1 -12
@@ -7,6 +7,7 @@ on:
7 - master
8 paths: # If any of these files change, we need to regenerate integrations.js.
9 - 'src/collectors/**/metadata.yaml'
10 + - 'src/go/collectors/**/metadata.yaml'
11 - 'src/exporting/**/metadata.yaml'
12 - 'src/health/notifications/**/metadata.yaml'
13 - 'integrations/templates/**'
@@ -14,7 +15,6 @@ on:
15 - 'integrations/deploy.yaml'
16 - 'integrations/cloud-notifications/metadata.yaml'
17 - 'integrations/gen_integrations.py'
17 - - 'packaging/go.d.version'
18 workflow_dispatch: null
19 concurrency: # This keeps multiple instances of the job from running concurrently for the same ref.
20 group: integrations-${{ github.ref }}
@@ -31,17 +31,6 @@ jobs:
31 with:
32 fetch-depth: 1
33 submodules: recursive
34 - - name: Get Go Ref
35 - id: get-go-ref
36 - run: echo "go_ref=$(cat packaging/go.d.version)" >> "${GITHUB_ENV}"
37 - - name: Checkout Go
38 - id: checkout-go
39 - uses: actions/checkout@v4
40 - with:
41 - fetch-depth: 1
42 - path: go.d.plugin
43 - repository: netdata/go.d.plugin
44 - ref: ${{ env.go_ref }}
34 - name: Prepare Dependencies
35 id: prep-deps
36 run: |
CMakeLists.txt
+49 -9
@@ -47,12 +47,14 @@ else()
47 message(FATAL_ERROR "Wrong version regex match count ${CMAKE_MATCH_COUNT} (should be in 3, 4 or 5)")
48 endif()
49
50 +set(NETDATA_VERSION ${FIELD_MAJOR}.${FIELD_MINOR}.${FIELD_PATCH}.${FIELD_TWEAK})
51 +
52 #
53 # project
54 #
55
56 project(netdata
55 - VERSION ${FIELD_MAJOR}.${FIELD_MINOR}.${FIELD_PATCH}.${FIELD_TWEAK}
57 + VERSION ${NETDATA_VERSION}
58 DESCRIPTION "Netdata real-time monitoring"
59 HOMEPAGE_URL "https://www.netdata.cloud"
60 LANGUAGES C CXX)
@@ -98,20 +100,21 @@ option(ENABLE_ML "enable machine learning" True)
100 option(ENABLE_H2O "enable h2o" True)
101 option(ENABLE_DBENGINE "enable dbengine" True)
102
101 -option(ENABLE_PLUGIN_DEBUGFS "enable debugfs.plugin" True)
103 option(ENABLE_PLUGIN_APPS "enable apps.plugin" True)
103 -option(ENABLE_PLUGIN_FREEIPMI "enable freeipmi.plugin" True)
104 -option(ENABLE_PLUGIN_NFACCT "enable nfacct.plugin" True)
105 -option(ENABLE_PLUGIN_XENSTAT "enable xenstat.plugin" True)
106 -option(ENABLE_PLUGIN_PERF "enable perf.plugin" True)
107 -option(ENABLE_PLUGIN_SLABINFO "enable slabinfo.plugin" True)
108 -option(ENABLE_PLUGIN_CUPS "enable cups.plugin" True)
104 option(ENABLE_PLUGIN_CGROUP_NETWORK "enable cgroup-network plugin" True)
105 +option(ENABLE_PLUGIN_CUPS "enable cups.plugin" True)
106 +option(ENABLE_PLUGIN_DEBUGFS "enable debugfs.plugin" True)
107 option(ENABLE_PLUGIN_EBPF "enable ebpf.plugin" True)
108 +option(ENABLE_PLUGIN_FREEIPMI "enable freeipmi.plugin" True)
109 +option(ENABLE_PLUGIN_GO "enable go.d.plugin" True)
110 option(ENABLE_PLUGIN_LOCAL_LISTENERS "enable local-listeners" True)
111 +option(ENABLE_PLUGIN_LOGS_MANAGEMENT "enable logs-management.plugin" True)
112 option(ENABLE_PLUGIN_NETWORK_VIEWER "enable network-viewer" True)
113 +option(ENABLE_PLUGIN_NFACCT "enable nfacct.plugin" True)
114 +option(ENABLE_PLUGIN_PERF "enable perf.plugin" True)
115 +option(ENABLE_PLUGIN_SLABINFO "enable slabinfo.plugin" True)
116 option(ENABLE_PLUGIN_SYSTEMD_JOURNAL "enable systemd-journal.plugin" True)
114 -option(ENABLE_PLUGIN_LOGS_MANAGEMENT "enable logs-management.plugin" True)
117 +option(ENABLE_PLUGIN_XENSTAT "enable xenstat.plugin" True)
118
119 option(ENABLE_EXPORTER_PROMETHEUS_REMOTE_WRITE "enable prometheus remote write exporter" True)
120 option(ENABLE_EXPORTER_MONGODB "enable mongodb exporter" True)
@@ -125,6 +128,14 @@ option(ENABLE_LOGS_MANAGEMENT_TESTS "enable logs management tests" True)
128 option(ENABLE_SENTRY "enable sentry" False)
129 option(ENABLE_WEBRTC "enable webrtc" False)
130
131 +if(ENABLE_PLUGIN_GO)
132 + include(NetdataGoTools)
133 +
134 + find_min_go_version("${CMAKE_SOURCE_DIR}/src/go")
135 +
136 + find_package(Go "${MIN_GO_VERSION}" REQUIRED)
137 +endif()
138 +
139 if(ENABLE_SENTRY)
140 include(FetchContent)
141
@@ -2134,6 +2145,18 @@ install(TARGETS netdatacli
2145 COMPONENT netdatacli
2146 DESTINATION usr/sbin)
2147
2148 +#
2149 +# Build go.d.plugin
2150 +#
2151 +
2152 +if(ENABLE_PLUGIN_GO)
2153 + add_go_target(go-plugin go.d.plugin src/go/collectors/go.d.plugin cmd/godplugin)
2154 +
2155 + install(PROGRAMS ${CMAKE_BINARY_DIR}/go.d.plugin
2156 + COMPONENT go.d.plugin
2157 + DESTINATION usr/libexec/netdata/plugins.d)
2158 +endif()
2159 +
2160 #
2161 # Generate config file
2162 #
@@ -2641,6 +2664,23 @@ if (ENABLE_PLUGIN_LOGS_MANAGEMENT)
2664 DESTINATION usr/lib/netdata/conf.d)
2665 endif()
2666
2667 +#
2668 +# go.d.plugin
2669 +#
2670 +if(ENABLE_PLUGIN_GO)
2671 + install(FILES src/go/collectors/go.d.plugin/config/go.d.conf
2672 + COMPONENT go.d.plugin
2673 + DESTINATION usr/lib/netdata/conf.d)
2674 + install(DIRECTORY
2675 + COMPONENT go.d.plugin
2676 + DESTINATION usr/lib/netdata/conf.d/go.d)
2677 +
2678 + file(GLOB GO_CONF_FILES src/go/collectors/go.d.plugin/config/go.d/*.conf)
2679 + install(FILES ${GO_CONF_FILES}
2680 + COMPONENT go.d.plugin
2681 + DESTINATION usr/lib/netdata/conf.d/go.d)
2682 +endif()
2683 +
2684 #
2685 # dashboard
2686 #
contrib/debian/control
+1
@@ -5,6 +5,7 @@ Build-Depends: debhelper (>= 10),
5 cmake,
6 curl,
7 flex,
8 + golang (>= 1.21),
9 libcups2-dev,
10 libcurl4-openssl-dev,
11 libelf-dev,
contrib/debian/rules
+13 -8
@@ -83,12 +83,13 @@ override_dh_auto_configure:
83 -DENABLE_PLUGIN_DEBUGFS=On \
84 $(EBPF_CONFIG) \
85 -DENABLE_PLUGIN_FREEIPMI=On \
86 + -DENABLE_PLUGIN_GO=On \
87 -DENABLE_PLUGIN_LOCAL_LISTENERS=On \
88 + -DENABLE_PLUGIN_LOGS_MANAGEMENT=On \
89 -DENABLE_PLUGIN_NFACCT=On \
90 -DENABLE_PLUGIN_PERF=On \
91 -DENABLE_PLUGIN_SLABINFO=On \
92 -DENABLE_PLUGIN_SYSTEMD_JOURNAL=On \
91 - -DENABLE_PLUGIN_LOGS_MANAGEMENT=On \
93 $(XENSTAT_CONFIG) \
94 -DENABLE_EXPORTER_PROMETHEUS_REMOTE_WRITE=On \
95 -DENABLE_EXPORTER_MONGODB=On \
@@ -210,6 +211,17 @@ override_dh_install:
211 $(TOP)-plugin-xenstat/usr/libexec/netdata/plugins.d/xenstat.plugin; \
212 fi
213
214 + # Install go to it's own package directory
215 + #
216 + mkdir -p $(TOP)-plugin-go/usr/libexec/netdata/plugins.d
217 + mv -f $(TEMPTOP)/usr/libexec/netdata/plugins.d/go.d.plugin \
218 + $(TOP)-plugin-go/usr/libexec/netdata/plugins.d/go.d.plugin
219 + mkdir -p $(TOP)-plugin-go/usr/lib/netdata/conf.d
220 + mv -f $(TEMPTOP)/usr/lib/netdata/conf.d/go.d.conf \
221 + $(TOP)-plugin-go/usr/lib/netdata/conf.d/go.d.conf
222 + mv -f $(TEMPTOP)/usr/lib/netdata/conf.d/go.d \
223 + $(TOP)-plugin-go/usr/lib/netdata/conf.d/go.d
224 +
225 # Set the rest of the software in the main package
226 #
227 cp -rp $(TEMPTOP)/usr $(TOP)
@@ -230,13 +242,6 @@ override_dh_install:
242 packaging/bundle-ebpf.sh . ${TOP}-ebpf-code-legacy/usr/libexec/netdata/plugins.d/ force; \
243 fi
244
233 - # Install go to it's own package directory
234 - #
235 - mkdir -p $(TOP)-plugin-go/usr/lib/netdata/conf.d
236 - mkdir -p $(TOP)-plugin-go/usr/libexec/netdata/plugins.d
237 - debian/install_go.sh $$(cat ${CURDIR}/packaging/go.d.version) \
238 - $(TOP)-plugin-go/usr/lib/netdata \
239 - $(TOP)-plugin-go/usr/libexec/netdata
245
246 override_dh_installdocs:
247 dh_installdocs
integrations/gen_docs_integrations.py
+15 -19
@@ -5,30 +5,26 @@ import re
5
6 # Dictionary responsible for making the symbolic links at the end of the script's run.
7 symlink_dict = {}
8 -am_i_inside_go = "go.d.plugin" in str(Path.cwd())
8
9
10 def cleanup():
11 """
12 clean directories that are either data collection or exporting integrations
13 """
15 - if am_i_inside_go:
16 - for element in Path("modules").glob('**/*/'):
17 - if "integrations" in str(element):
18 - shutil.rmtree(element)
19 - else:
20 - for element in Path("src/collectors").glob('**/*/'):
21 - # print(element)
22 - if "integrations" in str(element):
23 - shutil.rmtree(element)
24 -
25 - for element in Path("src/exporting").glob('**/*/'):
26 - if "integrations" in str(element):
27 - shutil.rmtree(element)
28 - for element in Path("integrations/cloud-notifications").glob('**/*/'):
29 - if "integrations" in str(element) and not "metadata.yaml" in str(element):
30 - shutil.rmtree(element)
31 -
14 + for element in Path("src/go/collectors/go.d.plugin/modules").glob('**/*/'):
15 + if "integrations" in str(element):
16 + shutil.rmtree(element)
17 + for element in Path("src/collectors").glob('**/*/'):
18 + # print(element)
19 + if "integrations" in str(element):
20 + shutil.rmtree(element)
21 +
22 + for element in Path("src/exporting").glob('**/*/'):
23 + if "integrations" in str(element):
24 + shutil.rmtree(element)
25 + for element in Path("integrations/cloud-notifications").glob('**/*/'):
26 + if "integrations" in str(element) and not "metadata.yaml" in str(element):
27 + shutil.rmtree(element)
28
29 def generate_category_from_name(category_fragment, category_array):
30 """
@@ -368,7 +364,7 @@ for integration in integrations:
364 path = build_path(meta_yaml)
365 write_to_file(path, md, meta_yaml, sidebar_label, community)
366
371 - elif not am_i_inside_go:
367 + else:
368 # kind of specific if clause, so we can avoid running excessive code in the go repo
369 if integration['integration_type'] == "exporter":
370
integrations/gen_integrations.py
+2 -7
@@ -14,7 +14,6 @@ from referencing.jsonschema import DRAFT7
14 from ruamel.yaml import YAML, YAMLError
15
16 AGENT_REPO = 'netdata/netdata'
17 -GO_REPO = 'netdata/go.d.plugin'
17
18 INTEGRATIONS_PATH = Path(__file__).parent
19 TEMPLATE_PATH = INTEGRATIONS_PATH / 'templates'
@@ -23,7 +22,6 @@ JSON_PATH = INTEGRATIONS_PATH / 'integrations.json'
22 CATEGORIES_FILE = INTEGRATIONS_PATH / 'categories.yaml'
23 REPO_PATH = INTEGRATIONS_PATH.parent
24 SCHEMA_PATH = INTEGRATIONS_PATH / 'schemas'
26 -GO_REPO_PATH = REPO_PATH / 'go.d.plugin'
25 DISTROS_FILE = REPO_PATH / '.github' / 'data' / 'distros.yml'
26 METADATA_PATTERN = '*/metadata.yaml'
27
@@ -31,7 +29,7 @@ COLLECTOR_SOURCES = [
29 (AGENT_REPO, REPO_PATH / 'src' / 'collectors', True),
30 (AGENT_REPO, REPO_PATH / 'src' / 'collectors' / 'charts.d.plugin', True),
31 (AGENT_REPO, REPO_PATH / 'src' / 'collectors' / 'python.d.plugin', True),
34 - (GO_REPO, GO_REPO_PATH / 'modules', True),
32 + (AGENT_REPO, REPO_PATH / 'src' / 'go' / 'collectors' / 'go.d.plugin' / 'modules', True),
33 ]
34
35 DEPLOY_SOURCES = [
@@ -399,10 +397,7 @@ def make_id(meta):
397
398
399 def make_edit_link(item):
402 - if item['_repo'] == 'netdata/go.d.plugin':
403 - item_path = item['_src_path'].relative_to(GO_REPO_PATH)
404 - else:
405 - item_path = item['_src_path'].relative_to(REPO_PATH)
400 + item_path = item['_src_path'].relative_to(REPO_PATH)
401
402 return f'https://github.com/{ item["_repo"] }/blob/master/{ item_path }'
403
netdata-installer.sh
+35 -167
@@ -102,10 +102,6 @@ print_deferred_errors() {
102 fi
103 }
104
105 -download_go() {
106 - download_file "${1}" "${2}" "go.d plugin" "go"
107 -}
108 -
105 # make sure we save all commands we run
106 # Variable is used by code in the packaging/installer/functions.sh
107 # shellcheck disable=SC2034
@@ -205,7 +201,6 @@ USAGE: ${PROGRAM} [options]
201 This results in less frequent updates.
202 --nightly-channel Use most recent nightly updates instead of GitHub releases.
203 This results in more frequent updates.
208 - --disable-go Disable installation of go.d.plugin.
204 --disable-ebpf Disable eBPF Kernel plugin. Default: enabled.
205 --disable-cloud Disable all Netdata Cloud functionality.
206 --require-cloud Fail the install if it can't build Netdata Cloud support.
@@ -214,6 +209,9 @@ USAGE: ${PROGRAM} [options]
209 --disable-plugin-freeipmi Explicitly disable the FreeIPMI plugin.
210 --disable-https Explicitly disable TLS support.
211 --disable-dbengine Explicitly disable DB engine support.
212 + --enable-plugin-go Enable the Go plugin. Default: Enabled when possible.
213 + --disable-plugin-go Disable the Go plugin.
214 + --disable-go Equivalent to --disable-go-plugin
215 --enable-plugin-nfacct Enable nfacct plugin. Default: enable it when libmnl and libnetfilter_acct are available.
216 --disable-plugin-nfacct Explicitly disable the nfacct plugin.
217 --enable-plugin-xenstat Enable the xenstat plugin. Default: enable it when libxenstat and libyajl are available.
@@ -254,6 +252,7 @@ LIBS_ARE_HERE=0
252 NETDATA_ENABLE_ML=""
253 ENABLE_DBENGINE=1
254 ENABLE_EBPF=1
255 +ENABLE_GO=1
256 ENABLE_H2O=1
257 ENABLE_CLOUD=1
258 ENABLE_LOGS_MANAGEMENT=1
@@ -284,6 +283,9 @@ while [ -n "${1}" ]; do
283 ENABLE_CLOUD=0
284 ;;
285 "--disable-dbengine") ENABLE_DBENGINE=0 ;;
286 + "--enable-plugin-go") ENABLE_GO=1 ;;
287 + "--disable-plugin-go") ENABLE_GO=0 ;;
288 + "--disable-go") ENABLE_GO=0 ;;
289 "--enable-plugin-nfacct") ENABLE_NFACCT=1 ;;
290 "--disable-plugin-nfacct") ENABLE_NFACCT=0 ;;
291 "--enable-plugin-xenstat") ENABLE_XENSTAT=1 ;;
@@ -321,7 +323,6 @@ while [ -n "${1}" ]; do
323 # XXX: No longer supported.
324 ;;
325 "--disable-telemetry") NETDATA_DISABLE_TELEMETRY=1 ;;
324 - "--disable-go") NETDATA_DISABLE_GO=1 ;;
326 "--enable-ebpf")
327 ENABLE_EBPF=1
328 NETDATA_DISABLE_EBPF=0
@@ -1039,6 +1040,18 @@ bundle_fluentbit() {
1040
1041 bundle_fluentbit
1042
1043 +# -----------------------------------------------------------------------------
1044 +# If we’re installing the Go plugin, ensure a working Go toolchain is installed.
1045 +if [ "${ENABLE_GO}" -eq 1 ]; then
1046 + progress "Checking for a usable Go toolchain and attempting to install one to /usr/local/go if needed."
1047 + . "${NETDATA_SOURCE_DIR}/packaging/check-for-go-toolchain.sh"
1048 +
1049 + if ! ensure_go_toolchain; then
1050 + warning "Go ${GOLANG_MIN_VERSION} needed to build Go plugin, but could not find or install a usable toolchain: ${GOLANG_FAILURE_REASON}"
1051 + ENABLE_GO=0
1052 + fi
1053 +fi
1054 +
1055 # -----------------------------------------------------------------------------
1056 # If we have the dashboard switching logic, make sure we're on the classic
1057 # dashboard during the install (updates don't work correctly otherwise).
@@ -1429,6 +1442,22 @@ if [ "$(id -u)" -eq 0 ]; then
1442 run chmod 4750 "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/ndsudo"
1443 fi
1444
1445 + if [ -f "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin" ]; then
1446 + run chown "root:${NETDATA_GROUP}" "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin"
1447 + capabilities=1
1448 + if ! iscontainer && command -v setcap 1> /dev/null 2>&1; then
1449 + run chmod 0750 "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin"
1450 + if ! run setcap "cap_dac_read_search+epi cap_net_admin+epi cap_net_raw=eip" "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin"; then
1451 + capabilities=0
1452 + fi
1453 + fi
1454 +
1455 + if [ $capabilities -eq 0 ]; then
1456 + # fix go.d.plugin to be setuid to root
1457 + run chmod 4750 "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin"
1458 + fi
1459 + fi
1460 +
1461 else
1462 # non-privileged user installation
1463 run chown "${NETDATA_USER}:${NETDATA_GROUP}" "${NETDATA_LOG_DIR}"
@@ -1439,167 +1468,6 @@ fi
1468
1469 [ -n "${GITHUB_ACTIONS}" ] && echo "::endgroup::"
1470
1442 -# -----------------------------------------------------------------------------
1443 -
1444 -# govercomp compares go.d.plugin versions. Exit codes:
1445 -# 0 - version1 == version2
1446 -# 1 - version1 > version2
1447 -# 2 - version2 > version1
1448 -# 3 - error
1449 -
1450 -# shellcheck disable=SC2086
1451 -govercomp() {
1452 - # version in file:
1453 - # - v0.14.0
1454 - #
1455 - # 'go.d.plugin -v' output variants:
1456 - # - go.d.plugin, version: unknown
1457 - # - go.d.plugin, version: v0.14.1
1458 - # - go.d.plugin, version: v0.14.1-dirty
1459 - # - go.d.plugin, version: v0.14.1-1-g4c5f98c
1460 - # - go.d.plugin, version: v0.14.1-1-g4c5f98c-dirty
1461 -
1462 - # we need to compare only MAJOR.MINOR.PATCH part
1463 - ver1=$(echo "$1" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+")
1464 - ver2=$(echo "$2" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+")
1465 -
1466 - if [ ${#ver1} -eq 0 ] || [ ${#ver2} -eq 0 ]; then
1467 - return 3
1468 - fi
1469 -
1470 - num1=$(echo $ver1 | grep -o -E '\.' | wc -l)
1471 - num2=$(echo $ver2 | grep -o -E '\.' | wc -l)
1472 -
1473 - if [ ${num1} -ne ${num2} ]; then
1474 - return 3
1475 - fi
1476 -
1477 - for i in $(seq 1 $((num1+1))); do
1478 - x=$(echo $ver1 | cut -d'.' -f$i)
1479 - y=$(echo $ver2 | cut -d'.' -f$i)
1480 - if [ "${x}" -gt "${y}" ]; then
1481 - return 1
1482 - elif [ "${y}" -gt "${x}" ]; then
1483 - return 2
1484 - fi
1485 - done
1486 -
1487 - return 0
1488 -}
1489 -
1490 -should_install_go() {
1491 - if [ -n "${NETDATA_DISABLE_GO+x}" ]; then
1492 - return 1
1493 - fi
1494 -
1495 - version_in_file="$(cat packaging/go.d.version 2> /dev/null)"
1496 - binary_version=$("${NETDATA_PREFIX}"/usr/libexec/netdata/plugins.d/go.d.plugin -v 2> /dev/null)
1497 -
1498 - govercomp "$version_in_file" "$binary_version"
1499 - case $? in
1500 - 0) return 1 ;; # =
1501 - 2) return 1 ;; # <
1502 - *) return 0 ;; # >, error
1503 - esac
1504 -}
1505 -
1506 -install_go() {
1507 - if ! should_install_go; then
1508 - return 0
1509 - fi
1510 -
1511 - [ -n "${GITHUB_ACTIONS}" ] && echo "::group::Installing go.d.plugin."
1512 -
1513 - # When updating this value, ensure correct checksums in packaging/go.d.checksums
1514 - GO_PACKAGE_VERSION="$(cat packaging/go.d.version)"
1515 - ARCH_MAP='
1516 - i386::386
1517 - i686::386
1518 - x86_64::amd64
1519 - aarch64::arm64
1520 - armv64::arm64
1521 - armv6l::arm
1522 - armv7l::arm
1523 - armv5tel::arm
1524 - '
1525 -
1526 - progress "Install go.d.plugin"
1527 - ARCH=$(uname -m)
1528 - OS=$(uname -s | tr '[:upper:]' '[:lower:]')
1529 -
1530 - for index in ${ARCH_MAP}; do
1531 - KEY="${index%%::*}"
1532 - VALUE="${index##*::}"
1533 - if [ "$KEY" = "$ARCH" ]; then
1534 - ARCH="${VALUE}"
1535 - break
1536 - fi
1537 - done
1538 - tmp="$(mktemp -d -t netdata-go-XXXXXX)"
1539 - GO_PACKAGE_BASENAME="go.d.plugin-${GO_PACKAGE_VERSION}.${OS}-${ARCH}.tar.gz"
1540 -
1541 - if [ -z "${NETDATA_LOCAL_TARBALL_OVERRIDE_GO_PLUGIN}" ]; then
1542 - download_go "https://github.com/netdata/go.d.plugin/releases/download/${GO_PACKAGE_VERSION}/${GO_PACKAGE_BASENAME}" "${tmp}/${GO_PACKAGE_BASENAME}"
1543 - else
1544 - progress "Using provided go.d tarball ${NETDATA_LOCAL_TARBALL_OVERRIDE_GO_PLUGIN}"
1545 - run cp "${NETDATA_LOCAL_TARBALL_OVERRIDE_GO_PLUGIN}" "${tmp}/${GO_PACKAGE_BASENAME}"
1546 - fi
1547 -
1548 - if [ -z "${NETDATA_LOCAL_TARBALL_OVERRIDE_GO_PLUGIN_CONFIG}" ]; then
1549 - download_go "https://github.com/netdata/go.d.plugin/releases/download/${GO_PACKAGE_VERSION}/config.tar.gz" "${tmp}/config.tar.gz"
1550 - else
1551 - progress "Using provided config file for go.d ${NETDATA_LOCAL_TARBALL_OVERRIDE_GO_PLUGIN_CONFIG}"
1552 - run cp "${NETDATA_LOCAL_TARBALL_OVERRIDE_GO_PLUGIN_CONFIG}" "${tmp}/config.tar.gz"
1553 - fi
1554 -
1555 - if [ ! -f "${tmp}/${GO_PACKAGE_BASENAME}" ] || [ ! -f "${tmp}/config.tar.gz" ] || [ ! -s "${tmp}/config.tar.gz" ] || [ ! -s "${tmp}/${GO_PACKAGE_BASENAME}" ]; then
1556 - run_failed "go.d plugin download failed, go.d plugin will not be available"
1557 - echo >&2 "Either check the error or consider disabling it by issuing '--disable-go' in the installer"
1558 - echo >&2
1559 - [ -n "${GITHUB_ACTIONS}" ] && echo "::endgroup::"
1560 - return 0
1561 - fi
1562 -
1563 - grep "${GO_PACKAGE_BASENAME}\$" "${INSTALLER_DIR}/packaging/go.d.checksums" > "${tmp}/sha256sums.txt" 2> /dev/null
1564 - grep "config.tar.gz" "${INSTALLER_DIR}/packaging/go.d.checksums" >> "${tmp}/sha256sums.txt" 2> /dev/null
1565 -
1566 - # Checksum validation
1567 - if ! (cd "${tmp}" && safe_sha256sum -c "sha256sums.txt"); then
1568 -
1569 - echo >&2 "go.d plugin checksum validation failure."
1570 - echo >&2 "Either check the error or consider disabling it by issuing '--disable-go' in the installer"
1571 - echo >&2
1572 -
1573 - run_failed "go.d.plugin package files checksum validation failed. go.d.plugin will not be available."
1574 - [ -n "${GITHUB_ACTIONS}" ] && echo "::endgroup::"
1575 - return 0
1576 - fi
1577 -
1578 - # Install new files
1579 - run rm -rf "${NETDATA_STOCK_CONFIG_DIR}/go.d"
1580 - run rm -rf "${NETDATA_STOCK_CONFIG_DIR}/go.d.conf"
1581 - run tar --no-same-owner -xf "${tmp}/config.tar.gz" -C "${NETDATA_STOCK_CONFIG_DIR}/"
1582 - run chown -R "${ROOT_USER}:${ROOT_GROUP}" "${NETDATA_STOCK_CONFIG_DIR}"
1583 -
1584 - run tar --no-same-owner -xf "${tmp}/${GO_PACKAGE_BASENAME}"
1585 - run mv "${GO_PACKAGE_BASENAME%.tar.gz}" "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin"
1586 - if [ "$(id -u)" -eq 0 ]; then
1587 - run chown "root:${NETDATA_GROUP}" "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin"
1588 - fi
1589 - run chmod 0750 "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin"
1590 - rm -rf "${tmp}"
1591 -
1592 - [ -n "${GITHUB_ACTIONS}" ] && echo "::endgroup::"
1593 -}
1594 -
1595 -install_go
1596 -
1597 -if [ -f "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin" ]; then
1598 - if command -v setcap 1>/dev/null 2>&1; then
1599 - run setcap "cap_dac_read_search+epi cap_net_admin+epi cap_net_raw=eip" "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin"
1600 - fi
1601 -fi
1602 -
1471 should_install_ebpf() {
1472 if [ "${NETDATA_DISABLE_EBPF:=0}" -eq 1 ]; then
1473 run_failed "eBPF has been explicitly disabled, it will not be available in this install."
netdata.spec.in
+17 -142
@@ -1,8 +1,6 @@
1 # SPDX-License-Identifier: GPL-3.0-or-later
2 %global contentdir %{_datadir}/netdata
3 %global version @PACKAGE_VERSION@
4 -%global go_version @GO_PACKAGE_VERSION@
5 -%global go_name go.d.plugin
4
5 # XXX: We are using automatic `Requires:` generation for libraries
6 # whenever possible, DO NOT LIST LIBRARY DEPENDENCIES UNLESS THE RESULTANT
@@ -14,6 +12,11 @@ AutoReqProv: yes
12 # error.
13 %global __os_install_post %{nil}
14
15 +# This is needed to support proper handling of Go code without requiring
16 +# external linking or GCCGO, because even recent versions of rpmbuild do
17 +# not properly support the build IDs generated by the upstream Go toolchain.
18 +%global _missing_build_ids_terminate_build 0
19 +
20 # Use our custom CMake version from our package builders if we can’t find cmake.
21 %if 0%{?centos_ver} == 7
22 %global __cmake /cmake/bin/cmake
@@ -39,18 +42,6 @@ AutoReqProv: yes
42 %global __cmake_builddir %{__builddir}
43 %endif
44
42 -# Disable go.d.plugin build on outdated golang distros
43 -%if 0
44 -%if 0%{?centos_ver:1}
45 -%if 0%{?centos_ver} >= 10 && 0%{?almalinux_ver:1} && 0%{?rocky_ver:1}
46 -%global _golang_build 1
47 -%else
48 -%global _golang_build 0
49 -%global _missing_build_ids_terminate_build 0
50 -%endif
51 -%endif
52 -%endif
53 -
45 # Disable eBPF for architectures other than x86
46 %ifarch x86_64 i386
47 %global _have_ebpf 1
@@ -125,8 +116,6 @@ Release: 1%{?dist}
116 License: GPLv3+
117 Group: Applications/System
118 Source0: https://github.com/%{name}/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz
128 -Source1: https://github.com/%{name}/%{go_name}/releases/download/v%{go_version}/config.tar.gz
129 -Source2: https://github.com/%{name}/%{go_name}/archive/refs/tags/v%{go_version}.tar.gz
119 URL: http://my-%{name}.io
120
121 # Remove conflicting EPEL packages
@@ -260,11 +249,17 @@ BuildRequires: cups-devel
249 # end - cups plugin dependencies
250
251 # go.d.plugin dependencies
263 -%if 0%{?_golang_build}
252 +#
253 +# The conditional here is checking for a macro we define in our package
254 +# builders. If it’s defined, then we’ve injected an upstream copy of
255 +# the Go toolchain, so we don’t need the package installed (which
256 +# is needed because Go’s development model is at odds with enterprise
257 +# distro handling of versioning).
258 +%if %{?_upstream_go_toolchain:0}%{!?_upstream_go_toolchain:1}
259 %if 0%{?suse_version}
265 -BuildRequires: go
260 +BuildRequires: go >= 1.21
261 %else
267 -BuildRequires: golang
262 +BuildRequires: golang >= 1.21
263 %endif
264 %endif
265 # end - go.d.plugin plugin dependencies
@@ -339,15 +334,6 @@ export CFLAGS="${CFLAGS} -fPIC" && ${RPM_BUILD_DIR}/%{name}-%{version}/packaging
334 %endif
335 %endif
336
342 -# go.d.plugin
343 -%if 0%{?_golang_build}
344 -mkdir -p "%{_builddir}/%{go_name}"
345 -tar -xzf "%{SOURCE1}" -C "%{_builddir}/%{go_name}"
346 -tar -xzf "%{SOURCE2}" -C "%{_builddir}/%{go_name}"
347 -cd "%{_builddir}/%{go_name}/%{go_name}-%{go_version}"
348 -make download
349 -%endif
350 -
337 %build
338 # Conf step
339 %cmake -G Ninja \
@@ -408,6 +394,7 @@ make download
394 -DENABLE_PLUGIN_APPS=On \
395 -DENABLE_PLUGIN_CGROUP_NETWORK=On \
396 -DENABLE_PLUGIN_DEBUGFS=On \
397 + -DENABLE_PLUGIN_GO=On \
398 -DENABLE_PLUGIN_LOCAL_LISTENERS=On \
399 -DENABLE_PLUGIN_PERF=On \
400 -DENABLE_PLUGIN_SLABINFO=On \
@@ -420,13 +407,6 @@ make download
407 # Build step
408 %{cmake_build}
409
423 -# Build go.d.plugin
424 -%if 0%{?_golang_build}
425 -cd "%{_builddir}/%{go_name}/%{go_name}-%{go_version}"
426 -sed -i 's|CGO_ENABLED=0 ||' "hack/go-build.sh"
427 -TRAVIS_TAG="%{go_version}" %{__make} build
428 -%endif
429 -
410 %install
411
412 # ###########################################################
@@ -471,111 +451,6 @@ install -m 644 -p "%{__cmake_builddir}/system/systemd/%{name}.service.v235" "${R
451 install -m 755 -d "${RPM_BUILD_ROOT}%{_presetdir}"
452 install -m 644 -p "system/systemd/50-%{name}.preset" "${RPM_BUILD_ROOT}%{_presetdir}/50-%{name}.preset"
453
474 -# ############################################################
475 -# Package Go within netdata
476 -
477 -# Install builded go.d.plugin
478 -%if 0%{?_golang_build}
479 -install -m 0640 "%{_builddir}/%{go_name}/%{go_name}-%{go_version}/bin/godplugin" \
480 -"${RPM_BUILD_ROOT}%{_libexecdir}/%{name}/plugins.d/%{go_name}"
481 -cp -r "%{_builddir}/%{go_name}/go.d.conf" "%{_builddir}/%{go_name}/go.d" \
482 -"${RPM_BUILD_ROOT}%{_libdir}/%{name}/conf.d/"
483 -%else
484 -# Install binary go.d.plugin
485 -safe_sha256sum() {
486 - # Within the context of the installer, we only use -c option that is common between the two commands
487 - # We will have to reconsider if we start non-common options
488 - if command -v sha256sum >/dev/null 2>&1; then
489 - sha256sum $@
490 - elif command -v shasum >/dev/null 2>&1; then
491 - shasum -a 256 $@
492 - else
493 - fatal "I could not find a suitable checksum binary to use"
494 - fi
495 -}
496 -
497 -download_go() {
498 - url="${1}"
499 - dest="${2}"
500 -
501 - if command -v curl >/dev/null 2>&1; then
502 - curl -sSL --connect-timeout 10 --retry 3 "${url}" > "${dest}"
503 - elif command -v wget >/dev/null 2>&1; then
504 - wget -T 15 -O - "${url}" > "${dest}"
505 - else
506 - echo >&2
507 - echo >&2 "Downloading go.d plugin from '${url}' failed because of missing mandatory packages."
508 - echo >&2 "Either add packages or disable it by issuing '--disable-go' in the installer"
509 - echo >&2
510 - exit 1
511 - fi
512 -}
513 -
514 -install_go() {
515 - # When updating this value, ensure correct checksums in packaging/go.d.checksums
516 - GO_PACKAGE_VERSION="$(cat packaging/go.d.version)"
517 - ARCH_MAP=(
518 - 'i386::386'
519 - 'i686::386'
520 - 'x86_64::amd64'
521 - 'aarch64::arm64'
522 - 'armv64::arm64'
523 - 'armv6l::arm'
524 - 'armv7l::arm'
525 - 'armv5tel::arm'
526 - )
527 -
528 - if [ -z "${NETDATA_DISABLE_GO+x}" ]; then
529 - ARCH="%{_arch}"
530 - OS=$(uname -s | tr '[:upper:]' '[:lower:]')
531 -
532 - echo >&2 "Install go.d.plugin (ARCH=${ARCH}, OS=${OS})"
533 -
534 - for index in "${ARCH_MAP[@]}" ; do
535 - KEY="${index%%::*}"
536 - VALUE="${index##*::}"
537 - if [ "$KEY" = "$ARCH" ]; then
538 - ARCH="${VALUE}"
539 - break
540 - fi
541 - done
542 - tmp=$(mktemp -d /tmp/netdata-go-XXXXXX)
543 - GO_PACKAGE_BASENAME="go.d.plugin-${GO_PACKAGE_VERSION}.${OS}-${ARCH}.tar.gz"
544 - download_go "https://github.com/netdata/go.d.plugin/releases/download/${GO_PACKAGE_VERSION}/${GO_PACKAGE_BASENAME}" "${tmp}/${GO_PACKAGE_BASENAME}"
545 - download_go "https://github.com/netdata/go.d.plugin/releases/download/${GO_PACKAGE_VERSION}/config.tar.gz" "${tmp}/config.tar.gz"
546 -
547 - if [ ! -f "${tmp}/${GO_PACKAGE_BASENAME}" ] || [ ! -f "${tmp}/config.tar.gz" ] || [ ! -s "${tmp}/config.tar.gz" ] || [ ! -s "${tmp}/${GO_PACKAGE_BASENAME}" ]; then
548 - echo >&2 "Either check the error or consider disabling it by issuing '--disable-go' in the installer"
549 - echo >&2
550 - return 1
551 - fi
552 -
553 - grep "${GO_PACKAGE_BASENAME}\$" "packaging/go.d.checksums" > "${tmp}/sha256sums.txt" 2>/dev/null
554 - grep "config.tar.gz" "packaging/go.d.checksums" >> "${tmp}/sha256sums.txt" 2>/dev/null
555 -
556 - # Checksum validation
557 - if ! (cd "${tmp}" && safe_sha256sum -c "sha256sums.txt"); then
558 -
559 - echo >&2 "go.d plugin checksum validation failure."
560 - echo >&2 "Either check the error or consider disabling it by issuing '--disable-go' in the installer"
561 - echo >&2
562 -
563 - echo "go.d.plugin package files checksum validation failed."
564 - exit 1
565 - fi
566 -
567 - # Install files
568 - tar -xf "${tmp}/config.tar.gz" -C "${RPM_BUILD_ROOT}%{_libdir}/%{name}/conf.d/"
569 - tar xf "${tmp}/${GO_PACKAGE_BASENAME}"
570 - mv "${GO_PACKAGE_BASENAME/\.tar\.gz/}" "go.d.plugin"
571 - rm -rf "${tmp}"
572 - fi
573 - return 0
574 -}
575 -install_go
576 -install -m 0640 -p "%{go_name}" "${RPM_BUILD_ROOT}%{_libexecdir}/%{name}/plugins.d/%{go_name}"
577 -%endif
578 -
454 %if 0%{?_have_ebpf}
455 ${RPM_BUILD_DIR}/%{name}-%{version}/packaging/bundle-ebpf.sh ${RPM_BUILD_DIR}/%{name}-%{version} \
456 ${RPM_BUILD_ROOT}%{_libexecdir}/%{name}/plugins.d
@@ -729,7 +604,7 @@ rm -rf "${RPM_BUILD_ROOT}"
604 %exclude %{_libdir}/%{name}/conf.d/python.d
605
606 # Go.d belongs to a different sub-package
732 -%exclude %{_libexecdir}/%{name}/plugins.d/%{go_name}
607 +%exclude %{_libexecdir}/%{name}/plugins.d/go.d.plugin
608 %exclude %{_libdir}/%{name}/conf.d/go.d.conf
609 %exclude %{_libdir}/%{name}/conf.d/go.d
610
@@ -958,7 +833,7 @@ fi
833 %defattr(0750,root,netdata,0750)
834 # CAP_NET_ADMIN needed for WireGuard collector
835 # CAP_NET_RAW needed for ping collector
961 -%caps(cap_dac_read_search,cap_net_admin,cap_net_raw=eip) %{_libexecdir}/%{name}/plugins.d/%{go_name}
836 +%caps(cap_dac_read_search,cap_net_admin,cap_net_raw=eip) %{_libexecdir}/%{name}/plugins.d/go.d.plugin
837 %defattr(0644,root,netdata,0755)
838 %{_libdir}/%{name}/conf.d/go.d.conf
839 %{_libdir}/%{name}/conf.d/go.d
packaging/check-for-go-toolchain.sh
+74 -36
@@ -16,6 +16,7 @@
16 GOLANG_MIN_MAJOR_VERSION='1'
17 GOLANG_MIN_MINOR_VERSION='21'
18 GOLANG_MIN_PATCH_VERSION='0'
19 +GOLANG_MIN_VERSION="${GOLANG_MIN_MAJOR_VERSION}.${GOLANG_MIN_MINOR_VERSION}.${GOLANG_MIN_PATCH_VERSION}"
20
21 GOLANG_TEMP_PATH="${TMPDIR}/go-toolchain"
22
@@ -48,49 +49,84 @@ install_go_toolchain() {
49 GOLANG_ARCHIVE_NAME="${GOLANG_TEMP_PATH}/golang.tar.gz"
50 GOLANG_CHECKSUM_FILE="${GOLANG_TEMP_PATH}/golang.sha256sums"
51
51 - if [ "$(uname -s)" != "Linux" ]; then
52 - GOLANG_FAILURE_REASON="We do not support automatic handling of a Go toolchain on this system, you must install one manually."
53 - return 1
54 - fi
55 -
56 - case "$(uname -m)" in
57 - i?86)
58 - GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-386.tar.gz"
59 - GOLANG_ARCHIVE_CHECKSUM="05d09041b5a1193c14e4b2db3f7fcc649b236c567f5eb93305c537851b72dd95"
60 - ;;
61 - x86_64)
62 - GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-amd64.tar.gz"
63 - GOLANG_ARCHIVE_CHECKSUM="3f934f40ac360b9c01f616a9aa1796d227d8b0328bf64cb045c7b8c4ee9caea4"
64 - ;;
65 - aarch64)
66 - GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-arm64.tar.gz"
67 - GOLANG_ARCHIVE_CHECKSUM="e2e8aa88e1b5170a0d495d7d9c766af2b2b6c6925a8f8956d834ad6b4cacbd9a"
68 - ;;
69 - armv*)
70 - GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-armv6l.tar.gz"
71 - GOLANG_ARCHIVE_CHECKSUM="6a8eda6cc6a799ff25e74ce0c13fdc1a76c0983a0bb07c789a2a3454bf6ec9b2"
52 + case "$(uname -s)" in
53 + Linux)
54 + case "$(uname -m)" in
55 + i?86)
56 + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-386.tar.gz"
57 + GOLANG_ARCHIVE_CHECKSUM="05d09041b5a1193c14e4b2db3f7fcc649b236c567f5eb93305c537851b72dd95"
58 + ;;
59 + x86_64)
60 + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-amd64.tar.gz"
61 + GOLANG_ARCHIVE_CHECKSUM="3f934f40ac360b9c01f616a9aa1796d227d8b0328bf64cb045c7b8c4ee9caea4"
62 + ;;
63 + aarch64)
64 + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-arm64.tar.gz"
65 + GOLANG_ARCHIVE_CHECKSUM="e2e8aa88e1b5170a0d495d7d9c766af2b2b6c6925a8f8956d834ad6b4cacbd9a"
66 + ;;
67 + armv*)
68 + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-armv6l.tar.gz"
69 + GOLANG_ARCHIVE_CHECKSUM="6a8eda6cc6a799ff25e74ce0c13fdc1a76c0983a0bb07c789a2a3454bf6ec9b2"
70 + ;;
71 + ppc64le)
72 + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-ppc64le.tar.gz"
73 + GOLANG_ARCHIVE_CHECKSUM="e872b1e9a3f2f08fd4554615a32ca9123a4ba877ab6d19d36abc3424f86bc07f"
74 + ;;
75 + riscv64)
76 + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-riscv64.tar.gz"
77 + GOLANG_ARCHIVE_CHECKSUM="86a2fe6597af4b37d98bca632f109034b624786a8d9c1504d340661355ed31f7"
78 + ;;
79 + s390x)
80 + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-s390x.tar.gz"
81 + GOLANG_ARCHIVE_CHECKSUM="92894d0f732d3379bc414ffdd617eaadad47e1d72610e10d69a1156db03fc052"
82 + ;;
83 + *)
84 + GOLANG_FAILURE_REASON="Linux $(uname -m) platform is not supported out-of-box by Go, you must install a toolchain for it yourself."
85 + return 1
86 + ;;
87 + esac
88 ;;
73 - ppc64le)
74 - GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-ppc64le.tar.gz"
75 - GOLANG_ARCHIVE_CHECKSUM="e872b1e9a3f2f08fd4554615a32ca9123a4ba877ab6d19d36abc3424f86bc07f"
76 - ;;
77 - riscv64)
78 - GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-riscv64.tar.gz"
79 - GOLANG_ARCHIVE_CHECKSUM="86a2fe6597af4b37d98bca632f109034b624786a8d9c1504d340661355ed31f7"
80 - ;;
81 - s390x)
82 - GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-s390x.tar.gz"
83 - GOLANG_ARCHIVE_CHECKSUM="92894d0f732d3379bc414ffdd617eaadad47e1d72610e10d69a1156db03fc052"
89 + FreeBSD)
90 + case "$(uname -m)" in
91 + 386)
92 + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.22.0.freebsd-386.tar.gz"
93 + GOLANG_ARCHIVE_CHECKSUM="b8065da37783e8b9e7086365a54d74537e832c92311b61101a66989ab2458d8e"
94 + ;;
95 + amd64)
96 + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.22.0.freebsd-amd64.tar.gz"
97 + GOLANG_ARCHIVE_CHECKSUM="50f421c7f217083ac94aab1e09400cb9c2fea7d337679ec11f1638a11460da30"
98 + ;;
99 + arm)
100 + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.22.0.freebsd-arm.tar.gz"
101 + GOLANG_ARCHIVE_CHECKSUM="c9c8b305f90903536f4981bad9f029828c2483b3216ca1783777344fbe603f2d"
102 + ;;
103 + arm64)
104 + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.22.0.freebsd-arm64.tar.gz"
105 + GOLANG_ARCHIVE_CHECKSUM="e23385e5c640787fa02cd58f2301ea09e162c4d99f8ca9fa6d52766f428a933d"
106 + ;;
107 + riscv64)
108 + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.22.0.freebsd-riscv64.tar.gz"
109 + GOLANG_ARCHIVE_CHECKSUM="c8f94d1de6024546194d58e7b9370dc7ea06176aad94a675b0062c25c40cb645"
110 + ;;
111 + *)
112 + GOLANG_FAILURE_REASON="FreeBSD $(uname -m) platform is not supported out-of-box by Go, you must install a toolchain for it yourself."
113 + return 1
114 + ;;
115 + esac
116 ;;
117 *)
86 - GOLANG_FAILURE_REASON="Linux $(uname -m) platform is not supported out-of-box by Go, you must install a toolchain for it yourself."
118 + GOLANG_FAILURE_REASON="We do not support automatic handling of a Go toolchain on this system, you must install one manually."
119 return 1
120 ;;
121 esac
122
91 - if [ -d '/usr/local/go' ]; then
92 - GOLANG_FAILURE_REASON="Refusing to overwrite existing Go toolchain install at /usr/local/go, it needs to be updated manually."
93 - return 1
123 + if [ -d '/usr/local/go' ]; then
124 + if [ -f '/usr/local/go/.installed-by-netdata' ]; then
125 + rm -rf /usr/local/go
126 + else
127 + GOLANG_FAILURE_REASON="Refusing to overwrite existing Go toolchain install at /usr/local/go, it needs to be updated manually."
128 + return 1
129 + fi
130 fi
131
132 mkdir -p "${GOLANG_TEMP_PATH}"
@@ -112,6 +148,8 @@ install_go_toolchain() {
148 return 1
149 fi
150
151 + touch /usr/local/go/.installed-by-netdata
152 +
153 rm -rf "${GOLANG_TEMP_PATH}"
154 }
155
packaging/cmake/Modules/FindGo.cmake new
+39
@@ -0,0 +1,39 @@
1 +# Custom CMake module to find the Go toolchain
2 +#
3 +# Copyright (c) 2024 Netdata Inc
4 +#
5 +# SPDX-License-Identifier: GPL-3.0-or-later
6 +#
7 +# This is a relatively orthodox CMake Find Module. It can be used by
8 +# simply including it and then invoking `find_package(Go)`.
9 +#
10 +# Version handling is done by CMake itself via the
11 +# find_package_handle_standard_args() function, so `find_package(Go 1.21)`
12 +# will also work correctly.
13 +
14 +if(GO_FOUND)
15 + return()
16 +endif()
17 +
18 +# Two passes are needed here so that we prefer a copy in `/usr/local/go/bin` over a system copy.
19 +find_program(GO_EXECUTABLE go PATHS /usr/local/go/bin DOC "Go toolchain" NO_DEFAULT_PATH)
20 +find_program(GO_EXECUTABLE go DOC "Go toolchain")
21 +
22 +if (GO_EXECUTABLE)
23 + execute_process(
24 + COMMAND ${GO_EXECUTABLE} version
25 + OUTPUT_VARIABLE GO_VERSION_STRING
26 + RESULT_VARIABLE RESULT
27 + )
28 + if (RESULT EQUAL 0)
29 + string(REGEX MATCH "go([0-9]+\\.[0-9]+(\\.[0-9]+)?)" GO_VERSION_STRING "${GO_VERSION_STRING}")
30 + string(REGEX MATCH "([0-9]+\\.[0-9]+(\\.[0-9]+)?)" GO_VERSION_STRING "${GO_VERSION_STRING}")
31 + endif()
32 +endif()
33 +
34 +include(FindPackageHandleStandardArgs)
35 +find_package_handle_standard_args(
36 + Go
37 + REQUIRED_VARS GO_EXECUTABLE
38 + VERSION_VAR GO_VERSION_STRING
39 +)
packaging/cmake/Modules/NetdataGoTools.cmake new
+85
@@ -0,0 +1,85 @@
1 +# Macros and functions to assist in working with Go
2 +#
3 +# Copyright (c) 2024 Netdata Inc
4 +#
5 +# SPDX-License-Identifier: GPL
6 +
7 +if(CMAKE_BUILD_TYPE STREQUAL Debug OR CMAKE_BUILD_TYPE STREQUAL RelWithDebInfo)
8 + set(GO_LDFLAGS "-X main.version=${NETDATA_VERSION}")
9 +else()
10 + set(GO_LDFLAGS "-w -s -X main.version=${NETDATA_VERSION}")
11 +endif()
12 +
13 +# add_go_target: Add a new target that needs to be built using the Go toolchain.
14 +#
15 +# Takes four arguments, the target name, the output artifact name, the
16 +# source tree for the Go module, and the sub-directory of that source tree
17 +# to pass to `go build`.
18 +#
19 +# The target itself will invoke `go build` in the specified source tree,
20 +# using the `-o` option to produce the final output artifact, and passing
21 +# the requested sub-directory as the final argument.
22 +#
23 +# This will also automatically construct the dependency list for the
24 +# target by finding all Go source files under the specified source tree
25 +# and then appending the go.mod and go.sum files from the root of the
26 +# source tree.
27 +macro(add_go_target target output build_src build_dir)
28 + file(GLOB_RECURSE ${target}_DEPS CONFIGURE_DEPENDS "${build_src}/*.go")
29 + list(APPEND ${target}_DEPS
30 + "${build_src}/go.mod"
31 + "${build_src}/go.sum"
32 + )
33 +
34 + add_custom_command(
35 + OUTPUT ${output}
36 + COMMAND "${CMAKE_COMMAND}" -E env CGO_ENABLED=0 "${GO_EXECUTABLE}" build -buildvcs=false -ldflags "${GO_LDFLAGS}" -o "${CMAKE_BINARY_DIR}/${output}" "./${build_dir}"
37 + DEPENDS ${${target}_DEPS}
38 + COMMENT "Building Go component ${output}"
39 + WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}/${build_src}"
40 + VERBATIM
41 + )
42 + add_custom_target(
43 + ${target} ALL
44 + DEPENDS ${output}
45 + )
46 +endmacro()
47 +
48 +# find_min_go_version: Determine the minimum Go version based on go.mod files
49 +#
50 +# Takes one argument, specifying a source tree to scan for go.mod files.
51 +#
52 +# All files found will be checked for a `go` directive, and the
53 +# MIN_GO_VERSION variable will be set to the highest version
54 +# number found among these directives.
55 +#
56 +# Only works on UNIX-like systems, because it has to process the go.mod
57 +# files in ways that CMake can't do on it's own.
58 +function(find_min_go_version src_tree)
59 + message(STATUS "Determining minimum required version of Go for this build")
60 +
61 + file(GLOB_RECURSE go_mod_files ${src_tree}/go.mod)
62 +
63 + set(result 1.0)
64 +
65 + foreach(f IN ITEMS ${go_mod_files})
66 + message(VERBOSE "Checking Go version specified in ${f}")
67 + execute_process(
68 + COMMAND grep -E "^go .*$" ${f}
69 + COMMAND cut -f 2 -d " "
70 + RESULT_VARIABLE version_check_result
71 + OUTPUT_VARIABLE go_mod_version
72 + )
73 +
74 + if(version_check_result EQUAL 0)
75 + string(REGEX MATCH "([0-9]+\\.[0-9]+(\\.[0-9]+)?)" go_mod_version "${go_mod_version}")
76 +
77 + if(go_mod_version VERSION_GREATER result)
78 + set(result "${go_mod_version}")
79 + endif()
80 + endif()
81 + endforeach()
82 +
83 + message(STATUS "Minimum required Go version determined to be ${result}")
84 + set(MIN_GO_VERSION "${result}" PARENT_SCOPE)
85 +endfunction()
packaging/go.d.checksums deleted
-20
@@ -1,20 +0,0 @@
1 -6ae6cc9970cb75a245a97e242ded366b37342c3b89d5f673e4f05f81d8623c85 *config.tar.gz
2 -6ae6cc9970cb75a245a97e242ded366b37342c3b89d5f673e4f05f81d8623c85 *go.d.plugin-config-v0.58.1.tar.gz
3 -5951ea9c3345c2d0fe9f66d559e4ff99d0d0ac1df57cd120f7d7ebc22e518d3d *go.d.plugin-v0.58.1.darwin-amd64.tar.gz
4 -083f742e643c94c3d173d8b490752abd46cb00a27f7ce4eaa44f356c72ce83d0 *go.d.plugin-v0.58.1.darwin-arm64.tar.gz
5 -4d042db7af2dd4065d1b3d121f30acdf4186d531b0918969540727b04e583bce *go.d.plugin-v0.58.1.freebsd-386.tar.gz
6 -4496b2f27bf17e4e71b2867914e5f7f03675b31d0db100b9dff0da668c611651 *go.d.plugin-v0.58.1.freebsd-amd64.tar.gz
7 -708affd49865c4c681ab269341347d6106eca4d23d1e8ba6dbf59d7b13e9569a *go.d.plugin-v0.58.1.freebsd-arm.tar.gz
8 -efa87e606ad5e602df0dac143b78133bd70c2d5f8c96e4d48cc89efdebd8ce7c *go.d.plugin-v0.58.1.freebsd-arm64.tar.gz
9 -846038bd893593879b965016fb917258a9778c4adb63cccc1722bdfbdc600b37 *go.d.plugin-v0.58.1.linux-386.tar.gz
10 -eb43f1020947bcd3564e0917842c72e880438c00da2a5a3718fcd83c0d60d636 *go.d.plugin-v0.58.1.linux-amd64.tar.gz
11 -310e82f7a227054a0fe27a4c076fd77296da5c37e9677f51e4c1c3f1edf9258f *go.d.plugin-v0.58.1.linux-arm.tar.gz
12 -5066048efcd94711987e6554e15abb36c11356cd264a3c62b16697a687f2de81 *go.d.plugin-v0.58.1.linux-arm64.tar.gz
13 -d77bfc0a98311fa989d826f60ea41acdd56a749b9b78e7192bc57f13d3ccf805 *go.d.plugin-v0.58.1.linux-mips.tar.gz
14 -d57e7bf97e649f03675aeb5bfa7e3b04315a1a70e52e66b230bf915e2d86a976 *go.d.plugin-v0.58.1.linux-mips64.tar.gz
15 -3fe10ededbf7b3b9f2aa428339a975ffa23ed062289b958a845bd879cc63e654 *go.d.plugin-v0.58.1.linux-mips64le.tar.gz
16 -4d5c5e8324ddb6f3a085083826ea8670546aa7689fc664b62f75d1cf4dff155d *go.d.plugin-v0.58.1.linux-mipsle.tar.gz
17 -fe238fb44d6b408e6977e12ced32b0140d72d62b1e63de44d66cd3602e17f2e3 *go.d.plugin-v0.58.1.linux-ppc64.tar.gz
18 -a2b1940798462748bdc445e6bcc3557ca0ea65369dc3134ac5f6e35919d1d146 *go.d.plugin-v0.58.1.linux-ppc64le.tar.gz
19 -87391dd6784ca6f4754fcf872f1fba0730275da24023cf7ad83250b486326980 *go.d.plugin-vendor-v0.58.1.tar.gz
20 -87391dd6784ca6f4754fcf872f1fba0730275da24023cf7ad83250b486326980 *vendor.tar.gz
packaging/go.d.version deleted
-1
@@ -1 +0,0 @@
1 -v0.58.1
packaging/installer/functions.sh
+6
@@ -257,6 +257,12 @@ prepare_cmake_options() {
257 NETDATA_CMAKE_OPTIONS="${NETDATA_CMAKE_OPTIONS} -DUSE_CXX_11=On"
258 fi
259
260 + if [ "${ENABLE_GO:-1}" -eq 1 ]; then
261 + enable_feature PLUGIN_GO 1
262 + else
263 + enable_feature PLUGIN_GO 0
264 + fi
265 +
266 if [ "${USE_SYSTEM_PROTOBUF:-1}" -eq 1 ]; then
267 enable_feature BUNDLED_PROTOBUF 0
268 else
packaging/utils/coverity-scan.sh
+1
@@ -132,6 +132,7 @@ scanit() {
132
133 progress "Configuring netdata source..."
134 USE_SYSTEM_PROTOBUF=1
135 + ENABLE_GO=0
136 prepare_cmake_options
137
138 run cmake ${NETDATA_CMAKE_OPTIONS}
src/go/collectors/go.d.plugin/Dockerfile.dev
+1 -1
@@ -1,4 +1,4 @@
1 -FROM golang:1.21 AS build-env
1 +FROM golang:1.22 AS build-env
2
3 RUN mkdir -p /workspace
4 WORKDIR /workspace
src/go/collectors/go.d.plugin/Makefile
+2 -2
@@ -60,7 +60,7 @@ dev-log:
60 docker-compose logs -f netdata
61
62 dev-run: ## Run go.d.plugin inside development environment
63 - go run github.com/netdata/go.d.plugin/cmd/godplugin -d -c conf.d
63 + go run github.com/netdata/netdata/go/go.d.plugin/cmd/godplugin -d -c conf.d
64
65 dev-mock: ## Run go.d.plugin inside development environment with mock config
66 - go run github.com/netdata/go.d.plugin/cmd/godplugin -d -c ./mocks/conf.d -m $(DEV_MODULES)
66 + go run github.com/netdata/netdata/go/go.d.plugin/cmd/godplugin -d -c ./mocks/conf.d -m $(DEV_MODULES)
src/go/collectors/go.d.plugin/README.md
+1 -1
@@ -132,7 +132,7 @@ see the appropriate collector readme.
132 ## Configuration
133
134 Edit the `go.d.conf` configuration file using `edit-config` from the
135 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md), which is typically
135 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory), which is typically
136 at `/etc/netdata`.
137
138 ```bash
src/go/collectors/go.d.plugin/agent/agent.go
+12 -12
@@ -12,18 +12,18 @@ import (
12 "syscall"
13 "time"
14
15 - "github.com/netdata/go.d.plugin/agent/confgroup"
16 - "github.com/netdata/go.d.plugin/agent/discovery"
17 - "github.com/netdata/go.d.plugin/agent/filelock"
18 - "github.com/netdata/go.d.plugin/agent/filestatus"
19 - "github.com/netdata/go.d.plugin/agent/functions"
20 - "github.com/netdata/go.d.plugin/agent/jobmgr"
21 - "github.com/netdata/go.d.plugin/agent/module"
22 - "github.com/netdata/go.d.plugin/agent/netdataapi"
23 - "github.com/netdata/go.d.plugin/agent/safewriter"
24 - "github.com/netdata/go.d.plugin/agent/vnodes"
25 - "github.com/netdata/go.d.plugin/logger"
26 - "github.com/netdata/go.d.plugin/pkg/multipath"
15 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
16 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery"
17 + "github.com/netdata/netdata/go/go.d.plugin/agent/filelock"
18 + "github.com/netdata/netdata/go/go.d.plugin/agent/filestatus"
19 + "github.com/netdata/netdata/go/go.d.plugin/agent/functions"
20 + "github.com/netdata/netdata/go/go.d.plugin/agent/jobmgr"
21 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
22 + "github.com/netdata/netdata/go/go.d.plugin/agent/netdataapi"
23 + "github.com/netdata/netdata/go/go.d.plugin/agent/safewriter"
24 + "github.com/netdata/netdata/go/go.d.plugin/agent/vnodes"
25 + "github.com/netdata/netdata/go/go.d.plugin/logger"
26 + "github.com/netdata/netdata/go/go.d.plugin/pkg/multipath"
27
28 "github.com/mattn/go-isatty"
29 )
src/go/collectors/go.d.plugin/agent/agent_test.go
+2 -2
@@ -9,8 +9,8 @@ import (
9 "testing"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
13 - "github.com/netdata/go.d.plugin/agent/safewriter"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/safewriter"
14 "github.com/stretchr/testify/assert"
15 )
16
src/go/collectors/go.d.plugin/agent/confgroup/group.go
+2 -2
@@ -8,8 +8,8 @@ import (
8 "regexp"
9 "strings"
10
11 - "github.com/netdata/go.d.plugin/agent/hostinfo"
12 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/hostinfo"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13
14 "github.com/ilyam8/hashstructure"
15 )
src/go/collectors/go.d.plugin/agent/confgroup/group_test.go
+1 -1
@@ -5,7 +5,7 @@ package confgroup
5 import (
6 "testing"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9
10 "github.com/stretchr/testify/assert"
11 )
src/go/collectors/go.d.plugin/agent/discovery/cache.go
+1 -1
@@ -3,7 +3,7 @@
3 package discovery
4
5 import (
6 - "github.com/netdata/go.d.plugin/agent/confgroup"
6 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
7 )
8
9 type cache map[string]*confgroup.Group
src/go/collectors/go.d.plugin/agent/discovery/config.go
+3 -3
@@ -5,9 +5,9 @@ package discovery
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/agent/confgroup"
9 - "github.com/netdata/go.d.plugin/agent/discovery/dummy"
10 - "github.com/netdata/go.d.plugin/agent/discovery/file"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/dummy"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/file"
11 )
12
13 type Config struct {
src/go/collectors/go.d.plugin/agent/discovery/dummy/config.go
+1 -1
@@ -5,7 +5,7 @@ package dummy
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/agent/confgroup"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
9 )
10
11 type Config struct {
src/go/collectors/go.d.plugin/agent/discovery/dummy/discovery.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "fmt"
8 "log/slog"
9
10 - "github.com/netdata/go.d.plugin/agent/confgroup"
11 - "github.com/netdata/go.d.plugin/logger"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
11 + "github.com/netdata/netdata/go/go.d.plugin/logger"
12 )
13
14 func NewDiscovery(cfg Config) (*Discovery, error) {
src/go/collectors/go.d.plugin/agent/discovery/dummy/discovery_test.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "testing"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/confgroup"
11 - "github.com/netdata/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12
13 "github.com/stretchr/testify/assert"
14 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/agent/discovery/dyncfg/config.go
+3 -3
@@ -3,9 +3,9 @@
3 package dyncfg
4
5 import (
6 - "github.com/netdata/go.d.plugin/agent/confgroup"
7 - "github.com/netdata/go.d.plugin/agent/functions"
8 - "github.com/netdata/go.d.plugin/agent/module"
6 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
7 + "github.com/netdata/netdata/go/go.d.plugin/agent/functions"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 )
10
11 type Config struct {
src/go/collectors/go.d.plugin/agent/discovery/dyncfg/dyncfg.go
+4 -4
@@ -10,10 +10,10 @@ import (
10 "strings"
11 "sync"
12
13 - "github.com/netdata/go.d.plugin/agent/confgroup"
14 - "github.com/netdata/go.d.plugin/agent/functions"
15 - "github.com/netdata/go.d.plugin/agent/module"
16 - "github.com/netdata/go.d.plugin/logger"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
14 + "github.com/netdata/netdata/go/go.d.plugin/agent/functions"
15 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
16 + "github.com/netdata/netdata/go/go.d.plugin/logger"
17
18 "gopkg.in/yaml.v2"
19 )
src/go/collectors/go.d.plugin/agent/discovery/dyncfg/dyncfg_test.go
+3 -3
@@ -8,9 +8,9 @@ import (
8 "testing"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/agent/confgroup"
12 - "github.com/netdata/go.d.plugin/agent/functions"
13 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/functions"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14
15 "github.com/stretchr/testify/assert"
16 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/agent/discovery/dyncfg/ext.go
+1 -1
@@ -5,7 +5,7 @@ import (
5 "os"
6 "strings"
7
8 - "github.com/netdata/go.d.plugin/agent/confgroup"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
9
10 "gopkg.in/yaml.v2"
11 )
src/go/collectors/go.d.plugin/agent/discovery/file/config.go
+1 -1
@@ -5,7 +5,7 @@ package file
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/agent/confgroup"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
9 )
10
11 type Config struct {
src/go/collectors/go.d.plugin/agent/discovery/file/discovery.go
+2 -2
@@ -9,8 +9,8 @@ import (
9 "log/slog"
10 "sync"
11
12 - "github.com/netdata/go.d.plugin/agent/confgroup"
13 - "github.com/netdata/go.d.plugin/logger"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
13 + "github.com/netdata/netdata/go/go.d.plugin/logger"
14 )
15
16 var log = logger.New().With(
src/go/collectors/go.d.plugin/agent/discovery/file/parse.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "os"
8 "path/filepath"
9
10 - "github.com/netdata/go.d.plugin/agent/confgroup"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
11
12 "gopkg.in/yaml.v2"
13 )
src/go/collectors/go.d.plugin/agent/discovery/file/parse_test.go
+2 -2
@@ -5,8 +5,8 @@ package file
5 import (
6 "testing"
7
8 - "github.com/netdata/go.d.plugin/agent/confgroup"
9 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10
11 "github.com/stretchr/testify/assert"
12 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/agent/discovery/file/read.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "os"
8 "path/filepath"
9
10 - "github.com/netdata/go.d.plugin/agent/confgroup"
11 - "github.com/netdata/go.d.plugin/logger"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
11 + "github.com/netdata/netdata/go/go.d.plugin/logger"
12 )
13
14 type (
src/go/collectors/go.d.plugin/agent/discovery/file/read_test.go
+2 -2
@@ -5,8 +5,8 @@ package file
5 import (
6 "testing"
7
8 - "github.com/netdata/go.d.plugin/agent/confgroup"
9 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10
11 "github.com/stretchr/testify/assert"
12 )
src/go/collectors/go.d.plugin/agent/discovery/file/sim_test.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "testing"
11 "time"
12
13 - "github.com/netdata/go.d.plugin/agent/confgroup"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
14
15 "github.com/stretchr/testify/assert"
16 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/agent/discovery/file/watch.go
+2 -2
@@ -9,8 +9,8 @@ import (
9 "strings"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/confgroup"
13 - "github.com/netdata/go.d.plugin/logger"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
13 + "github.com/netdata/netdata/go/go.d.plugin/logger"
14
15 "github.com/fsnotify/fsnotify"
16 )
src/go/collectors/go.d.plugin/agent/discovery/file/watch_test.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "testing"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/confgroup"
10 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11
12 "github.com/stretchr/testify/assert"
13 )
src/go/collectors/go.d.plugin/agent/discovery/manager.go
+4 -4
@@ -10,10 +10,10 @@ import (
10 "sync"
11 "time"
12
13 - "github.com/netdata/go.d.plugin/agent/confgroup"
14 - "github.com/netdata/go.d.plugin/agent/discovery/dummy"
15 - "github.com/netdata/go.d.plugin/agent/discovery/file"
16 - "github.com/netdata/go.d.plugin/logger"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
14 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/dummy"
15 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/file"
16 + "github.com/netdata/netdata/go/go.d.plugin/logger"
17 )
18
19 func NewManager(cfg Config) (*Manager, error) {
src/go/collectors/go.d.plugin/agent/discovery/manager_test.go
+2 -2
@@ -9,8 +9,8 @@ import (
9 "testing"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/confgroup"
13 - "github.com/netdata/go.d.plugin/agent/discovery/file"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/file"
14 "github.com/stretchr/testify/assert"
15 "github.com/stretchr/testify/require"
16 )
src/go/collectors/go.d.plugin/agent/discovery/sd/hostsocket/net.go
+2 -2
@@ -15,8 +15,8 @@ import (
15 "strings"
16 "time"
17
18 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
19 - "github.com/netdata/go.d.plugin/logger"
18 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
19 + "github.com/netdata/netdata/go/go.d.plugin/logger"
20
21 "github.com/ilyam8/hashstructure"
22 )
src/go/collectors/go.d.plugin/agent/discovery/sd/hostsocket/net_test.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "errors"
8 "testing"
9
10 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
11 )
12
13 var (
src/go/collectors/go.d.plugin/agent/discovery/sd/hostsocket/sim_test.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "testing"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
11
12 "github.com/stretchr/testify/assert"
13 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes.go
+3 -3
@@ -11,9 +11,9 @@ import (
11 "sync"
12 "time"
13
14 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
15 - "github.com/netdata/go.d.plugin/logger"
16 - "github.com/netdata/go.d.plugin/pkg/k8sclient"
14 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
15 + "github.com/netdata/netdata/go/go.d.plugin/logger"
16 + "github.com/netdata/netdata/go/go.d.plugin/pkg/k8sclient"
17
18 "github.com/ilyam8/hashstructure"
19 corev1 "k8s.io/api/core/v1"
src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes_test.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "os"
8 "testing"
9
10 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
11 - "github.com/netdata/go.d.plugin/pkg/k8sclient"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/k8sclient"
12
13 "github.com/stretchr/testify/assert"
14 corev1 "k8s.io/api/core/v1"
src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod.go
+2 -2
@@ -9,8 +9,8 @@ import (
9 "strconv"
10 "strings"
11
12 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
13 - "github.com/netdata/go.d.plugin/logger"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
13 + "github.com/netdata/netdata/go/go.d.plugin/logger"
14
15 corev1 "k8s.io/api/core/v1"
16 "k8s.io/client-go/tools/cache"
src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod_test.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "testing"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
13
14 "github.com/stretchr/testify/assert"
15 corev1 "k8s.io/api/core/v1"
src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service.go
+2 -2
@@ -9,8 +9,8 @@ import (
9 "strconv"
10 "strings"
11
12 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
13 - "github.com/netdata/go.d.plugin/logger"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
13 + "github.com/netdata/netdata/go/go.d.plugin/logger"
14
15 corev1 "k8s.io/api/core/v1"
16 "k8s.io/client-go/tools/cache"
src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service_test.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "testing"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
13
14 "github.com/stretchr/testify/assert"
15 corev1 "k8s.io/api/core/v1"
src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/sim_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "testing"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
12
13 "github.com/stretchr/testify/assert"
14 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/accumulator.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "sync"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
11 - "github.com/netdata/go.d.plugin/logger"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
11 + "github.com/netdata/netdata/go/go.d.plugin/logger"
12 )
13
14 func newAccumulator() *accumulator {
src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/classify.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "strings"
8 "text/template"
9
10 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
11 - "github.com/netdata/go.d.plugin/logger"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
11 + "github.com/netdata/netdata/go/go.d.plugin/logger"
12 )
13
14 func newTargetClassificator(cfg []ClassifyRuleConfig) (*targetClassificator, error) {
src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/classify_test.go
+1 -1
@@ -5,7 +5,7 @@ package pipeline
5 import (
6 "testing"
7
8 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
9
10 "github.com/stretchr/testify/assert"
11 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/compose.go
+3 -3
@@ -6,9 +6,9 @@ import (
6 "bytes"
7 "text/template"
8
9 - "github.com/netdata/go.d.plugin/agent/confgroup"
10 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
11 - "github.com/netdata/go.d.plugin/logger"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
11 + "github.com/netdata/netdata/go/go.d.plugin/logger"
12
13 "gopkg.in/yaml.v2"
14 )
src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/compose_test.go
+2 -2
@@ -5,8 +5,8 @@ package pipeline
5 import (
6 "testing"
7
8 - "github.com/netdata/go.d.plugin/agent/confgroup"
9 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
10
11 "github.com/stretchr/testify/assert"
12 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/config.go
+2 -2
@@ -5,9 +5,9 @@ package pipeline
5 import (
6 "errors"
7 "fmt"
8 - "github.com/netdata/go.d.plugin/agent/discovery/sd/hostsocket"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/hostsocket"
9
10 - "github.com/netdata/go.d.plugin/agent/discovery/sd/kubernetes"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/kubernetes"
11 )
12
13 type Config struct {
src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/pipeline.go
+5 -5
@@ -7,11 +7,11 @@ import (
7 "log/slog"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/confgroup"
11 - "github.com/netdata/go.d.plugin/agent/discovery/sd/hostsocket"
12 - "github.com/netdata/go.d.plugin/agent/discovery/sd/kubernetes"
13 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
14 - "github.com/netdata/go.d.plugin/logger"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/hostsocket"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/kubernetes"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
14 + "github.com/netdata/netdata/go/go.d.plugin/logger"
15 )
16
17 func New(cfg Config) (*Pipeline, error) {
src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/pipeline_test.go
+2 -2
@@ -9,8 +9,8 @@ import (
9 "testing"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/confgroup"
13 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
14
15 "github.com/ilyam8/hashstructure"
16 "github.com/stretchr/testify/assert"
src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/selector.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "fmt"
8 "strings"
9
10 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
11 )
12
13 type selector interface {
src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/selector_test.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "regexp"
7 "testing"
8
9 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
10
11 "github.com/stretchr/testify/assert"
12 )
src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/sim_test.go
+3 -3
@@ -8,9 +8,9 @@ import (
8 "testing"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/agent/confgroup"
12 - "github.com/netdata/go.d.plugin/agent/discovery/sd/model"
13 - "github.com/netdata/go.d.plugin/logger"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model"
13 + "github.com/netdata/netdata/go/go.d.plugin/logger"
14
15 "github.com/stretchr/testify/assert"
16 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/agent/discovery/sd/sd.go
+3 -3
@@ -6,9 +6,9 @@ import (
6 "context"
7 "sync"
8
9 - "github.com/netdata/go.d.plugin/agent/confgroup"
10 - "github.com/netdata/go.d.plugin/agent/discovery/sd/pipeline"
11 - "github.com/netdata/go.d.plugin/logger"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/pipeline"
11 + "github.com/netdata/netdata/go/go.d.plugin/logger"
12
13 "gopkg.in/yaml.v2"
14 )
src/go/collectors/go.d.plugin/agent/discovery/sd/sd_test.go
+1 -1
@@ -5,7 +5,7 @@ package sd
5 import (
6 "testing"
7
8 - "github.com/netdata/go.d.plugin/agent/discovery/sd/pipeline"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/pipeline"
9
10 "gopkg.in/yaml.v2"
11 )
src/go/collectors/go.d.plugin/agent/discovery/sd/sim_test.go
+3 -3
@@ -9,9 +9,9 @@ import (
9 "testing"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/confgroup"
13 - "github.com/netdata/go.d.plugin/agent/discovery/sd/pipeline"
14 - "github.com/netdata/go.d.plugin/logger"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/pipeline"
14 + "github.com/netdata/netdata/go/go.d.plugin/logger"
15
16 "github.com/stretchr/testify/assert"
17 )
src/go/collectors/go.d.plugin/agent/discovery/sim_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "testing"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/agent/confgroup"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
12 "github.com/stretchr/testify/assert"
13 "github.com/stretchr/testify/require"
14 )
src/go/collectors/go.d.plugin/agent/executable/executable.go new
+42
@@ -0,0 +1,42 @@
1 +// SPDX-License-Identifier: GPL-3.0-or-later
2 +
3 +package executable
4 +
5 +import (
6 + "os"
7 + "path/filepath"
8 + "strings"
9 +)
10 +
11 +var (
12 + Name string
13 + Directory string
14 +)
15 +
16 +func init() {
17 + path, err := os.Executable()
18 + if err != nil || path == "" {
19 + Name = "go.d"
20 + return
21 + }
22 +
23 + _, Name = filepath.Split(path)
24 + Name = strings.TrimSuffix(Name, ".plugin")
25 + Name = strings.TrimSuffix(Name, ".test")
26 +
27 + // FIXME: can't use logger because of circular import
28 + fi, err := os.Lstat(path)
29 + if err != nil {
30 + return
31 + }
32 +
33 + if fi.Mode()&os.ModeSymlink != 0 {
34 + realPath, err := filepath.EvalSymlinks(path)
35 + if err != nil {
36 + return
37 + }
38 + Directory = filepath.Dir(realPath)
39 + } else {
40 + Directory = filepath.Dir(path)
41 + }
42 +}
src/go/collectors/go.d.plugin/agent/executable/name.go deleted
-22
@@ -1,22 +0,0 @@
1 -// SPDX-License-Identifier: GPL-3.0-or-later
2 -
3 -package executable
4 -
5 -import (
6 - "os"
7 - "path/filepath"
8 - "strings"
9 -)
10 -
11 -var Name string
12 -
13 -func init() {
14 - s, err := os.Executable()
15 - if err != nil || s == "" || strings.HasSuffix(s, ".test") {
16 - Name = "go.d"
17 - return
18 - }
19 -
20 - _, Name = filepath.Split(s)
21 - Name = strings.TrimSuffix(Name, ".plugin")
22 -}
src/go/collectors/go.d.plugin/agent/filestatus/manager.go
+2 -2
@@ -8,8 +8,8 @@ import (
8 "os"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/agent/confgroup"
12 - "github.com/netdata/go.d.plugin/logger"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
12 + "github.com/netdata/netdata/go/go.d.plugin/logger"
13 )
14
15 func NewManager(path string) *Manager {
src/go/collectors/go.d.plugin/agent/filestatus/manager_test.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "testing"
11 "time"
12
13 - "github.com/netdata/go.d.plugin/agent/confgroup"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
14
15 "github.com/stretchr/testify/assert"
16 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/agent/filestatus/store.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "slices"
10 "sync"
11
12 - "github.com/netdata/go.d.plugin/agent/confgroup"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
13 )
14
15 func LoadStore(path string) (*Store, error) {
src/go/collectors/go.d.plugin/agent/filestatus/store_test.go
+1 -1
@@ -5,7 +5,7 @@ package filestatus
5 import (
6 "testing"
7
8 - "github.com/netdata/go.d.plugin/agent/confgroup"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
9
10 "github.com/stretchr/testify/assert"
11 )
src/go/collectors/go.d.plugin/agent/functions/manager.go
+1 -1
@@ -11,7 +11,7 @@ import (
11 "strings"
12 "sync"
13
14 - "github.com/netdata/go.d.plugin/logger"
14 + "github.com/netdata/netdata/go/go.d.plugin/logger"
15
16 "github.com/mattn/go-isatty"
17 "github.com/muesli/cancelreader"
src/go/collectors/go.d.plugin/agent/jobmgr/cache.go
+1 -1
@@ -5,7 +5,7 @@ package jobmgr
5 import (
6 "context"
7
8 - "github.com/netdata/go.d.plugin/agent/confgroup"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
9 )
10
11 func newRunningJobsCache() *runningJobsCache {
src/go/collectors/go.d.plugin/agent/jobmgr/di.go
+2 -2
@@ -3,8 +3,8 @@
3 package jobmgr
4
5 import (
6 - "github.com/netdata/go.d.plugin/agent/confgroup"
7 - "github.com/netdata/go.d.plugin/agent/vnodes"
6 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
7 + "github.com/netdata/netdata/go/go.d.plugin/agent/vnodes"
8 )
9
10 type FileLocker interface {
src/go/collectors/go.d.plugin/agent/jobmgr/manager.go
+3 -3
@@ -12,9 +12,9 @@ import (
12 "sync"
13 "time"
14
15 - "github.com/netdata/go.d.plugin/agent/confgroup"
16 - "github.com/netdata/go.d.plugin/agent/module"
17 - "github.com/netdata/go.d.plugin/logger"
15 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
16 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
17 + "github.com/netdata/netdata/go/go.d.plugin/logger"
18
19 "gopkg.in/yaml.v2"
20 )
src/go/collectors/go.d.plugin/agent/jobmgr/manager_test.go
+3 -3
@@ -9,9 +9,9 @@ import (
9 "testing"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/confgroup"
13 - "github.com/netdata/go.d.plugin/agent/module"
14 - "github.com/netdata/go.d.plugin/agent/safewriter"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 + "github.com/netdata/netdata/go/go.d.plugin/agent/safewriter"
15 "github.com/stretchr/testify/assert"
16 )
17
src/go/collectors/go.d.plugin/agent/jobmgr/noop.go
+2 -2
@@ -3,8 +3,8 @@
3 package jobmgr
4
5 import (
6 - "github.com/netdata/go.d.plugin/agent/confgroup"
7 - "github.com/netdata/go.d.plugin/agent/vnodes"
6 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
7 + "github.com/netdata/netdata/go/go.d.plugin/agent/vnodes"
8 )
9
10 type noop struct{}
src/go/collectors/go.d.plugin/agent/jobmgr/run.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "slices"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/ticker"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/ticker"
11 )
12
13 func (m *Manager) runRunningJobsHandling(ctx context.Context) {
src/go/collectors/go.d.plugin/agent/module/job.go
+4 -4
@@ -14,9 +14,9 @@ import (
14 "sync"
15 "time"
16
17 - "github.com/netdata/go.d.plugin/agent/netdataapi"
18 - "github.com/netdata/go.d.plugin/agent/vnodes"
19 - "github.com/netdata/go.d.plugin/logger"
17 + "github.com/netdata/netdata/go/go.d.plugin/agent/netdataapi"
18 + "github.com/netdata/netdata/go/go.d.plugin/agent/vnodes"
19 + "github.com/netdata/netdata/go/go.d.plugin/logger"
20 )
21
22 var obsoleteLock = &sync.Mutex{}
@@ -39,7 +39,7 @@ var reSpace = regexp.MustCompile(`\s+`)
39 var ndInternalMonitoringDisabled = os.Getenv("NETDATA_INTERNALS_MONITORING") == "NO"
40
41 func newRuntimeChart(pluginName string) *Chart {
42 - // this is needed to keep the same name as we had before https://github.com/netdata/go.d.plugin/issues/650
42 + // this is needed to keep the same name as we had before https://github.com/netdata/netdata/go/go.d.plugin/issues/650
43 ctxName := pluginName
44 if ctxName == "go.d" {
45 ctxName = "go"
src/go/collectors/go.d.plugin/agent/module/module.go
+1 -1
@@ -3,7 +3,7 @@
3 package module
4
5 import (
6 - "github.com/netdata/go.d.plugin/logger"
6 + "github.com/netdata/netdata/go/go.d.plugin/logger"
7 )
8
9 // Module is an interface that represents a module.
src/go/collectors/go.d.plugin/agent/setup.go
+7 -7
@@ -7,13 +7,13 @@ import (
7 "os"
8 "strings"
9
10 - "github.com/netdata/go.d.plugin/agent/confgroup"
11 - "github.com/netdata/go.d.plugin/agent/discovery"
12 - "github.com/netdata/go.d.plugin/agent/discovery/dummy"
13 - "github.com/netdata/go.d.plugin/agent/discovery/file"
14 - "github.com/netdata/go.d.plugin/agent/hostinfo"
15 - "github.com/netdata/go.d.plugin/agent/module"
16 - "github.com/netdata/go.d.plugin/agent/vnodes"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/dummy"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/file"
14 + "github.com/netdata/netdata/go/go.d.plugin/agent/hostinfo"
15 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
16 + "github.com/netdata/netdata/go/go.d.plugin/agent/vnodes"
17
18 "gopkg.in/yaml.v2"
19 )
src/go/collectors/go.d.plugin/agent/setup_test.go
+1 -1
@@ -5,7 +5,7 @@ package agent
5 import (
6 "testing"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9
10 "github.com/stretchr/testify/assert"
11 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/agent/vnodes/vnodes.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "path/filepath"
11 "sync"
12
13 - "github.com/netdata/go.d.plugin/logger"
13 + "github.com/netdata/netdata/go/go.d.plugin/logger"
14
15 "gopkg.in/yaml.v2"
16 )
src/go/collectors/go.d.plugin/cmd/godplugin/main.go
+18 -5
@@ -11,15 +11,16 @@ import (
11 "path/filepath"
12 "strings"
13
14 - "github.com/netdata/go.d.plugin/agent"
15 - "github.com/netdata/go.d.plugin/cli"
16 - "github.com/netdata/go.d.plugin/logger"
17 - "github.com/netdata/go.d.plugin/pkg/multipath"
14 + "github.com/netdata/netdata/go/go.d.plugin/agent"
15 + "github.com/netdata/netdata/go/go.d.plugin/agent/executable"
16 + "github.com/netdata/netdata/go/go.d.plugin/cli"
17 + "github.com/netdata/netdata/go/go.d.plugin/logger"
18 + "github.com/netdata/netdata/go/go.d.plugin/pkg/multipath"
19
20 "github.com/jessevdk/go-flags"
21 "golang.org/x/net/http/httpproxy"
22
22 - _ "github.com/netdata/go.d.plugin/modules"
23 + _ "github.com/netdata/netdata/go/go.d.plugin/modules"
24 )
25
26 var (
@@ -45,6 +46,12 @@ func confDir(opts *cli.Option) multipath.MultiPath {
46 stockDir,
47 )
48 }
49 + if executable.Directory != "" {
50 + return multipath.New(
51 + filepath.Join(executable.Directory, "/../../../../etc/netdata"),
52 + filepath.Join(executable.Directory, "/../../../../usr/lib/netdata/conf.d"),
53 + )
54 + }
55 return multipath.New(
56 filepath.Join(cd, "/../../../../etc/netdata"),
57 filepath.Join(cd, "/../../../../usr/lib/netdata/conf.d"),
@@ -64,6 +71,12 @@ func modulesConfDir(opts *cli.Option) (mpath multipath.MultiPath) {
71 }
72 return multipath.New(mpath...)
73 }
74 + if executable.Directory != "" {
75 + return multipath.New(
76 + filepath.Join(executable.Directory, "/../../../../etc/netdata", name),
77 + filepath.Join(executable.Directory, "/../../../../usr/lib/netdata/conf.d", name),
78 + )
79 + }
80 return multipath.New(
81 filepath.Join(cd, "/../../../../etc/netdata", name),
82 filepath.Join(cd, "/../../../../usr/lib/netdata/conf.d", name),
src/go/collectors/go.d.plugin/examples/simple/main.go
+5 -5
@@ -9,11 +9,11 @@ import (
9 "os"
10 "path"
11
12 - "github.com/netdata/go.d.plugin/agent"
13 - "github.com/netdata/go.d.plugin/agent/module"
14 - "github.com/netdata/go.d.plugin/cli"
15 - "github.com/netdata/go.d.plugin/logger"
16 - "github.com/netdata/go.d.plugin/pkg/multipath"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 + "github.com/netdata/netdata/go/go.d.plugin/cli"
15 + "github.com/netdata/netdata/go/go.d.plugin/logger"
16 + "github.com/netdata/netdata/go/go.d.plugin/pkg/multipath"
17
18 "github.com/jessevdk/go-flags"
19 )
src/go/collectors/go.d.plugin/go.mod
+3 -3
@@ -1,4 +1,4 @@
1 -module github.com/netdata/go.d.plugin
1 +module github.com/netdata/netdata/go/go.d.plugin
2
3 go 1.21
4
@@ -41,7 +41,7 @@ require (
41 github.com/stretchr/testify v1.8.4
42 github.com/tomasen/fcgi_client v0.0.0-20180423082037-2bb3d819fd19
43 github.com/valyala/fastjson v1.6.4
44 - github.com/vmware/govmomi v0.34.2
44 + github.com/vmware/govmomi v0.35.0
45 go.mongodb.org/mongo-driver v1.14.0
46 golang.org/x/net v0.21.0
47 golang.org/x/text v0.14.0
@@ -79,7 +79,7 @@ require (
79 github.com/google/gnostic-models v0.6.8 // indirect
80 github.com/google/go-cmp v0.6.0 // indirect
81 github.com/google/gofuzz v1.2.0 // indirect
82 - github.com/google/uuid v1.4.0 // indirect
82 + github.com/google/uuid v1.6.0 // indirect
83 github.com/grafana/regexp v0.0.0-20220304095617-2e8d9baf4ac2 // indirect
84 github.com/huandu/xstrings v1.3.3 // indirect
85 github.com/imdario/mergo v0.3.12 // indirect
src/go/collectors/go.d.plugin/go.sum
+4 -4
@@ -111,8 +111,8 @@ github.com/google/pprof v0.0.0-20220520215854-d04f2422c8a1 h1:K4bn56FHdjFCfjSo3w
111 github.com/google/pprof v0.0.0-20220520215854-d04f2422c8a1/go.mod h1:gSuNB+gJaOiQKLEZ+q+PK9Mq3SOzhRcw2GsGS/FhYDk=
112 github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
113 github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
114 -github.com/google/uuid v1.4.0 h1:MtMxsa51/r9yyhkyLsVeVt0B+BGQZzpQiTQ4eHZ8bc4=
115 -github.com/google/uuid v1.4.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
114 +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
115 +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
116 github.com/gosnmp/gosnmp v1.37.0 h1:/Tf8D3b9wrnNuf/SfbvO+44mPrjVphBhRtcGg22V07Y=
117 github.com/gosnmp/gosnmp v1.37.0/go.mod h1:GDH9vNqpsD7f2HvZhKs5dlqSEcAS6s6Qp099oZRCR+M=
118 github.com/grafana/regexp v0.0.0-20220304095617-2e8d9baf4ac2 h1:uirlL/j72L93RhV4+mkWhjv0cov2I0MIgPOG9rMDr1k=
@@ -321,8 +321,8 @@ github.com/tomasen/fcgi_client v0.0.0-20180423082037-2bb3d819fd19 h1:ZCmSnT6CLGh
321 github.com/tomasen/fcgi_client v0.0.0-20180423082037-2bb3d819fd19/go.mod h1:SXTY+QvI+KTTKXQdg0zZ7nx0u94QWh8ZAwBQYsW9cqk=
322 github.com/valyala/fastjson v1.6.4 h1:uAUNq9Z6ymTgGhcm0UynUAB6tlbakBrz6CQFax3BXVQ=
323 github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLrsQns1aXY=
324 -github.com/vmware/govmomi v0.34.2 h1:o6ydkTVITOkpQU6HAf6tP5GvHFCNJlNUNlMsvFK77X4=
325 -github.com/vmware/govmomi v0.34.2/go.mod h1:qWWT6n9mdCr/T9vySsoUqcI04sSEj4CqHXxtk/Y+Los=
324 +github.com/vmware/govmomi v0.35.0 h1:vN6m2J5ezSJomSTHyKbvpfoEZTn2mGXWg2FFpjRTRp0=
325 +github.com/vmware/govmomi v0.35.0/go.mod h1:VvIo6siOYFKdF9eU7qrY9+j/F99DV/LtSgsOpxFXJAY=
326 github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c=
327 github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI=
328 github.com/xdg-go/scram v1.1.2 h1:FHX5I5B4i4hKRVRBCFRxq1iQRej7WO3hhBuJf+UUySY=
src/go/collectors/go.d.plugin/hack/go-build.sh
+1 -1
@@ -40,7 +40,7 @@ GOLDFLAGS="$GOLDFLAGS -w -s -X main.version=$VERSION"
40
41 build() {
42 echo "Building ${GOOS}/${GOARCH}"
43 - CGO_ENABLED=0 GOOS="$1" GOARCH="$2" go build -ldflags "${GOLDFLAGS}" -o "$3" "github.com/netdata/go.d.plugin/cmd/godplugin"
43 + CGO_ENABLED=0 GOOS="$1" GOARCH="$2" go build -ldflags "${GOLDFLAGS}" -o "$3" "github.com/netdata/netdata/go/go.d.plugin/cmd/godplugin"
44 }
45
46 create_config_archives() {
src/go/collectors/go.d.plugin/logger/logger.go
+1 -1
@@ -12,7 +12,7 @@ import (
12 "sync/atomic"
13 "syscall"
14
15 - "github.com/netdata/go.d.plugin/agent/executable"
15 + "github.com/netdata/netdata/go/go.d.plugin/agent/executable"
16
17 "github.com/mattn/go-isatty"
18 )
src/go/collectors/go.d.plugin/modules/activemq/activemq.go
+3 -3
@@ -8,10 +8,10 @@ import (
8 "strings"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/pkg/matcher"
12 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13
14 - "github.com/netdata/go.d.plugin/agent/module"
14 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
15 )
16
17 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/activemq/activemq_test.go
+2 -2
@@ -7,9 +7,9 @@ import (
7 "net/http/httptest"
8 "testing"
9
10 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 "github.com/stretchr/testify/assert"
14 "github.com/stretchr/testify/require"
15 )
src/go/collectors/go.d.plugin/modules/activemq/apiclient.go
+1 -1
@@ -5,7 +5,7 @@ package activemq
5 import (
6 "encoding/xml"
7 "fmt"
8 - "github.com/netdata/go.d.plugin/pkg/web"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
9 "io"
10 "net/http"
11 "net/url"
src/go/collectors/go.d.plugin/modules/activemq/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package activemq
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 // Charts is an alias for module.Charts
src/go/collectors/go.d.plugin/modules/activemq/integrations/activemq.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/act
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/activemq/metadata.yaml"
4 sidebar_label: "ActiveMQ"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Message Brokers"
6 +learn_rel_path: "Collecting Metrics/Message Brokers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -92,7 +92,7 @@ The configuration file name for this integration is `go.d/activemq.conf`.
92
93
94 You can edit the configuration file using the `edit-config` script from the
95 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
95 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
96
97 ```bash
98 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/apache/apache.go
+2 -2
@@ -8,8 +8,8 @@ import (
8 "sync"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
12 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13 )
14
15 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/apache/apache_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 "github.com/stretchr/testify/assert"
14 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/apache/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package apache
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 const (
8 prioRequests = module.Priority + iota
src/go/collectors/go.d.plugin/modules/apache/collect.go
+2 -2
@@ -10,8 +10,8 @@ import (
10 "strconv"
11 "strings"
12
13 - "github.com/netdata/go.d.plugin/pkg/stm"
14 - "github.com/netdata/go.d.plugin/pkg/web"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
14 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
15 )
16
17 func (a *Apache) collect() (map[string]int64, error) {
src/go/collectors/go.d.plugin/modules/apache/init.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "net/http"
8 "strings"
9
10 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 func (a Apache) verifyConfig() error {
src/go/collectors/go.d.plugin/modules/apache/integrations/apache.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/apa
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/apache/metadata.yaml"
4 sidebar_label: "Apache"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -109,7 +109,7 @@ The configuration file name for this integration is `go.d/apache.conf`.
109
110
111 You can edit the configuration file using the `edit-config` script from the
112 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
112 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
113
114 ```bash
115 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/apache/integrations/httpd.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/apa
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/apache/metadata.yaml"
4 sidebar_label: "HTTPD"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -109,7 +109,7 @@ The configuration file name for this integration is `go.d/apache.conf`.
109
110
111 You can edit the configuration file using the `edit-config` script from the
112 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
112 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
113
114 ```bash
115 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/bind/bind.go
+3 -3
@@ -8,10 +8,10 @@ import (
8 "strings"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/pkg/matcher"
12 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13
14 - "github.com/netdata/go.d.plugin/agent/module"
14 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
15 )
16
17 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/bind/charts.go
+1 -1
@@ -3,7 +3,7 @@
3 package bind
4
5 import (
6 - "github.com/netdata/go.d.plugin/agent/module"
6 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
7 )
8
9 type (
src/go/collectors/go.d.plugin/modules/bind/json_client.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "net/url"
11 "path"
12
13 - "github.com/netdata/go.d.plugin/pkg/web"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 type serverStats = jsonServerStats
src/go/collectors/go.d.plugin/modules/bind/xml3_client.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "net/url"
10 "path"
11
12 - "github.com/netdata/go.d.plugin/pkg/web"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13 )
14
15 type xml3Stats struct {
src/go/collectors/go.d.plugin/modules/cassandra/cassandra.go
+3 -3
@@ -6,9 +6,9 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/prometheus"
11 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/cassandra/cassandra_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 "github.com/stretchr/testify/assert"
14 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/cassandra/charts.go
+1 -1
@@ -5,7 +5,7 @@ package cassandra
5 import (
6 "fmt"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 )
10
11 const (
src/go/collectors/go.d.plugin/modules/cassandra/collect.go
+1 -1
@@ -4,7 +4,7 @@ package cassandra
4
5 import (
6 "errors"
7 - "github.com/netdata/go.d.plugin/pkg/prometheus"
7 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
8 "strings"
9 )
10
src/go/collectors/go.d.plugin/modules/cassandra/init.go
+2 -2
@@ -5,8 +5,8 @@ package cassandra
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
9 - "github.com/netdata/go.d.plugin/pkg/web"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
10 )
11
12 func (c *Cassandra) validateConfig() error {
src/go/collectors/go.d.plugin/modules/cassandra/integrations/cassandra.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/cas
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/cassandra/metadata.yaml"
4 sidebar_label: "Cassandra"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -152,7 +152,7 @@ The configuration file name for this integration is `go.d/cassandra.conf`.
152
153
154 You can edit the configuration file using the `edit-config` script from the
155 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
155 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
156
157 ```bash
158 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/chrony/charts.go
+1 -1
@@ -3,7 +3,7 @@
3 package chrony
4
5 import (
6 - "github.com/netdata/go.d.plugin/agent/module"
6 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
7 )
8
9 var charts = module.Charts{
src/go/collectors/go.d.plugin/modules/chrony/chrony.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "time"
8
9 "github.com/facebook/time/ntp/chrony"
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/chrony/integrations/chrony.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/chr
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/chrony/metadata.yaml"
4 sidebar_label: "Chrony"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/System Clock and NTP"
6 +learn_rel_path: "Collecting Metrics/System Clock and NTP"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -102,7 +102,7 @@ The configuration file name for this integration is `go.d/chrony.conf`.
102
103
104 You can edit the configuration file using the `edit-config` script from the
105 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
105 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
106
107 ```bash
108 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/cockroachdb/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package cockroachdb
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 Charts = module.Charts
src/go/collectors/go.d.plugin/modules/cockroachdb/cockroachdb.go
+3 -3
@@ -7,10 +7,10 @@ import (
7 "errors"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/pkg/prometheus"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 )
15
16 // DefaultMetricsSampleInterval hard coded to 10
src/go/collectors/go.d.plugin/modules/cockroachdb/cockroachdb_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 "github.com/stretchr/testify/assert"
13 "github.com/stretchr/testify/require"
14 )
src/go/collectors/go.d.plugin/modules/cockroachdb/collect.go
+2 -2
@@ -5,8 +5,8 @@ package cockroachdb
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
9 - "github.com/netdata/go.d.plugin/pkg/stm"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
10 )
11
12 func validCockroachDBMetrics(scraped prometheus.Series) bool {
src/go/collectors/go.d.plugin/modules/cockroachdb/integrations/cockroachdb.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/coc
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/cockroachdb/metadata.yaml"
4 sidebar_label: "CockroachDB"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -155,7 +155,7 @@ The configuration file name for this integration is `go.d/cockroachdb.conf`.
155
156
157 You can edit the configuration file using the `edit-config` script from the
158 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
158 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
159
160 ```bash
161 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/consul/charts.go
+1 -1
@@ -7,7 +7,7 @@ import (
7
8 "github.com/blang/semver/v4"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 )
12
13 const (
src/go/collectors/go.d.plugin/modules/consul/collect.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "io"
9 "net/http"
10
11 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 const (
src/go/collectors/go.d.plugin/modules/consul/collect_metrics.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "strconv"
9 "strings"
10
11 - "github.com/netdata/go.d.plugin/pkg/prometheus"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
12 )
13
14 func (c *Consul) collectMetricsPrometheus(mx map[string]int64) error {
src/go/collectors/go.d.plugin/modules/consul/collect_net_rtt.go
+1 -1
@@ -4,7 +4,7 @@ import (
4 "math"
5 "time"
6
7 - "github.com/netdata/go.d.plugin/pkg/metrics"
7 + "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics"
8 )
9
10 const (
src/go/collectors/go.d.plugin/modules/consul/consul.go
+3 -3
@@ -10,9 +10,9 @@ import (
10
11 "github.com/blang/semver/v4"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
14 - "github.com/netdata/go.d.plugin/pkg/prometheus"
15 - "github.com/netdata/go.d.plugin/pkg/web"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
15 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
16 )
17
18 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/consul/consul_test.go
+1 -1
@@ -11,7 +11,7 @@ import (
11 "github.com/stretchr/testify/assert"
12 "github.com/stretchr/testify/require"
13
14 - "github.com/netdata/go.d.plugin/pkg/web"
14 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
15 )
16
17 var (
src/go/collectors/go.d.plugin/modules/consul/init.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "net/http"
8 "net/url"
9
10 - "github.com/netdata/go.d.plugin/pkg/prometheus"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 func (c *Consul) validateConfig() error {
src/go/collectors/go.d.plugin/modules/consul/integrations/consul.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/con
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/consul/metadata.yaml"
4 sidebar_label: "Consul"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Service Discovery / Registry"
6 +learn_rel_path: "Collecting Metrics/Service Discovery / Registry"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -203,7 +203,7 @@ The configuration file name for this integration is `go.d/consul.conf`.
203
204
205 You can edit the configuration file using the `edit-config` script from the
206 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
206 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
207
208 ```bash
209 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/coredns/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package coredns
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 // Charts is an alias for module.Charts
src/go/collectors/go.d.plugin/modules/coredns/collect.go
+2 -2
@@ -8,8 +8,8 @@ import (
8 "strings"
9
10 "github.com/blang/semver/v4"
11 - "github.com/netdata/go.d.plugin/pkg/prometheus"
12 - "github.com/netdata/go.d.plugin/pkg/stm"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
13 )
14
15 const (
src/go/collectors/go.d.plugin/modules/coredns/coredns.go
+4 -4
@@ -7,11 +7,11 @@ import (
7 "time"
8
9 "github.com/blang/semver/v4"
10 - "github.com/netdata/go.d.plugin/pkg/matcher"
11 - "github.com/netdata/go.d.plugin/pkg/prometheus"
12 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13
14 - "github.com/netdata/go.d.plugin/agent/module"
14 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
15 )
16
17 const (
src/go/collectors/go.d.plugin/modules/coredns/integrations/coredns.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/cor
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/coredns/metadata.yaml"
4 sidebar_label: "CoreDNS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/DNS and DHCP Servers"
6 +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -138,7 +138,7 @@ The configuration file name for this integration is `go.d/coredns.conf`.
138
139
140 You can edit the configuration file using the `edit-config` script from the
141 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
141 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
142
143 ```bash
144 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/coredns/metrics.go
+1 -1
@@ -3,7 +3,7 @@
3 package coredns
4
5 import (
6 - mtx "github.com/netdata/go.d.plugin/pkg/metrics"
6 + mtx "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics"
7 )
8
9 func newMetrics() *metrics {
src/go/collectors/go.d.plugin/modules/couchbase/charts.go
+1 -1
@@ -3,7 +3,7 @@
3 package couchbase
4
5 import (
6 - "github.com/netdata/go.d.plugin/agent/module"
6 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
7 )
8
9 type (
src/go/collectors/go.d.plugin/modules/couchbase/collect.go
+2 -2
@@ -9,8 +9,8 @@ import (
9 "net/http"
10 "net/url"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
13 - "github.com/netdata/go.d.plugin/pkg/web"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 const (
src/go/collectors/go.d.plugin/modules/couchbase/couchbase.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "net/http"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/couchbase/couchbase_test.go
+2 -2
@@ -8,8 +8,8 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
12 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13
14 "github.com/stretchr/testify/assert"
15 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/couchbase/init.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "errors"
7 "net/http"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 func (cb *Couchbase) initCharts() (*Charts, error) {
src/go/collectors/go.d.plugin/modules/couchbase/integrations/couchbase.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/cou
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/couchbase/metadata.yaml"
4 sidebar_label: "Couchbase"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -94,7 +94,7 @@ The configuration file name for this integration is `go.d/couchbase.conf`.
94
95
96 You can edit the configuration file using the `edit-config` script from the
97 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
97 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
98
99 ```bash
100 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/couchdb/charts.go
+1 -1
@@ -3,7 +3,7 @@
3 package couchdb
4
5 import (
6 - "github.com/netdata/go.d.plugin/agent/module"
6 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
7 )
8
9 type (
src/go/collectors/go.d.plugin/modules/couchdb/collect.go
+2 -2
@@ -13,8 +13,8 @@ import (
13 "strings"
14 "sync"
15
16 - "github.com/netdata/go.d.plugin/pkg/stm"
17 - "github.com/netdata/go.d.plugin/pkg/web"
16 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
17 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
18 )
19
20 const (
src/go/collectors/go.d.plugin/modules/couchdb/couchdb.go
+2 -2
@@ -8,8 +8,8 @@ import (
8 "strings"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
12 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13 )
14
15 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/couchdb/couchdb_test.go
+3 -3
@@ -8,9 +8,9 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
12 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
13 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14
15 "github.com/stretchr/testify/assert"
16 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/couchdb/init.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "errors"
7 "net/http"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 func (cdb *CouchDB) validateConfig() error {
src/go/collectors/go.d.plugin/modules/couchdb/integrations/couchdb.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/cou
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/couchdb/metadata.yaml"
4 sidebar_label: "CouchDB"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -102,7 +102,7 @@ The configuration file name for this integration is `go.d/couchdb.conf`.
102
103
104 You can edit the configuration file using the `edit-config` script from the
105 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
105 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
106
107 ```bash
108 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/dnsdist/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package dnsdist
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 var charts = module.Charts{
8 {
src/go/collectors/go.d.plugin/modules/dnsdist/collect.go
+2 -2
@@ -9,8 +9,8 @@ import (
9 "net/http"
10 "net/url"
11
12 - "github.com/netdata/go.d.plugin/pkg/stm"
13 - "github.com/netdata/go.d.plugin/pkg/web"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 const (
src/go/collectors/go.d.plugin/modules/dnsdist/dnsdist.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "net/http"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/dnsdist/dnsdist_test.go
+2 -2
@@ -8,8 +8,8 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
12 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13
14 "github.com/stretchr/testify/assert"
15 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/dnsdist/init.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "errors"
7 "net/http"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 func (d DNSdist) validateConfig() error {
src/go/collectors/go.d.plugin/modules/dnsdist/integrations/dnsdist.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/dns
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/dnsdist/metadata.yaml"
4 sidebar_label: "DNSdist"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/DNS and DHCP Servers"
6 +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -102,7 +102,7 @@ The configuration file name for this integration is `go.d/dnsdist.conf`.
102
103
104 You can edit the configuration file using the `edit-config` script from the
105 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
105 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
106
107 ```bash
108 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/dnsmasq/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package dnsmasq
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 var cacheCharts = module.Charts{
8 {
src/go/collectors/go.d.plugin/modules/dnsmasq/dnsmasq.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11
12 "github.com/miekg/dns"
13 )
src/go/collectors/go.d.plugin/modules/dnsmasq/init.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "errors"
7 "fmt"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 func (d Dnsmasq) validateConfig() error {
src/go/collectors/go.d.plugin/modules/dnsmasq/integrations/dnsmasq.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/dns
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/dnsmasq/metadata.yaml"
4 sidebar_label: "Dnsmasq"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/DNS and DHCP Servers"
6 +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -90,7 +90,7 @@ The configuration file name for this integration is `go.d/dnsmasq.conf`.
90
91
92 You can edit the configuration file using the `edit-config` script from the
93 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
93 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
94
95 ```bash
96 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/collect.go
+1 -1
@@ -12,7 +12,7 @@ import (
12 "strings"
13 "time"
14
15 - "github.com/netdata/go.d.plugin/pkg/iprange"
15 + "github.com/netdata/netdata/go/go.d.plugin/pkg/iprange"
16 )
17
18 func (d *DnsmasqDHCP) collect() (map[string]int64, error) {
src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/dhcp.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "net"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/iprange"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/iprange"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/integrations/dnsmasq_dhcp.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/dns
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/dnsmasq_dhcp/metadata.yaml"
4 sidebar_label: "Dnsmasq DHCP"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/DNS and DHCP Servers"
6 +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -117,7 +117,7 @@ The configuration file name for this integration is `go.d/dnsmasq_dhcp.conf`.
117
118
119 You can edit the configuration file using the `edit-config` script from the
120 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
120 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
121
122 ```bash
123 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/parse_configuration.go
+1 -1
@@ -12,7 +12,7 @@ import (
12 "sort"
13 "strings"
14
15 - "github.com/netdata/go.d.plugin/pkg/iprange"
15 + "github.com/netdata/netdata/go/go.d.plugin/pkg/iprange"
16 )
17
18 func (d *DnsmasqDHCP) parseDnsmasqDHCPConfiguration() ([]iprange.Range, []net.IP) {
src/go/collectors/go.d.plugin/modules/dnsquery/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/dnsquery/dnsquery.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11
12 "github.com/miekg/dns"
13 )
src/go/collectors/go.d.plugin/modules/dnsquery/dnsquery_test.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "testing"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 "github.com/miekg/dns"
14 "github.com/stretchr/testify/assert"
src/go/collectors/go.d.plugin/modules/dnsquery/init.go
+1 -1
@@ -5,7 +5,7 @@ package dnsquery
5 import (
6 "errors"
7 "fmt"
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9
10 "github.com/miekg/dns"
11 )
src/go/collectors/go.d.plugin/modules/dnsquery/integrations/dns_query.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/dns
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/dnsquery/metadata.yaml"
4 sidebar_label: "DNS query"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/DNS and DHCP Servers"
6 +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -99,7 +99,7 @@ The configuration file name for this integration is `go.d/dns_query.conf`.
99
100
101 You can edit the configuration file using the `edit-config` script from the
102 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
102 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
103
104 ```bash
105 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/docker/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/docker/docker.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 _ "embed"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 "github.com/docker/docker/api/types"
14 docker "github.com/docker/docker/client"
src/go/collectors/go.d.plugin/modules/docker/integrations/docker.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/doc
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/docker/metadata.yaml"
4 sidebar_label: "Docker"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Containers and VMs"
6 +learn_rel_path: "Collecting Metrics/Containers and VMs"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -122,7 +122,7 @@ The configuration file name for this integration is `go.d/docker.conf`.
122
123
124 You can edit the configuration file using the `edit-config` script from the
125 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
125 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
126
127 ```bash
128 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/docker_engine/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package docker_engine
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 Charts = module.Charts
src/go/collectors/go.d.plugin/modules/docker_engine/collect.go
+2 -2
@@ -5,8 +5,8 @@ package docker_engine
5 import (
6 "fmt"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
9 - "github.com/netdata/go.d.plugin/pkg/stm"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
10 )
11
12 func isDockerEngineMetrics(pms prometheus.Series) bool {
src/go/collectors/go.d.plugin/modules/docker_engine/docker_engine.go
+3 -3
@@ -7,10 +7,10 @@ import (
7 "errors"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/pkg/prometheus"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 )
15
16 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/docker_engine/docker_engine_test.go
+3 -3
@@ -8,10 +8,10 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
12 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13
14 - "github.com/netdata/go.d.plugin/agent/module"
14 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
15 "github.com/stretchr/testify/assert"
16 "github.com/stretchr/testify/require"
17 )
src/go/collectors/go.d.plugin/modules/docker_engine/integrations/docker_engine.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/doc
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/docker_engine/metadata.yaml"
4 sidebar_label: "Docker Engine"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Containers and VMs"
6 +learn_rel_path: "Collecting Metrics/Containers and VMs"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -100,7 +100,7 @@ The configuration file name for this integration is `go.d/docker_engine.conf`.
100
101
102 You can edit the configuration file using the `edit-config` script from the
103 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
103 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
104
105 ```bash
106 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/dockerhub/apiclient.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "net/url"
11 "path"
12
13 - "github.com/netdata/go.d.plugin/pkg/web"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 type repository struct {
src/go/collectors/go.d.plugin/modules/dockerhub/charts.go
+1 -1
@@ -5,7 +5,7 @@ package dockerhub
5 import (
6 "strings"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 )
10
11 type (
src/go/collectors/go.d.plugin/modules/dockerhub/dockerhub.go
+2 -2
@@ -6,9 +6,9 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 )
13
14 const (
src/go/collectors/go.d.plugin/modules/dockerhub/integrations/docker_hub_repository.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/doc
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/dockerhub/metadata.yaml"
4 sidebar_label: "Docker Hub repository"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Containers and VMs"
6 +learn_rel_path: "Collecting Metrics/Containers and VMs"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -92,7 +92,7 @@ The configuration file name for this integration is `go.d/dockerhub.conf`.
92
93
94 You can edit the configuration file using the `edit-config` script from the
95 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
95 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
96
97 ```bash
98 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/elasticsearch/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/elasticsearch/collect.go
+2 -2
@@ -13,8 +13,8 @@ import (
13 "strings"
14 "sync"
15
16 - "github.com/netdata/go.d.plugin/pkg/stm"
17 - "github.com/netdata/go.d.plugin/pkg/web"
16 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
17 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
18 )
19
20 const (
src/go/collectors/go.d.plugin/modules/elasticsearch/elasticsearch.go
+2 -2
@@ -8,9 +8,9 @@ import (
8 "sync"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 )
15
16 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/elasticsearch/elasticsearch_test.go
+2 -2
@@ -8,8 +8,8 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
12 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13
14 "github.com/stretchr/testify/assert"
15 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/elasticsearch/init.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "errors"
7 "net/http"
8
9 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
10 )
11
12 func (es *Elasticsearch) validateConfig() error {
src/go/collectors/go.d.plugin/modules/elasticsearch/integrations/elasticsearch.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ela
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/elasticsearch/metadata.yaml"
4 sidebar_label: "Elasticsearch"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Search Engines"
6 +learn_rel_path: "Collecting Metrics/Search Engines"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -194,7 +194,7 @@ The configuration file name for this integration is `go.d/elasticsearch.conf`.
194
195
196 You can edit the configuration file using the `edit-config` script from the
197 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
197 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
198
199 ```bash
200 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/elasticsearch/integrations/opensearch.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ela
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/elasticsearch/metadata.yaml"
4 sidebar_label: "OpenSearch"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Search Engines"
6 +learn_rel_path: "Collecting Metrics/Search Engines"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -194,7 +194,7 @@ The configuration file name for this integration is `go.d/elasticsearch.conf`.
194
195
196 You can edit the configuration file using the `edit-config` script from the
197 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
197 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
198
199 ```bash
200 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/energid/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package energid
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 var charts = module.Charts{
8 // getblockchaininfo (blockchain processing)
src/go/collectors/go.d.plugin/modules/energid/collect.go
+2 -2
@@ -9,8 +9,8 @@ import (
9 "io"
10 "net/http"
11
12 - "github.com/netdata/go.d.plugin/pkg/stm"
13 - "github.com/netdata/go.d.plugin/pkg/web"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 const (
src/go/collectors/go.d.plugin/modules/energid/energid.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "net/http"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/energid/energid_test.go
+2 -2
@@ -10,8 +10,8 @@ import (
10 "os"
11 "testing"
12
13 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
14 - "github.com/netdata/go.d.plugin/pkg/web"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
14 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
15
16 "github.com/stretchr/testify/assert"
17 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/energid/init.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "errors"
7 "net/http"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 func (e Energid) validateConfig() error {
src/go/collectors/go.d.plugin/modules/energid/integrations/energi_core_wallet.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ene
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/energid/metadata.yaml"
4 sidebar_label: "Energi Core Wallet"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Blockchain Servers"
6 +learn_rel_path: "Collecting Metrics/Blockchain Servers"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -94,7 +94,7 @@ The configuration file name for this integration is `go.d/energid.conf`.
94
95
96 You can edit the configuration file using the `edit-config` script from the
97 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
97 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
98
99 ```bash
100 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/envoy/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10
11 "github.com/prometheus/prometheus/model/labels"
12 )
src/go/collectors/go.d.plugin/modules/envoy/collect.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "strconv"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/pkg/prometheus"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
10
11 "github.com/prometheus/prometheus/model/labels"
12 )
src/go/collectors/go.d.plugin/modules/envoy/envoy.go
+3 -3
@@ -6,9 +6,9 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/prometheus"
11 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/envoy/envoy_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 "github.com/stretchr/testify/assert"
14 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/envoy/init.go
+2 -2
@@ -5,8 +5,8 @@ package envoy
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
9 - "github.com/netdata/go.d.plugin/pkg/web"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
10 )
11
12 func (e *Envoy) validateConfig() error {
src/go/collectors/go.d.plugin/modules/envoy/integrations/envoy.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/env
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/envoy/metadata.yaml"
4 sidebar_label: "Envoy"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -141,7 +141,7 @@ The configuration file name for this integration is `go.d/envoy.conf`.
141
142
143 You can edit the configuration file using the `edit-config` script from the
144 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
144 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
145
146 ```bash
147 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/example/charts.go
+1 -1
@@ -4,7 +4,7 @@ package example
4
5 import (
6 "fmt"
7 - "github.com/netdata/go.d.plugin/agent/module"
7 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
8 )
9
10 var chartTemplate = module.Chart{
src/go/collectors/go.d.plugin/modules/example/collect.go
+1 -1
@@ -5,7 +5,7 @@ package example
5 import (
6 "fmt"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 )
10
11 func (e *Example) collect() (map[string]int64, error) {
src/go/collectors/go.d.plugin/modules/example/example.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 _ "embed"
7 "math/rand"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/example/init.go
+1 -1
@@ -4,7 +4,7 @@ package example
4
5 import (
6 "errors"
7 - "github.com/netdata/go.d.plugin/agent/module"
7 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
8 )
9
10 func (e *Example) validateConfig() error {
src/go/collectors/go.d.plugin/modules/filecheck/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package filecheck
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 var (
8 fileCharts = module.Charts{
src/go/collectors/go.d.plugin/modules/filecheck/collect_dirs.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "strings"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 )
14
15 func (fc *Filecheck) collectDirs(ms map[string]int64) {
src/go/collectors/go.d.plugin/modules/filecheck/collect_files.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "strings"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 )
14
15 func (fc *Filecheck) collectFiles(ms map[string]int64) {
src/go/collectors/go.d.plugin/modules/filecheck/filecheck.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/filecheck/filecheck_test.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "strings"
7 "testing"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10
11 "github.com/stretchr/testify/assert"
12 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/filecheck/init.go
+1 -1
@@ -5,7 +5,7 @@ package filecheck
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 )
10
11 func (fc Filecheck) validateConfig() error {
src/go/collectors/go.d.plugin/modules/filecheck/integrations/files_and_directories.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/fil
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/filecheck/metadata.yaml"
4 sidebar_label: "Files and directories"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Linux Systems"
6 +learn_rel_path: "Collecting Metrics/Linux Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -95,7 +95,7 @@ The configuration file name for this integration is `go.d/filecheck.conf`.
95
96
97 You can edit the configuration file using the `edit-config` script from the
98 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
98 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
99
100 ```bash
101 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/fluentd/apiclient.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "net/url"
11 "path"
12
13 - "github.com/netdata/go.d.plugin/pkg/web"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 const pluginsPath = "/api/plugins.json"
src/go/collectors/go.d.plugin/modules/fluentd/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package fluentd
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 // Charts is an alias for module.Charts
src/go/collectors/go.d.plugin/modules/fluentd/fluentd.go
+3 -3
@@ -7,10 +7,10 @@ import (
7 "fmt"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/pkg/matcher"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 )
15
16 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/fluentd/integrations/fluentd.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/flu
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/fluentd/metadata.yaml"
4 sidebar_label: "Fluentd"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Logs Servers"
6 +learn_rel_path: "Collecting Metrics/Logs Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -93,7 +93,7 @@ The configuration file name for this integration is `go.d/fluentd.conf`.
93
94
95 You can edit the configuration file using the `edit-config` script from the
96 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
96 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
97
98 ```bash
99 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/freeradius/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package freeradius
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 // Charts is an alias for module.Charts
src/go/collectors/go.d.plugin/modules/freeradius/collect.go
+1 -1
@@ -3,7 +3,7 @@
3 package freeradius
4
5 import (
6 - "github.com/netdata/go.d.plugin/pkg/stm"
6 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
7 )
8
9 func (f *FreeRADIUS) collect() (map[string]int64, error) {
src/go/collectors/go.d.plugin/modules/freeradius/freeradius.go
+3 -3
@@ -7,10 +7,10 @@ import (
7 "errors"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/modules/freeradius/api"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/modules/freeradius/api"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 )
15
16 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/freeradius/freeradius_test.go
+2 -2
@@ -6,9 +6,9 @@ import (
6 "errors"
7 "testing"
8
9 - "github.com/netdata/go.d.plugin/modules/freeradius/api"
9 + "github.com/netdata/netdata/go/go.d.plugin/modules/freeradius/api"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 "github.com/stretchr/testify/assert"
13 )
14
src/go/collectors/go.d.plugin/modules/freeradius/integrations/freeradius.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/fre
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/freeradius/metadata.yaml"
4 sidebar_label: "FreeRADIUS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Authentication and Authorization"
6 +learn_rel_path: "Collecting Metrics/Authentication and Authorization"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -103,7 +103,7 @@ The configuration file name for this integration is `go.d/freeradius.conf`.
103
104
105 You can edit the configuration file using the `edit-config` script from the
106 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
106 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
107
108 ```bash
109 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/geth/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package geth
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 Charts = module.Charts
src/go/collectors/go.d.plugin/modules/geth/collect.go
+2 -2
@@ -3,8 +3,8 @@
3 package geth
4
5 import (
6 - "github.com/netdata/go.d.plugin/pkg/prometheus"
7 - "github.com/netdata/go.d.plugin/pkg/stm"
6 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
7 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
8 )
9
10 func (g *Geth) collect() (map[string]int64, error) {
src/go/collectors/go.d.plugin/modules/geth/geth.go
+3 -3
@@ -7,10 +7,10 @@ import (
7 "errors"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/pkg/prometheus"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 )
15
16 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/geth/integrations/go-ethereum.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/get
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/geth/metadata.yaml"
4 sidebar_label: "Go-ethereum"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Blockchain Servers"
6 +learn_rel_path: "Collecting Metrics/Blockchain Servers"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -103,7 +103,7 @@ The configuration file name for this integration is `go.d/geth.conf`.
103
104
105 You can edit the configuration file using the `edit-config` script from the
106 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
106 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
107
108 ```bash
109 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/haproxy/charts.go
+1 -1
@@ -5,7 +5,7 @@ package haproxy
5 import (
6 "fmt"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 )
10
11 var charts = module.Charts{
src/go/collectors/go.d.plugin/modules/haproxy/collect.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "errors"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/prometheus"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
11 )
12
13 const (
src/go/collectors/go.d.plugin/modules/haproxy/haproxy.go
+3 -3
@@ -6,9 +6,9 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/prometheus"
11 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/haproxy/haproxy_test.go
+2 -2
@@ -8,8 +8,8 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
12 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13
14 "github.com/stretchr/testify/assert"
15 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/haproxy/init.go
+3 -3
@@ -5,9 +5,9 @@ package haproxy
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
9 - "github.com/netdata/go.d.plugin/pkg/prometheus/selector"
10 - "github.com/netdata/go.d.plugin/pkg/web"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 func (h Haproxy) validateConfig() error {
src/go/collectors/go.d.plugin/modules/haproxy/integrations/haproxy.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/hap
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/haproxy/metadata.yaml"
4 sidebar_label: "HAProxy"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -108,7 +108,7 @@ The configuration file name for this integration is `go.d/haproxy.conf`.
108
109
110 You can edit the configuration file using the `edit-config` script from the
111 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
111 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
112
113 ```bash
114 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/hdfs/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package hdfs
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 Charts = module.Charts
src/go/collectors/go.d.plugin/modules/hdfs/client.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "io"
9 "net/http"
10
11 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 func newClient(httpClient *http.Client, request web.Request) *client {
src/go/collectors/go.d.plugin/modules/hdfs/collect.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "fmt"
9 "strings"
10
11 - "github.com/netdata/go.d.plugin/pkg/stm"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
12 )
13
14 type (
src/go/collectors/go.d.plugin/modules/hdfs/hdfs.go
+2 -2
@@ -8,9 +8,9 @@ import (
8 "strings"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 )
15
16 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/hdfs/hdfs_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 "github.com/stretchr/testify/assert"
13 "github.com/stretchr/testify/require"
14 )
src/go/collectors/go.d.plugin/modules/hdfs/integrations/hadoop_distributed_file_system_hdfs.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/hdf
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/hdfs/metadata.yaml"
4 sidebar_label: "Hadoop Distributed File System (HDFS)"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -121,7 +121,7 @@ The configuration file name for this integration is `go.d/hdfs.conf`.
121
122
123 You can edit the configuration file using the `edit-config` script from the
124 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
124 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
125
126 ```bash
127 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/httpcheck/charts.go
+1 -1
@@ -3,7 +3,7 @@
3 package httpcheck
4
5 import (
6 - "github.com/netdata/go.d.plugin/agent/module"
6 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
7 )
8
9 const (
src/go/collectors/go.d.plugin/modules/httpcheck/collect.go
+2 -2
@@ -12,8 +12,8 @@ import (
12 "strings"
13 "time"
14
15 - "github.com/netdata/go.d.plugin/pkg/stm"
16 - "github.com/netdata/go.d.plugin/pkg/web"
15 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
16 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
17 )
18
19 type reqErrCode int
src/go/collectors/go.d.plugin/modules/httpcheck/httpcheck.go
+2 -2
@@ -8,9 +8,9 @@ import (
8 "regexp"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 )
15
16 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/httpcheck/httpcheck_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "testing"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 "github.com/stretchr/testify/assert"
14 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/httpcheck/init.go
+3 -3
@@ -8,9 +8,9 @@ import (
8 "net/http"
9 "regexp"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
12 - "github.com/netdata/go.d.plugin/pkg/matcher"
13 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 type headerMatch struct {
src/go/collectors/go.d.plugin/modules/httpcheck/integrations/http_endpoints.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/htt
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/httpcheck/metadata.yaml"
4 sidebar_label: "HTTP Endpoints"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Synthetic Checks"
6 +learn_rel_path: "Collecting Metrics/Synthetic Checks"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -94,7 +94,7 @@ The configuration file name for this integration is `go.d/httpcheck.conf`.
94
95
96 You can edit the configuration file using the `edit-config` script from the
97 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
97 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
98
99 ```bash
100 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/init.go
+80 -80
@@ -3,84 +3,84 @@
3 package modules
4
5 import (
6 - _ "github.com/netdata/go.d.plugin/modules/activemq"
7 - _ "github.com/netdata/go.d.plugin/modules/apache"
8 - _ "github.com/netdata/go.d.plugin/modules/bind"
9 - _ "github.com/netdata/go.d.plugin/modules/cassandra"
10 - _ "github.com/netdata/go.d.plugin/modules/chrony"
11 - _ "github.com/netdata/go.d.plugin/modules/cockroachdb"
12 - _ "github.com/netdata/go.d.plugin/modules/consul"
13 - _ "github.com/netdata/go.d.plugin/modules/coredns"
14 - _ "github.com/netdata/go.d.plugin/modules/couchbase"
15 - _ "github.com/netdata/go.d.plugin/modules/couchdb"
16 - _ "github.com/netdata/go.d.plugin/modules/dnsdist"
17 - _ "github.com/netdata/go.d.plugin/modules/dnsmasq"
18 - _ "github.com/netdata/go.d.plugin/modules/dnsmasq_dhcp"
19 - _ "github.com/netdata/go.d.plugin/modules/dnsquery"
20 - _ "github.com/netdata/go.d.plugin/modules/docker"
21 - _ "github.com/netdata/go.d.plugin/modules/docker_engine"
22 - _ "github.com/netdata/go.d.plugin/modules/dockerhub"
23 - _ "github.com/netdata/go.d.plugin/modules/elasticsearch"
24 - _ "github.com/netdata/go.d.plugin/modules/energid"
25 - _ "github.com/netdata/go.d.plugin/modules/envoy"
26 - _ "github.com/netdata/go.d.plugin/modules/example"
27 - _ "github.com/netdata/go.d.plugin/modules/filecheck"
28 - _ "github.com/netdata/go.d.plugin/modules/fluentd"
29 - _ "github.com/netdata/go.d.plugin/modules/freeradius"
30 - _ "github.com/netdata/go.d.plugin/modules/geth"
31 - _ "github.com/netdata/go.d.plugin/modules/haproxy"
32 - _ "github.com/netdata/go.d.plugin/modules/hdfs"
33 - _ "github.com/netdata/go.d.plugin/modules/httpcheck"
34 - _ "github.com/netdata/go.d.plugin/modules/isc_dhcpd"
35 - _ "github.com/netdata/go.d.plugin/modules/k8s_kubelet"
36 - _ "github.com/netdata/go.d.plugin/modules/k8s_kubeproxy"
37 - _ "github.com/netdata/go.d.plugin/modules/k8s_state"
38 - _ "github.com/netdata/go.d.plugin/modules/lighttpd"
39 - _ "github.com/netdata/go.d.plugin/modules/logind"
40 - _ "github.com/netdata/go.d.plugin/modules/logstash"
41 - _ "github.com/netdata/go.d.plugin/modules/mongodb"
42 - _ "github.com/netdata/go.d.plugin/modules/mysql"
43 - _ "github.com/netdata/go.d.plugin/modules/nginx"
44 - _ "github.com/netdata/go.d.plugin/modules/nginxplus"
45 - _ "github.com/netdata/go.d.plugin/modules/nginxvts"
46 - _ "github.com/netdata/go.d.plugin/modules/ntpd"
47 - _ "github.com/netdata/go.d.plugin/modules/nvidia_smi"
48 - _ "github.com/netdata/go.d.plugin/modules/nvme"
49 - _ "github.com/netdata/go.d.plugin/modules/openvpn"
50 - _ "github.com/netdata/go.d.plugin/modules/openvpn_status_log"
51 - _ "github.com/netdata/go.d.plugin/modules/pgbouncer"
52 - _ "github.com/netdata/go.d.plugin/modules/phpdaemon"
53 - _ "github.com/netdata/go.d.plugin/modules/phpfpm"
54 - _ "github.com/netdata/go.d.plugin/modules/pihole"
55 - _ "github.com/netdata/go.d.plugin/modules/pika"
56 - _ "github.com/netdata/go.d.plugin/modules/ping"
57 - _ "github.com/netdata/go.d.plugin/modules/portcheck"
58 - _ "github.com/netdata/go.d.plugin/modules/postgres"
59 - _ "github.com/netdata/go.d.plugin/modules/powerdns"
60 - _ "github.com/netdata/go.d.plugin/modules/powerdns_recursor"
61 - _ "github.com/netdata/go.d.plugin/modules/prometheus"
62 - _ "github.com/netdata/go.d.plugin/modules/proxysql"
63 - _ "github.com/netdata/go.d.plugin/modules/pulsar"
64 - _ "github.com/netdata/go.d.plugin/modules/rabbitmq"
65 - _ "github.com/netdata/go.d.plugin/modules/redis"
66 - _ "github.com/netdata/go.d.plugin/modules/scaleio"
67 - _ "github.com/netdata/go.d.plugin/modules/snmp"
68 - _ "github.com/netdata/go.d.plugin/modules/solr"
69 - _ "github.com/netdata/go.d.plugin/modules/springboot2"
70 - _ "github.com/netdata/go.d.plugin/modules/squidlog"
71 - _ "github.com/netdata/go.d.plugin/modules/supervisord"
72 - _ "github.com/netdata/go.d.plugin/modules/systemdunits"
73 - _ "github.com/netdata/go.d.plugin/modules/tengine"
74 - _ "github.com/netdata/go.d.plugin/modules/traefik"
75 - _ "github.com/netdata/go.d.plugin/modules/unbound"
76 - _ "github.com/netdata/go.d.plugin/modules/upsd"
77 - _ "github.com/netdata/go.d.plugin/modules/vcsa"
78 - _ "github.com/netdata/go.d.plugin/modules/vernemq"
79 - _ "github.com/netdata/go.d.plugin/modules/vsphere"
80 - _ "github.com/netdata/go.d.plugin/modules/weblog"
81 - _ "github.com/netdata/go.d.plugin/modules/whoisquery"
82 - _ "github.com/netdata/go.d.plugin/modules/windows"
83 - _ "github.com/netdata/go.d.plugin/modules/wireguard"
84 - _ "github.com/netdata/go.d.plugin/modules/x509check"
85 - _ "github.com/netdata/go.d.plugin/modules/zookeeper"
6 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/activemq"
7 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/apache"
8 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/bind"
9 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/cassandra"
10 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/chrony"
11 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/cockroachdb"
12 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/consul"
13 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/coredns"
14 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/couchbase"
15 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/couchdb"
16 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/dnsdist"
17 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/dnsmasq"
18 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/dnsmasq_dhcp"
19 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/dnsquery"
20 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/docker"
21 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/docker_engine"
22 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/dockerhub"
23 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/elasticsearch"
24 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/energid"
25 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/envoy"
26 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/example"
27 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/filecheck"
28 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/fluentd"
29 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/freeradius"
30 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/geth"
31 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/haproxy"
32 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/hdfs"
33 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/httpcheck"
34 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/isc_dhcpd"
35 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/k8s_kubelet"
36 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/k8s_kubeproxy"
37 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/k8s_state"
38 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/lighttpd"
39 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/logind"
40 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/logstash"
41 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/mongodb"
42 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/mysql"
43 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/nginx"
44 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/nginxplus"
45 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/nginxvts"
46 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/ntpd"
47 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/nvidia_smi"
48 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/nvme"
49 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/openvpn"
50 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/openvpn_status_log"
51 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/pgbouncer"
52 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/phpdaemon"
53 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/phpfpm"
54 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/pihole"
55 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/pika"
56 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/ping"
57 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/portcheck"
58 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/postgres"
59 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/powerdns"
60 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/powerdns_recursor"
61 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/prometheus"
62 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/proxysql"
63 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/pulsar"
64 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/rabbitmq"
65 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/redis"
66 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio"
67 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/snmp"
68 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/solr"
69 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/springboot2"
70 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/squidlog"
71 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/supervisord"
72 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/systemdunits"
73 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/tengine"
74 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/traefik"
75 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/unbound"
76 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/upsd"
77 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/vcsa"
78 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/vernemq"
79 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere"
80 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/weblog"
81 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/whoisquery"
82 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/windows"
83 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/wireguard"
84 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/x509check"
85 + _ "github.com/netdata/netdata/go/go.d.plugin/modules/zookeeper"
86 )
src/go/collectors/go.d.plugin/modules/isc_dhcpd/charts.go
+1 -1
@@ -3,7 +3,7 @@
3 package isc_dhcpd
4
5 import (
6 - "github.com/netdata/go.d.plugin/agent/module"
6 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
7 )
8
9 var activeLeasesTotalChart = module.Chart{
src/go/collectors/go.d.plugin/modules/isc_dhcpd/init.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "errors"
7 "fmt"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/iprange"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/iprange"
11 )
12
13 type ipPool struct {
src/go/collectors/go.d.plugin/modules/isc_dhcpd/integrations/isc_dhcp.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/isc
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/isc_dhcpd/metadata.yaml"
4 sidebar_label: "ISC DHCP"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/DNS and DHCP Servers"
6 +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -89,7 +89,7 @@ The configuration file name for this integration is `go.d/isc_dhcpd.conf`.
89
90
91 You can edit the configuration file using the `edit-config` script from the
92 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
92 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
93
94 ```bash
95 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/isc_dhcpd/isc_dhcpd.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/isc_dhcpd/isc_dhcpd_test.go
+1 -1
@@ -5,7 +5,7 @@ package isc_dhcpd
5 import (
6 "testing"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9
10 "github.com/stretchr/testify/assert"
11 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/k8s_kubelet/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package k8s_kubelet
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 // Charts is an alias for module.Charts
src/go/collectors/go.d.plugin/modules/k8s_kubelet/collect.go
+4 -4
@@ -5,11 +5,11 @@ package k8s_kubelet
5 import (
6 "math"
7
8 - mtx "github.com/netdata/go.d.plugin/pkg/metrics"
9 - "github.com/netdata/go.d.plugin/pkg/prometheus"
10 - "github.com/netdata/go.d.plugin/pkg/stm"
8 + mtx "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 )
14
15 func (k *Kubelet) collect() (map[string]int64, error) {
src/go/collectors/go.d.plugin/modules/k8s_kubelet/integrations/kubelet.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/k8s
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/k8s_kubelet/metadata.yaml"
4 sidebar_label: "Kubelet"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Kubernetes"
6 +learn_rel_path: "Collecting Metrics/Kubernetes"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -125,7 +125,7 @@ The configuration file name for this integration is `go.d/k8s_kubelet.conf`.
125
126
127 You can edit the configuration file using the `edit-config` script from the
128 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
128 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
129
130 ```bash
131 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/k8s_kubelet/kubelet.go
+3 -3
@@ -7,10 +7,10 @@ import (
7 "os"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/pkg/prometheus"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 )
15
16 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/k8s_kubelet/metrics.go
+1 -1
@@ -3,7 +3,7 @@
3 package k8s_kubelet
4
5 import (
6 - mtx "github.com/netdata/go.d.plugin/pkg/metrics"
6 + mtx "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics"
7 )
8
9 func newMetrics() *metrics {
src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package k8s_kubeproxy
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 // Charts is an alias for module.Charts
src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/collect.go
+4 -4
@@ -5,11 +5,11 @@ package k8s_kubeproxy
5 import (
6 "math"
7
8 - mtx "github.com/netdata/go.d.plugin/pkg/metrics"
9 - "github.com/netdata/go.d.plugin/pkg/prometheus"
10 - "github.com/netdata/go.d.plugin/pkg/stm"
8 + mtx "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 )
14
15 func (kp *KubeProxy) collect() (map[string]int64, error) {
src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/integrations/kubeproxy.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/k8s
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/k8s_kubeproxy/metadata.yaml"
4 sidebar_label: "Kubeproxy"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Kubernetes"
6 +learn_rel_path: "Collecting Metrics/Kubernetes"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -92,7 +92,7 @@ The configuration file name for this integration is `go.d/k8s_kubeproxy.conf`.
92
93
94 You can edit the configuration file using the `edit-config` script from the
95 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
95 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
96
97 ```bash
98 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/kubeproxy.go
+3 -3
@@ -6,10 +6,10 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/pkg/prometheus"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 )
14
15 const (
src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/metrics.go
+1 -1
@@ -3,7 +3,7 @@
3 package k8s_kubeproxy
4
5 import (
6 - mtx "github.com/netdata/go.d.plugin/pkg/metrics"
6 + mtx "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics"
7 )
8
9 func newMetrics() *metrics {
src/go/collectors/go.d.plugin/modules/k8s_state/charts.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "regexp"
8 "strings"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 )
12
13 // NETDATA_CHART_PRIO_CGROUPS_CONTAINERS 40000
src/go/collectors/go.d.plugin/modules/k8s_state/collect.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "strings"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12
13 corev1 "k8s.io/api/core/v1"
14 )
src/go/collectors/go.d.plugin/modules/k8s_state/discover_kubernetes.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "sync"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/logger"
11 + "github.com/netdata/netdata/go/go.d.plugin/logger"
12
13 corev1 "k8s.io/api/core/v1"
14 metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
src/go/collectors/go.d.plugin/modules/k8s_state/discover_node.go
+1 -1
@@ -5,7 +5,7 @@ package k8s_state
5 import (
6 "context"
7
8 - "github.com/netdata/go.d.plugin/logger"
8 + "github.com/netdata/netdata/go/go.d.plugin/logger"
9
10 "k8s.io/client-go/tools/cache"
11 "k8s.io/client-go/util/workqueue"
src/go/collectors/go.d.plugin/modules/k8s_state/discover_pod.go
+1 -1
@@ -5,7 +5,7 @@ package k8s_state
5 import (
6 "context"
7
8 - "github.com/netdata/go.d.plugin/logger"
8 + "github.com/netdata/netdata/go/go.d.plugin/logger"
9
10 "k8s.io/client-go/tools/cache"
11 "k8s.io/client-go/util/workqueue"
src/go/collectors/go.d.plugin/modules/k8s_state/integrations/kubernetes_cluster_state.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/k8s
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/k8s_state/metadata.yaml"
4 sidebar_label: "Kubernetes Cluster State"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Kubernetes"
6 +learn_rel_path: "Collecting Metrics/Kubernetes"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -172,7 +172,7 @@ The configuration file name for this integration is `go.d/k8s_state.conf`.
172
173
174 You can edit the configuration file using the `edit-config` script from the
175 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
175 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
176
177 ```bash
178 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/k8s_state/kube_state.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "sync"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12
13 "k8s.io/client-go/kubernetes"
14 )
src/go/collectors/go.d.plugin/modules/k8s_state/kube_state_test.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "testing"
11 "time"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14
15 "github.com/stretchr/testify/assert"
16 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/lighttpd/apiclient.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "strconv"
11 "strings"
12
13 - "github.com/netdata/go.d.plugin/pkg/web"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 const (
src/go/collectors/go.d.plugin/modules/lighttpd/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package lighttpd
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 // Charts is an alias for module.Charts
src/go/collectors/go.d.plugin/modules/lighttpd/collect.go
+1 -1
@@ -5,7 +5,7 @@ package lighttpd
5 import (
6 "fmt"
7
8 - "github.com/netdata/go.d.plugin/pkg/stm"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
9 )
10
11 func (l *Lighttpd) collect() (map[string]int64, error) {
src/go/collectors/go.d.plugin/modules/lighttpd/integrations/lighttpd.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/lig
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/lighttpd/metadata.yaml"
4 sidebar_label: "Lighttpd"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -102,7 +102,7 @@ The configuration file name for this integration is `go.d/lighttpd.conf`.
102
103
104 You can edit the configuration file using the `edit-config` script from the
105 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
105 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
106
107 ```bash
108 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/lighttpd/lighttpd.go
+2 -2
@@ -7,9 +7,9 @@ import (
7 "strings"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 )
14
15 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/lighttpd/lighttpd_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 "github.com/stretchr/testify/assert"
13 "github.com/stretchr/testify/require"
14 )
src/go/collectors/go.d.plugin/modules/logind/charts.go
+1 -1
@@ -5,7 +5,7 @@
5
6 package logind
7
8 -import "github.com/netdata/go.d.plugin/agent/module"
8 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9
10 const (
11 prioSessions = module.Priority + iota
src/go/collectors/go.d.plugin/modules/logind/integrations/systemd-logind_users.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/log
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/logind/metadata.yaml"
4 sidebar_label: "systemd-logind users"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Systemd"
6 +learn_rel_path: "Collecting Metrics/Systemd"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -90,7 +90,7 @@ The configuration file name for this integration is `go.d/logind.conf`.
90
91
92 You can edit the configuration file using the `edit-config` script from the
93 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
93 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
94
95 ```bash
96 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/logind/logind.go
+2 -2
@@ -9,8 +9,8 @@ import (
9 _ "embed"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
13 - "github.com/netdata/go.d.plugin/pkg/web"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/logstash/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/logstash/collect.go
+2 -2
@@ -8,8 +8,8 @@ import (
8 "io"
9 "net/http"
10
11 - "github.com/netdata/go.d.plugin/pkg/stm"
12 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13 )
14
15 const urlPathNodeStatsAPI = "/_node/stats"
src/go/collectors/go.d.plugin/modules/logstash/integrations/logstash.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/log
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/logstash/metadata.yaml"
4 sidebar_label: "Logstash"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Logs Servers"
6 +learn_rel_path: "Collecting Metrics/Logs Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -115,7 +115,7 @@ The configuration file name for this integration is `go.d/logstatsh.conf`.
115
116
117 You can edit the configuration file using the `edit-config` script from the
118 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
118 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
119
120 ```bash
121 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/logstash/logstash.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "net/http"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/logstash/logstash_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 "github.com/stretchr/testify/assert"
14 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/mongodb/charts.go
+1 -1
@@ -3,7 +3,7 @@
3 package mongo
4
5 import (
6 - "github.com/netdata/go.d.plugin/agent/module"
6 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
7 )
8
9 const (
src/go/collectors/go.d.plugin/modules/mongodb/collect_dbstats.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 func (m *Mongo) collectDbStats(mx map[string]int64) error {
src/go/collectors/go.d.plugin/modules/mongodb/collect_replsetgetstatus.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 // https://www.mongodb.com/docs/manual/reference/replica-states/#replica-set-member-states
src/go/collectors/go.d.plugin/modules/mongodb/collect_serverstatus.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "fmt"
7 "reflect"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/stm"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
11 )
12
13 // collectServerStatus creates the map[string]int64 for the available dims.
src/go/collectors/go.d.plugin/modules/mongodb/collect_sharding.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 func (m *Mongo) collectSharding(mx map[string]int64) error {
src/go/collectors/go.d.plugin/modules/mongodb/integrations/mongodb.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/mon
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/mongodb/metadata.yaml"
4 sidebar_label: "MongoDB"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -249,7 +249,7 @@ The configuration file name for this integration is `go.d/mongodb.conf`.
249
250
251 You can edit the configuration file using the `edit-config` script from the
252 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
252 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
253
254 ```bash
255 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/mongodb/mongodb.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "sync"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/matcher"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/mongodb/mongodb_test.go
+1 -1
@@ -12,7 +12,7 @@ import (
12 "github.com/stretchr/testify/assert"
13 "github.com/stretchr/testify/require"
14
15 - "github.com/netdata/go.d.plugin/pkg/matcher"
15 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
16 )
17
18 var (
src/go/collectors/go.d.plugin/modules/mysql/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/mysql/integrations/mariadb.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/mys
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/mysql/metadata.yaml"
4 sidebar_label: "MariaDB"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -238,7 +238,7 @@ The configuration file name for this integration is `go.d/mysql.conf`.
238
239
240 You can edit the configuration file using the `edit-config` script from the
241 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
241 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
242
243 ```bash
244 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/mysql/integrations/mysql.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/mys
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/mysql/metadata.yaml"
4 sidebar_label: "MySQL"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -238,7 +238,7 @@ The configuration file name for this integration is `go.d/mysql.conf`.
238
239
240 You can edit the configuration file using the `edit-config` script from the
241 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
241 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
242
243 ```bash
244 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/mysql/integrations/percona_mysql.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/mys
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/mysql/metadata.yaml"
4 sidebar_label: "Percona MySQL"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -238,7 +238,7 @@ The configuration file name for this integration is `go.d/mysql.conf`.
238
239
240 You can edit the configuration file using the `edit-config` script from the
241 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
241 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
242
243 ```bash
244 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/mysql/mysql.go
+2 -2
@@ -13,8 +13,8 @@ import (
13 "github.com/go-sql-driver/mysql"
14 _ "github.com/go-sql-driver/mysql"
15
16 - "github.com/netdata/go.d.plugin/agent/module"
17 - "github.com/netdata/go.d.plugin/pkg/web"
16 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
17 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
18 )
19
20 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/mysql/mysql_test.go
+1 -1
@@ -12,7 +12,7 @@ import (
12 "strings"
13 "testing"
14
15 - "github.com/netdata/go.d.plugin/agent/module"
15 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
16
17 "github.com/DATA-DOG/go-sqlmock"
18 "github.com/blang/semver/v4"
src/go/collectors/go.d.plugin/modules/nginx/apiclient.go
+1 -1
@@ -11,7 +11,7 @@ import (
11 "strconv"
12 "strings"
13
14 - "github.com/netdata/go.d.plugin/pkg/web"
14 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
15 )
16
17 const (
src/go/collectors/go.d.plugin/modules/nginx/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package nginx
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 // Charts is an alias for module.Charts
src/go/collectors/go.d.plugin/modules/nginx/collect.go
+1 -1
@@ -3,7 +3,7 @@
3 package nginx
4
5 import (
6 - "github.com/netdata/go.d.plugin/pkg/stm"
6 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
7 )
8
9 func (n *Nginx) collect() (map[string]int64, error) {
src/go/collectors/go.d.plugin/modules/nginx/integrations/nginx.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ngi
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/nginx/metadata.yaml"
4 sidebar_label: "NGINX"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -103,7 +103,7 @@ The configuration file name for this integration is `go.d/nginx.conf`.
103
104
105 You can edit the configuration file using the `edit-config` script from the
106 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
106 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
107
108 ```bash
109 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/nginx/nginx.go
+2 -2
@@ -6,9 +6,9 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/nginx/nginx_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 "github.com/stretchr/testify/assert"
13 "github.com/stretchr/testify/require"
14 )
src/go/collectors/go.d.plugin/modules/nginxplus/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/nginxplus/integrations/nginx_plus.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ngi
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/nginxplus/metadata.yaml"
4 sidebar_label: "NGINX Plus"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -280,7 +280,7 @@ The configuration file name for this integration is `go.d/nginxplus.conf`.
280
281
282 You can edit the configuration file using the `edit-config` script from the
283 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
283 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
284
285 ```bash
286 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/nginxplus/nginx_http_api_query.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "net/http"
11 "sync"
12
13 - "github.com/netdata/go.d.plugin/pkg/web"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 const (
src/go/collectors/go.d.plugin/modules/nginxplus/nginxplus.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "net/http"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/nginxplus/nginxplus_test.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "os"
10 "testing"
11
12 - "github.com/netdata/go.d.plugin/pkg/web"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13
14 "github.com/stretchr/testify/assert"
15 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/nginxvts/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package nginxvts
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 var mainCharts = module.Charts{
8 {
src/go/collectors/go.d.plugin/modules/nginxvts/collect.go
+2 -2
@@ -8,8 +8,8 @@ import (
8 "io"
9 "net/http"
10
11 - "github.com/netdata/go.d.plugin/pkg/stm"
12 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13 )
14
15 func (vts *NginxVTS) collect() (map[string]int64, error) {
src/go/collectors/go.d.plugin/modules/nginxvts/init.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "errors"
7 "net/http"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 func (vts NginxVTS) validateConfig() error {
src/go/collectors/go.d.plugin/modules/nginxvts/integrations/nginx_vts.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ngi
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/nginxvts/metadata.yaml"
4 sidebar_label: "NGINX VTS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -103,7 +103,7 @@ The configuration file name for this integration is `go.d/nginxvts.conf`.
103
104
105 You can edit the configuration file using the `edit-config` script from the
106 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
106 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
107
108 ```bash
109 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/nginxvts/nginxvts.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "net/http"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/nginxvts/nginxvts_test.go
+3 -3
@@ -8,9 +8,9 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
12 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
13 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14
15 "github.com/stretchr/testify/assert"
16 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/ntpd/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/ntpd/integrations/ntpd.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ntp
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/ntpd/metadata.yaml"
4 sidebar_label: "NTPd"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/System Clock and NTP"
6 +learn_rel_path: "Collecting Metrics/System Clock and NTP"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -123,7 +123,7 @@ The configuration file name for this integration is `go.d/ntpd.conf`.
123
124
125 You can edit the configuration file using the `edit-config` script from the
126 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
126 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
127
128 ```bash
129 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/ntpd/ntpd.go
+3 -3
@@ -6,9 +6,9 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/iprange"
11 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/iprange"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/nvidia_smi/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/nvidia_smi/exec.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "strings"
11 "time"
12
13 - "github.com/netdata/go.d.plugin/logger"
13 + "github.com/netdata/netdata/go/go.d.plugin/logger"
14 )
15
16 func newNvidiaSMIExec(path string, cfg Config, log *logger.Logger) (*nvidiaSMIExec, error) {
src/go/collectors/go.d.plugin/modules/nvidia_smi/integrations/nvidia_gpu.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/nvi
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/nvidia_smi/metadata.yaml"
4 sidebar_label: "Nvidia GPU"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Hardware Devices and Sensors"
6 +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -133,7 +133,7 @@ The configuration file name for this integration is `go.d/nvidia_smi.conf`.
133
134
135 You can edit the configuration file using the `edit-config` script from the
136 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
136 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
137
138 ```bash
139 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/nvidia_smi/nvidia_smi.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/nvme/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/nvme/integrations/nvme_devices.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/nvm
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/nvme/metadata.yaml"
4 sidebar_label: "NVMe devices"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -124,7 +124,7 @@ The configuration file name for this integration is `go.d/nvme.conf`.
124
125
126 You can edit the configuration file using the `edit-config` script from the
127 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
127 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
128
129 ```bash
130 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/nvme/nvme.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/openvpn/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package openvpn
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 // Charts is an alias for module.Charts
src/go/collectors/go.d.plugin/modules/openvpn/client/client.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "strconv"
9 "strings"
10
11 - "github.com/netdata/go.d.plugin/pkg/socket"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket"
12 )
13
14 var (
src/go/collectors/go.d.plugin/modules/openvpn/client/client_test.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "strings"
11 "testing"
12
13 - "github.com/netdata/go.d.plugin/pkg/socket"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket"
14 "github.com/stretchr/testify/assert"
15 )
16
src/go/collectors/go.d.plugin/modules/openvpn/integrations/openvpn.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ope
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/openvpn/metadata.yaml"
4 sidebar_label: "OpenVPN"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/VPNs"
6 +learn_rel_path: "Collecting Metrics/VPNs"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -116,7 +116,7 @@ The configuration file name for this integration is `go.d/openvpn.conf`.
116
117
118 You can edit the configuration file using the `edit-config` script from the
119 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
119 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
120
121 ```bash
122 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/openvpn/openvpn.go
+5 -5
@@ -6,12 +6,12 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/modules/openvpn/client"
10 - "github.com/netdata/go.d.plugin/pkg/matcher"
11 - "github.com/netdata/go.d.plugin/pkg/socket"
12 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/modules/openvpn/client"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13
14 - "github.com/netdata/go.d.plugin/agent/module"
14 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
15 )
16
17 const (
src/go/collectors/go.d.plugin/modules/openvpn/openvpn_test.go
+4 -4
@@ -5,10 +5,10 @@ package openvpn
5 import (
6 "testing"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
9 - "github.com/netdata/go.d.plugin/modules/openvpn/client"
10 - "github.com/netdata/go.d.plugin/pkg/matcher"
11 - "github.com/netdata/go.d.plugin/pkg/socket"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/modules/openvpn/client"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket"
12 "github.com/stretchr/testify/assert"
13 "github.com/stretchr/testify/require"
14 )
src/go/collectors/go.d.plugin/modules/openvpn_status_log/charts.go
+1 -1
@@ -5,7 +5,7 @@ package openvpn_status_log
5 import (
6 "fmt"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 )
10
11 var charts = module.Charts{
src/go/collectors/go.d.plugin/modules/openvpn_status_log/init.go
+1 -1
@@ -4,7 +4,7 @@ package openvpn_status_log
4
5 import (
6 "errors"
7 - "github.com/netdata/go.d.plugin/pkg/matcher"
7 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
8 )
9
10 func (o OpenVPNStatusLog) validateConfig() error {
src/go/collectors/go.d.plugin/modules/openvpn_status_log/integrations/openvpn_status_log.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ope
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/openvpn_status_log/metadata.yaml"
4 sidebar_label: "OpenVPN status log"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/VPNs"
6 +learn_rel_path: "Collecting Metrics/VPNs"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -107,7 +107,7 @@ The configuration file name for this integration is `go.d/openvpn_status_log.con
107
108
109 You can edit the configuration file using the `edit-config` script from the
110 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
110 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
111
112 ```bash
113 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/openvpn_status_log/openvpn.go
+2 -2
@@ -5,8 +5,8 @@ package openvpn_status_log
5 import (
6 _ "embed"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
9 - "github.com/netdata/go.d.plugin/pkg/matcher"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
10 )
11
12 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/openvpn_status_log/openvpn_test.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "github.com/stretchr/testify/assert"
10 "github.com/stretchr/testify/require"
11
12 - "github.com/netdata/go.d.plugin/pkg/matcher"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
13 )
14
15 const (
src/go/collectors/go.d.plugin/modules/pgbouncer/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/pgbouncer/integrations/pgbouncer.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pgb
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/pgbouncer/metadata.yaml"
4 sidebar_label: "PgBouncer"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -151,7 +151,7 @@ The configuration file name for this integration is `go.d/pgbouncer.conf`.
151
152
153 You can edit the configuration file using the `edit-config` script from the
154 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
154 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
155
156 ```bash
157 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/pgbouncer/pgbouncer.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 _ "embed"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 "github.com/blang/semver/v4"
14 _ "github.com/jackc/pgx/v4/stdlib"
src/go/collectors/go.d.plugin/modules/phpdaemon/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package phpdaemon
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 // Charts is an alias for module.Charts
src/go/collectors/go.d.plugin/modules/phpdaemon/client.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "io"
9 "net/http"
10
11 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 type decodeFunc func(dst interface{}, reader io.Reader) error
src/go/collectors/go.d.plugin/modules/phpdaemon/collect.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package phpdaemon
4
5 -import "github.com/netdata/go.d.plugin/pkg/stm"
5 +import "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
6
7 func (p *PHPDaemon) collect() (map[string]int64, error) {
8 s, err := p.client.queryFullStatus()
src/go/collectors/go.d.plugin/modules/phpdaemon/integrations/phpdaemon.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/php
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/phpdaemon/metadata.yaml"
4 sidebar_label: "phpDaemon"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -165,7 +165,7 @@ The configuration file name for this integration is `go.d/phpdaemon.conf`.
165
166
167 You can edit the configuration file using the `edit-config` script from the
168 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
168 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
169
170 ```bash
171 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/phpdaemon/phpdaemon.go
+2 -2
@@ -6,9 +6,9 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/phpdaemon/phpdaemon_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 "github.com/stretchr/testify/assert"
13 "github.com/stretchr/testify/require"
14 )
src/go/collectors/go.d.plugin/modules/phpfpm/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package phpfpm
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 // Charts is an alias for module.Charts
src/go/collectors/go.d.plugin/modules/phpfpm/client.go
+1 -1
@@ -11,7 +11,7 @@ import (
11 "strconv"
12 "time"
13
14 - "github.com/netdata/go.d.plugin/pkg/web"
14 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
15
16 fcgiclient "github.com/tomasen/fcgi_client"
17 )
src/go/collectors/go.d.plugin/modules/phpfpm/collect.go
+1 -1
@@ -5,7 +5,7 @@ package phpfpm
5 import (
6 "math"
7
8 - "github.com/netdata/go.d.plugin/pkg/stm"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
9 )
10
11 func (p *Phpfpm) collect() (map[string]int64, error) {
src/go/collectors/go.d.plugin/modules/phpfpm/init.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "fmt"
8 "os"
9
10 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 func (p Phpfpm) initClient() (client, error) {
src/go/collectors/go.d.plugin/modules/phpfpm/integrations/php-fpm.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/php
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/phpfpm/metadata.yaml"
4 sidebar_label: "PHP-FPM"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/phpfpm.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/phpfpm/phpfpm.go
+2 -2
@@ -6,9 +6,9 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/phpfpm/phpfpm_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 "github.com/stretchr/testify/assert"
13 "github.com/stretchr/testify/require"
14 )
src/go/collectors/go.d.plugin/modules/pihole/charts.go
+1 -1
@@ -3,7 +3,7 @@
3 package pihole
4
5 import (
6 - "github.com/netdata/go.d.plugin/agent/module"
6 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
7 )
8
9 const (
src/go/collectors/go.d.plugin/modules/pihole/collect.go
+1 -1
@@ -12,7 +12,7 @@ import (
12 "sync"
13 "time"
14
15 - "github.com/netdata/go.d.plugin/pkg/web"
15 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
16 )
17
18 const wantAPIVersion = 3
src/go/collectors/go.d.plugin/modules/pihole/init.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "os"
11 "strings"
12
13 - "github.com/netdata/go.d.plugin/pkg/web"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 func (p *Pihole) validateConfig() error {
src/go/collectors/go.d.plugin/modules/pihole/integrations/pi-hole.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pih
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/pihole/metadata.yaml"
4 sidebar_label: "Pi-hole"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/DNS and DHCP Servers"
6 +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -104,7 +104,7 @@ The configuration file name for this integration is `go.d/pihole.conf`.
104
105
106 You can edit the configuration file using the `edit-config` script from the
107 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
107 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
108
109 ```bash
110 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/pihole/pihole.go
+2 -2
@@ -8,9 +8,9 @@ import (
8 "sync"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 )
15
16 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/pihole/pihole_test.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "os"
10 "testing"
11
12 - "github.com/netdata/go.d.plugin/pkg/web"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13
14 "github.com/stretchr/testify/assert"
15 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/pika/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package pika
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 var pikaCharts = module.Charts{
8 chartConnections.Copy(),
src/go/collectors/go.d.plugin/modules/pika/collect_info.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "strconv"
9 "strings"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 )
13
14 // https://github.com/Qihoo360/pika/blob/master/src/pika_admin.cc
src/go/collectors/go.d.plugin/modules/pika/init.go
+2 -2
@@ -5,8 +5,8 @@ package pika
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
9 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
10
11 "github.com/go-redis/redis/v8"
12 )
src/go/collectors/go.d.plugin/modules/pika/integrations/pika.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pik
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/pika/metadata.yaml"
4 sidebar_label: "Pika"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -112,7 +112,7 @@ The configuration file name for this integration is `go.d/pika.conf`.
112
113
114 You can edit the configuration file using the `edit-config` script from the
115 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
115 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
116
117 ```bash
118 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/pika/pika.go
+3 -3
@@ -7,9 +7,9 @@ import (
7 _ "embed"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
12 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13
14 "github.com/blang/semver/v4"
15 "github.com/go-redis/redis/v8"
src/go/collectors/go.d.plugin/modules/pika/pika_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
12
13 "github.com/go-redis/redis/v8"
14 "github.com/stretchr/testify/assert"
src/go/collectors/go.d.plugin/modules/ping/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/ping/integrations/ping.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pin
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/ping/metadata.yaml"
4 sidebar_label: "Ping"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Synthetic Checks"
6 +learn_rel_path: "Collecting Metrics/Synthetic Checks"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -120,7 +120,7 @@ The configuration file name for this integration is `go.d/ping.conf`.
120
121
122 You can edit the configuration file using the `edit-config` script from the
123 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
123 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
124
125 ```bash
126 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/ping/ping.go
+3 -3
@@ -6,9 +6,9 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/logger"
11 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/logger"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 probing "github.com/prometheus-community/pro-bing"
14 )
src/go/collectors/go.d.plugin/modules/ping/ping_test.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "testing"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/logger"
10 + "github.com/netdata/netdata/go/go.d.plugin/logger"
11
12 probing "github.com/prometheus-community/pro-bing"
13 "github.com/stretchr/testify/assert"
src/go/collectors/go.d.plugin/modules/ping/prober.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "net"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/logger"
11 + "github.com/netdata/netdata/go/go.d.plugin/logger"
12
13 probing "github.com/prometheus-community/pro-bing"
14 )
src/go/collectors/go.d.plugin/modules/portcheck/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strconv"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/portcheck/init.go
+1 -1
@@ -5,7 +5,7 @@ package portcheck
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 )
10
11 func (pc *PortCheck) validateConfig() error {
src/go/collectors/go.d.plugin/modules/portcheck/integrations/tcp_endpoints.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/por
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/portcheck/metadata.yaml"
4 sidebar_label: "TCP Endpoints"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Synthetic Checks"
6 +learn_rel_path: "Collecting Metrics/Synthetic Checks"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -101,7 +101,7 @@ The configuration file name for this integration is `go.d/portcheck.conf`.
101
102
103 You can edit the configuration file using the `edit-config` script from the
104 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
104 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
105
106 ```bash
107 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/portcheck/portcheck.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "net"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/portcheck/portcheck_test.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "testing"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 "github.com/stretchr/testify/assert"
14 "github.com/stretchr/testify/require"
15 )
src/go/collectors/go.d.plugin/modules/postgres/charts.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "strings"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 )
12
13 const (
src/go/collectors/go.d.plugin/modules/postgres/do_query_replication.go
+1 -1
@@ -36,7 +36,7 @@ func (p *Postgres) doQueryReplStandbyAppWALDelta() error {
36 app = value
37 p.getReplAppMetrics(app).updated = true
38 default:
39 - // TODO: delta calculation was changed in https://github.com/netdata/go.d.plugin/pull/1039
39 + // TODO: delta calculation was changed in https://github.com/netdata/netdata/go/go.d.plugin/pull/1039
40 // - 'replay_delta' (probably other deltas too?) can be negative
41 // - Also, WAL delta != WAL lag after that PR
42 v := parseInt(value)
src/go/collectors/go.d.plugin/modules/postgres/init.go
+1 -1
@@ -5,7 +5,7 @@ package postgres
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/pkg/matcher"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
9 )
10
11 func (p *Postgres) validateConfig() error {
src/go/collectors/go.d.plugin/modules/postgres/integrations/postgresql.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pos
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/postgres/metadata.yaml"
4 sidebar_label: "PostgreSQL"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -280,7 +280,7 @@ The configuration file name for this integration is `go.d/postgres.conf`.
280
281
282 You can edit the configuration file using the `edit-config` script from the
283 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
283 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
284
285 ```bash
286 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/postgres/metrics.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package postgres
4
5 -import "github.com/netdata/go.d.plugin/pkg/metrics"
5 +import "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics"
6
7 type pgMetrics struct {
8 srvMetrics
src/go/collectors/go.d.plugin/modules/postgres/postgres.go
+4 -4
@@ -8,10 +8,10 @@ import (
8 "sync"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
12 - "github.com/netdata/go.d.plugin/pkg/matcher"
13 - "github.com/netdata/go.d.plugin/pkg/metrics"
14 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics"
14 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
15
16 "github.com/jackc/pgx/v4/stdlib"
17 _ "github.com/jackc/pgx/v4/stdlib"
src/go/collectors/go.d.plugin/modules/postgres/postgres_test.go
+1 -1
@@ -12,7 +12,7 @@ import (
12 "strings"
13 "testing"
14
15 - "github.com/netdata/go.d.plugin/pkg/matcher"
15 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
16
17 "github.com/DATA-DOG/go-sqlmock"
18 "github.com/stretchr/testify/assert"
src/go/collectors/go.d.plugin/modules/powerdns/authoritativens.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "net/http"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/powerdns/authoritativens_test.go
+2 -2
@@ -8,8 +8,8 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
12 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13
14 "github.com/stretchr/testify/assert"
15 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/powerdns/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package powerdns
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 var charts = module.Charts{
8 {
src/go/collectors/go.d.plugin/modules/powerdns/collect.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "net/http"
11 "strconv"
12
13 - "github.com/netdata/go.d.plugin/pkg/web"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 const (
src/go/collectors/go.d.plugin/modules/powerdns/init.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "errors"
7 "net/http"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 func (ns AuthoritativeNS) validateConfig() error {
src/go/collectors/go.d.plugin/modules/powerdns/integrations/powerdns_authoritative_server.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pow
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/powerdns/metadata.yaml"
4 sidebar_label: "PowerDNS Authoritative Server"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/DNS and DHCP Servers"
6 +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -105,7 +105,7 @@ The configuration file name for this integration is `go.d/powerdns.conf`.
105
106
107 You can edit the configuration file using the `edit-config` script from the
108 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
108 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
109
110 ```bash
111 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/powerdns_recursor/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package powerdns_recursor
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 var charts = module.Charts{
8 {
src/go/collectors/go.d.plugin/modules/powerdns_recursor/collect.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "net/http"
11 "strconv"
12
13 - "github.com/netdata/go.d.plugin/pkg/web"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 const (
src/go/collectors/go.d.plugin/modules/powerdns_recursor/init.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "errors"
7 "net/http"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 func (r Recursor) validateConfig() error {
src/go/collectors/go.d.plugin/modules/powerdns_recursor/integrations/powerdns_recursor.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pow
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/powerdns_recursor/metadata.yaml"
4 sidebar_label: "PowerDNS Recursor"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/DNS and DHCP Servers"
6 +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -108,7 +108,7 @@ The configuration file name for this integration is `go.d/powerdns_recursor.conf
108
109
110 You can edit the configuration file using the `edit-config` script from the
111 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
111 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
112
113 ```bash
114 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/powerdns_recursor/recursor.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "net/http"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/powerdns_recursor/recursor_test.go
+2 -2
@@ -8,8 +8,8 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
12 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13
14 "github.com/stretchr/testify/assert"
15 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/prometheus/cache.go
+1 -1
@@ -3,7 +3,7 @@
3 package prometheus
4
5 import (
6 - "github.com/netdata/go.d.plugin/agent/module"
6 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
7 )
8
9 func newCache() *cache {
src/go/collectors/go.d.plugin/modules/prometheus/charts.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/prometheus"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
11
12 "github.com/prometheus/prometheus/model/labels"
13 )
src/go/collectors/go.d.plugin/modules/prometheus/collect.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "strconv"
9 "strings"
10
11 - "github.com/netdata/go.d.plugin/pkg/prometheus"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
12
13 "github.com/prometheus/prometheus/model/labels"
14 "github.com/prometheus/prometheus/model/textparse"
src/go/collectors/go.d.plugin/modules/prometheus/init.go
+3 -3
@@ -7,9 +7,9 @@ import (
7 "fmt"
8 "os"
9
10 - "github.com/netdata/go.d.plugin/pkg/matcher"
11 - "github.com/netdata/go.d.plugin/pkg/prometheus"
12 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13 )
14
15 func (p *Prometheus) validateConfig() error {
src/go/collectors/go.d.plugin/modules/prometheus/integrations/4d_server.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "4D Server"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/8430ft_modem.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "8430FT modem"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/a10_acos_network_devices.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "A10 ACOS network devices"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/airthings_waveplus_air_sensor.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Airthings Waveplus air sensor"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/akamai_edge_dns_traffic.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Akamai Edge DNS Traffic"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/DNS and DHCP Servers"
6 +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/akamai_global_traffic_management.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Akamai Global Traffic Management"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/akami_cloudmonitor.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Akami Cloudmonitor"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/alamos_fe2_server.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Alamos FE2 server"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/alibaba_cloud.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Alibaba Cloud"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/altaro_backup.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Altaro Backup"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/amd_cpu_&_gpu.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "AMD CPU & GPU"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Hardware Devices and Sensors"
6 +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/andrews_&_arnold_line_status.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Andrews & Arnold line status"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/apache_airflow.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Apache Airflow"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/apache_flink.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Apache Flink"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/apicast.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "APIcast"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/apple_time_machine.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Apple Time Machine"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/macOS Systems"
6 +learn_rel_path: "Collecting Metrics/macOS Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/arm_hwcpipe.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "ARM HWCPipe"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Hardware Devices and Sensors"
6 +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/aruba_devices.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Aruba devices"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/arvancloud_cdn.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "ArvanCloud CDN"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/audisto.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Audisto"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/authlog.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "AuthLog"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Logs Servers"
6 +learn_rel_path: "Collecting Metrics/Logs Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_ec2_compute_instances.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "AWS EC2 Compute instances"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_ec2_spot_instance.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "AWS EC2 Spot Instance"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_ecs.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "AWS ECS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_health_events.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "AWS Health events"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_instance_health.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "AWS instance health"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_quota.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "AWS Quota"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_rds.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "AWS RDS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_s3_buckets.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "AWS S3 buckets"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_sqs.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "AWS SQS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_ad_app_passwords.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Azure AD App passwords"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_application.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Azure application"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_elastic_pool_sql.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Azure Elastic Pool SQL"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_resources.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Azure Resources"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_service_bus.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Azure Service Bus"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_sql.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Azure SQL"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/bigquery.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "BigQuery"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/bird_routing_daemon.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Bird Routing Daemon"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/blackbox.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Blackbox"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Synthetic Checks"
6 +learn_rel_path: "Collecting Metrics/Synthetic Checks"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/bobcat_miner_300.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Bobcat Miner 300"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/borg_backup.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Borg backup"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/bosh.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "BOSH"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Provisioning Systems"
6 +learn_rel_path: "Collecting Metrics/Provisioning Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/bpftrace_variables.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "bpftrace variables"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/bungeecord.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "BungeeCord"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Gaming"
6 +learn_rel_path: "Collecting Metrics/Gaming"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/cadvisor.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "cAdvisor"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Containers and VMs"
6 +learn_rel_path: "Collecting Metrics/Containers and VMs"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/celery.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Celery"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Task Queues"
6 +learn_rel_path: "Collecting Metrics/Task Queues"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/certificate_transparency.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Certificate Transparency"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Security Systems"
6 +learn_rel_path: "Collecting Metrics/Security Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -97,7 +97,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
97
98
99 You can edit the configuration file using the `edit-config` script from the
100 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
100 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
101
102 ```bash
103 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/checkpoint_device.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Checkpoint device"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/chia.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Chia"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Blockchain Servers"
6 +learn_rel_path: "Collecting Metrics/Blockchain Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/christ_elektronik_clm5ip_power_panel.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Christ Elektronik CLM5IP power panel"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/cilium_agent.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Cilium Agent"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Kubernetes"
6 +learn_rel_path: "Collecting Metrics/Kubernetes"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/cilium_operator.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Cilium Operator"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Kubernetes"
6 +learn_rel_path: "Collecting Metrics/Kubernetes"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/cilium_proxy.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Cilium Proxy"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Kubernetes"
6 +learn_rel_path: "Collecting Metrics/Kubernetes"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/cisco_aci.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Cisco ACI"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/citrix_netscaler.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Citrix NetScaler"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/clamav_daemon.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "ClamAV daemon"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Security Systems"
6 +learn_rel_path: "Collecting Metrics/Security Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/clamscan_results.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Clamscan results"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Security Systems"
6 +learn_rel_path: "Collecting Metrics/Security Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/clash.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Clash"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/clickhouse.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "ClickHouse"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloud_foundry.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Cloud Foundry"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Provisioning Systems"
6 +learn_rel_path: "Collecting Metrics/Provisioning Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloud_foundry_firehose.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Cloud Foundry Firehose"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Provisioning Systems"
6 +learn_rel_path: "Collecting Metrics/Provisioning Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloudflare_pcap.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Cloudflare PCAP"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloudwatch.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "CloudWatch"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/clustercontrol_cmon.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "ClusterControl CMON"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/collectd.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Collectd"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Observability"
6 +learn_rel_path: "Collecting Metrics/Observability"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/concourse.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Concourse"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/CICD Platforms"
6 +learn_rel_path: "Collecting Metrics/CICD Platforms"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/craftbeerpi.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "CraftBeerPi"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/crowdsec.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Crowdsec"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Security Systems"
6 +learn_rel_path: "Collecting Metrics/Security Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/crypto_exchanges.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Crypto exchanges"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Blockchain Servers"
6 +learn_rel_path: "Collecting Metrics/Blockchain Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/cryptowatch.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Cryptowatch"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Blockchain Servers"
6 +learn_rel_path: "Collecting Metrics/Blockchain Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/csgo.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "CS:GO"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Gaming"
6 +learn_rel_path: "Collecting Metrics/Gaming"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/custom_exporter.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Custom Exporter"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Generic Data Collection"
6 +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/cvmfs_clients.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "CVMFS clients"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/ddwrt_routers.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "DDWRT Routers"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_emc_ecs_cluster.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Dell EMC ECS cluster"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_emc_isilon_cluster.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Dell EMC Isilon cluster"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_emc_xtremio_cluster.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Dell EMC XtremIO cluster"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_powermax.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Dell PowerMax"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/dependency-track.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Dependency-Track"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/digitalocean.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "DigitalOcean"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/discourse.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Discourse"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Media Services"
6 +learn_rel_path: "Collecting Metrics/Media Services"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/dmarc.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "DMARC"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Mail Servers"
6 +learn_rel_path: "Collecting Metrics/Mail Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/dnsbl.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "DNSBL"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/DNS and DHCP Servers"
6 +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/dutch_electricity_smart_meter.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Dutch Electricity Smart Meter"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/dynatrace.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Dynatrace"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Observability"
6 +learn_rel_path: "Collecting Metrics/Observability"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/eaton_ups.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Eaton UPS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/UPS"
6 +learn_rel_path: "Collecting Metrics/UPS"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/elgato_key_light_devices..md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Elgato Key Light devices."
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/energomera_smart_power_meters.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Energomera smart power meters"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/eos.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "EOS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/etcd.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "etcd"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Service Discovery / Registry"
6 +learn_rel_path: "Collecting Metrics/Service Discovery / Registry"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -92,7 +92,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
92
93
94 You can edit the configuration file using the `edit-config` script from the
95 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
95 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
96
97 ```bash
98 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/excel_spreadsheet.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Excel spreadsheet"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Generic Data Collection"
6 +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/fastd.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Fastd"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/VPNs"
6 +learn_rel_path: "Collecting Metrics/VPNs"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/fortigate_firewall.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Fortigate firewall"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/freebsd_nfs.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "FreeBSD NFS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/FreeBSD"
6 +learn_rel_path: "Collecting Metrics/FreeBSD"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/freebsd_rctl-racct.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "FreeBSD RCTL-RACCT"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/FreeBSD"
6 +learn_rel_path: "Collecting Metrics/FreeBSD"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/freifunk_network.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Freifunk network"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/fritzbox_network_devices.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Fritzbox network devices"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/frrouting.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "FRRouting"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/gcp_gce.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "GCP GCE"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/gcp_quota.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "GCP Quota"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/generic_command_line_output.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Generic Command Line Output"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Generic Data Collection"
6 +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/generic_storage_enclosure_tool.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Generic storage enclosure tool"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/github_api_rate_limit.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "GitHub API rate limit"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Other"
6 +learn_rel_path: "Collecting Metrics/Other"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -97,7 +97,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
97
98
99 You can edit the configuration file using the `edit-config` script from the
100 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
100 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
101
102 ```bash
103 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/github_repository.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "GitHub repository"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Other"
6 +learn_rel_path: "Collecting Metrics/Other"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/gitlab_runner.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "GitLab Runner"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/CICD Platforms"
6 +learn_rel_path: "Collecting Metrics/CICD Platforms"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/gobetween.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Gobetween"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -92,7 +92,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
92
93
94 You can edit the configuration file using the `edit-config` script from the
95 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
95 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
96
97 ```bash
98 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/google_cloud_platform.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Google Cloud Platform"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/google_pagespeed.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Google Pagespeed"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/google_stackdriver.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Google Stackdriver"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/gpsd.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "gpsd"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/grafana.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Grafana"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Observability"
6 +learn_rel_path: "Collecting Metrics/Observability"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -92,7 +92,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
92
93
94 You can edit the configuration file using the `edit-config` script from the
95 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
95 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
96
97 ```bash
98 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/graylog_server.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Graylog Server"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Logs Servers"
6 +learn_rel_path: "Collecting Metrics/Logs Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/gtp.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "GTP"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Telephony Servers"
6 +learn_rel_path: "Collecting Metrics/Telephony Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/halon.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Halon"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Mail Servers"
6 +learn_rel_path: "Collecting Metrics/Mail Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/hana.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "HANA"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/hashicorp_vault_secrets.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "HashiCorp Vault secrets"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Authentication and Authorization"
6 +learn_rel_path: "Collecting Metrics/Authentication and Authorization"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/hasura_graphql_server.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Hasura GraphQL Server"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -97,7 +97,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
97
98
99 You can edit the configuration file using the `edit-config` script from the
100 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
100 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
101
102 ```bash
103 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/hdsentinel.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "HDSentinel"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/helium_hotspot.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Helium hotspot"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/helium_miner_validator.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Helium miner (validator)"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Blockchain Servers"
6 +learn_rel_path: "Collecting Metrics/Blockchain Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/hhvm.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "HHVM"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -97,7 +97,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
97
98
99 You can edit the configuration file using the `edit-config` script from the
100 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
100 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
101
102 ```bash
103 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/hitron_cgn_series_cpe.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Hitron CGN series CPE"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/hitron_coda_cable_modem.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Hitron CODA Cable Modem"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/homebridge.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Homebridge"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/homey.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Homey"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/honeypot.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Honeypot"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Security Systems"
6 +learn_rel_path: "Collecting Metrics/Security Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/hp_ilo.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "HP iLO"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Hardware Devices and Sensors"
6 +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/huawei_devices.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Huawei devices"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/hubble.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Hubble"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Observability"
6 +learn_rel_path: "Collecting Metrics/Observability"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_aix_systems_njmon.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "IBM AIX systems Njmon"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_cryptoexpress_cex_cards.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "IBM CryptoExpress (CEX) cards"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Hardware Devices and Sensors"
6 +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_mq.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "IBM MQ"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Message Brokers"
6 +learn_rel_path: "Collecting Metrics/Message Brokers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_spectrum.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "IBM Spectrum"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_spectrum_virtualize.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "IBM Spectrum Virtualize"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_z_hardware_management_console.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "IBM Z Hardware Management Console"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Hardware Devices and Sensors"
6 +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/influxdb.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "InfluxDB"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/iota_full_node.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "IOTA full node"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Blockchain Servers"
6 +learn_rel_path: "Collecting Metrics/Blockchain Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/ipmi_by_soundcloud.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "IPMI (By SoundCloud)"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Hardware Devices and Sensors"
6 +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/iqair_airvisual_air_quality_monitors.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "iqAir AirVisual air quality monitors"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/jarvis_standing_desk.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Jarvis Standing Desk"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/jenkins.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Jenkins"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/CICD Platforms"
6 +learn_rel_path: "Collecting Metrics/CICD Platforms"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/jetbrains_floating_license_server.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "JetBrains Floating License Server"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Generic Data Collection"
6 +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/jmx.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "JMX"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/jolokia.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "jolokia"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/journald.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "journald"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Logs Servers"
6 +learn_rel_path: "Collecting Metrics/Logs Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Kafka"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Message Brokers"
6 +learn_rel_path: "Collecting Metrics/Message Brokers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka_connect.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Kafka Connect"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Message Brokers"
6 +learn_rel_path: "Collecting Metrics/Message Brokers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka_consumer_lag.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Kafka Consumer Lag"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Service Discovery / Registry"
6 +learn_rel_path: "Collecting Metrics/Service Discovery / Registry"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka_zookeeper.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Kafka ZooKeeper"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Message Brokers"
6 +learn_rel_path: "Collecting Metrics/Message Brokers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/kannel.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Kannel"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Telephony Servers"
6 +learn_rel_path: "Collecting Metrics/Telephony Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/keepalived.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Keepalived"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/kubernetes_cluster_cloud_cost.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Kubernetes Cluster Cloud Cost"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Kubernetes"
6 +learn_rel_path: "Collecting Metrics/Kubernetes"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/lagerist_disk_latency.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Lagerist Disk latency"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/ldap.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "LDAP"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Authentication and Authorization"
6 +learn_rel_path: "Collecting Metrics/Authentication and Authorization"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/linode.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Linode"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/loki.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "loki"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Logs Servers"
6 +learn_rel_path: "Collecting Metrics/Logs Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/lustre_metadata.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Lustre metadata"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/lynis_audit_reports.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Lynis audit reports"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Security Systems"
6 +learn_rel_path: "Collecting Metrics/Security Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/machbase.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Machbase"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/maildir.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Maildir"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Mail Servers"
6 +learn_rel_path: "Collecting Metrics/Mail Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/meilisearch.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Meilisearch"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Search Engines"
6 +learn_rel_path: "Collecting Metrics/Search Engines"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/memcached_community.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Memcached (community)"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/meraki_dashboard.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Meraki dashboard"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/mesos.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Mesos"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Task Queues"
6 +learn_rel_path: "Collecting Metrics/Task Queues"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/mikrotik_devices.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "MikroTik devices"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/mikrotik_routeros_devices.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Mikrotik RouterOS devices"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/minecraft.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Minecraft"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Gaming"
6 +learn_rel_path: "Collecting Metrics/Gaming"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/modbus_protocol.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Modbus protocol"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/mogilefs.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "MogileFS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/monnit_sensors_mqtt.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Monnit Sensors MQTT"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/mosquitto.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "mosquitto"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Message Brokers"
6 +learn_rel_path: "Collecting Metrics/Message Brokers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/mp707_usb_thermometer.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "MP707 USB thermometer"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/mqtt_blackbox.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "MQTT Blackbox"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Message Brokers"
6 +learn_rel_path: "Collecting Metrics/Message Brokers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/mtail.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "mtail"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Logs Servers"
6 +learn_rel_path: "Collecting Metrics/Logs Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/naemon.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Naemon"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Observability"
6 +learn_rel_path: "Collecting Metrics/Observability"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/nagios.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Nagios"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Observability"
6 +learn_rel_path: "Collecting Metrics/Observability"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -97,7 +97,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
97
98
99 You can edit the configuration file using the `edit-config` script from the
100 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
100 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
101
102 ```bash
103 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/nature_remo_e_lite_devices.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Nature Remo E lite devices"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/netapp_ontap_api.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Netapp ONTAP API"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/netapp_solidfire.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "NetApp Solidfire"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/netatmo_sensors.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Netatmo sensors"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/netflow.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "NetFlow"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/netmeter.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "NetMeter"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/new_relic.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "New Relic"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Observability"
6 +learn_rel_path: "Collecting Metrics/Observability"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/nextcloud_servers.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Nextcloud servers"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/nextdns.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "NextDNS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/DNS and DHCP Servers"
6 +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/nftables.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "nftables"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Linux Systems/Firewall"
6 +learn_rel_path: "Collecting Metrics/Linux Systems/Firewall"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/nrpe_daemon.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "NRPE daemon"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/nsx-t.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "NSX-T"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Containers and VMs"
6 +learn_rel_path: "Collecting Metrics/Containers and VMs"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/nvml.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "NVML"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Hardware Devices and Sensors"
6 +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/obs_studio.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "OBS Studio"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Media Services"
6 +learn_rel_path: "Collecting Metrics/Media Services"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/odbc.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "ODBC"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/open_vswitch.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Open vSwitch"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/openhab.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "OpenHAB"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/openldap_community.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "OpenLDAP (community)"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Authentication and Authorization"
6 +learn_rel_path: "Collecting Metrics/Authentication and Authorization"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/openrc.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "OpenRC"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Linux Systems"
6 +learn_rel_path: "Collecting Metrics/Linux Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/openrct2.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "OpenRCT2"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Gaming"
6 +learn_rel_path: "Collecting Metrics/Gaming"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/openroadm_devices.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "OpenROADM devices"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/openstack.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "OpenStack"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/openvas.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "OpenVAS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Security Systems"
6 +learn_rel_path: "Collecting Metrics/Security Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/openweathermap.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "OpenWeatherMap"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Generic Data Collection"
6 +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/oracle_db_community.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Oracle DB (community)"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/otrs.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "OTRS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Incident Management"
6 +learn_rel_path: "Collecting Metrics/Incident Management"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/patroni.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Patroni"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/personal_weather_station.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Personal Weather Station"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/pgbackrest.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "pgBackRest"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/pgpool-ii.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Pgpool-II"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/philips_hue.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Philips Hue"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/pimoroni_enviro+.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Pimoroni Enviro+"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/pingdom.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Pingdom"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Synthetic Checks"
6 +learn_rel_path: "Collecting Metrics/Synthetic Checks"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/podman.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Podman"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Containers and VMs"
6 +learn_rel_path: "Collecting Metrics/Containers and VMs"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/powerpal_devices.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Powerpal devices"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/proftpd.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "ProFTPD"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/FTP Servers"
6 +learn_rel_path: "Collecting Metrics/FTP Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/prometheus_endpoint.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Prometheus endpoint"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Generic Data Collection"
6 +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -92,7 +92,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
92
93
94 You can edit the configuration file using the `edit-config` script from the
95 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
95 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
96
97 ```bash
98 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/proxmox_ve.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Proxmox VE"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Containers and VMs"
6 +learn_rel_path: "Collecting Metrics/Containers and VMs"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/radio_thermostat.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Radio Thermostat"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/radius.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "RADIUS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Authentication and Authorization"
6 +learn_rel_path: "Collecting Metrics/Authentication and Authorization"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/rancher.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Rancher"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Kubernetes"
6 +learn_rel_path: "Collecting Metrics/Kubernetes"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/raritan_pdu.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Raritan PDU"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Hardware Devices and Sensors"
6 +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/redis_queue.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Redis Queue"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Message Brokers"
6 +learn_rel_path: "Collecting Metrics/Message Brokers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/ripe_atlas.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "RIPE Atlas"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/sabnzbd.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "SABnzbd"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Media Services"
6 +learn_rel_path: "Collecting Metrics/Media Services"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/salicru_eqx_inverter.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Salicru EQX inverter"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/sense_energy.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Sense Energy"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/sentry.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Sentry"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/servertech.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "ServerTech"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Hardware Devices and Sensors"
6 +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/shell_command.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Shell command"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Generic Data Collection"
6 +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/shelly_humidity_sensor.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Shelly humidity sensor"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/sia.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Sia"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Blockchain Servers"
6 +learn_rel_path: "Collecting Metrics/Blockchain Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/siemens_s7_plc.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Siemens S7 PLC"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Hardware Devices and Sensors"
6 +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/site_24x7.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Site 24x7"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Synthetic Checks"
6 +learn_rel_path: "Collecting Metrics/Synthetic Checks"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/slurm.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Slurm"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Task Queues"
6 +learn_rel_path: "Collecting Metrics/Task Queues"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/sma_inverters.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "SMA Inverters"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/smart_meters_sml.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Smart meters SML"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/smartrg_808ac_cable_modem.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "SmartRG 808AC Cable Modem"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/softether_vpn_server.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "SoftEther VPN Server"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/VPNs"
6 +learn_rel_path: "Collecting Metrics/VPNs"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/solar_logging_stick.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Solar logging stick"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/solaredge_inverters.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "SolarEdge inverters"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/solis_ginlong_5g_inverters.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Solis Ginlong 5G inverters"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/sonic_nos.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "SONiC NOS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/spacelift.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Spacelift"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Provisioning Systems"
6 +learn_rel_path: "Collecting Metrics/Provisioning Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/speedify_cli.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Speedify CLI"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/VPNs"
6 +learn_rel_path: "Collecting Metrics/VPNs"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/sphinx.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Sphinx"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Search Engines"
6 +learn_rel_path: "Collecting Metrics/Search Engines"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/sql_database_agnostic.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "SQL Database agnostic"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/ssh.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "SSH"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Authentication and Authorization"
6 +learn_rel_path: "Collecting Metrics/Authentication and Authorization"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/ssl_certificate.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "SSL Certificate"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Security Systems"
6 +learn_rel_path: "Collecting Metrics/Security Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/starlink_spacex.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Starlink (SpaceX)"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/starwind_vsan_vsphere_edition.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Starwind VSAN VSphere Edition"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/statuspage.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "StatusPage"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Incident Management"
6 +learn_rel_path: "Collecting Metrics/Incident Management"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/steam.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Steam"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Gaming"
6 +learn_rel_path: "Collecting Metrics/Gaming"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/storidge.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Storidge"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/stream.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Stream"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Media Services"
6 +learn_rel_path: "Collecting Metrics/Media Services"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/strongswan.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "strongSwan"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/VPNs"
6 +learn_rel_path: "Collecting Metrics/VPNs"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/sunspec_solar_energy.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Sunspec Solar Energy"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/suricata.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Suricata"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Security Systems"
6 +learn_rel_path: "Collecting Metrics/Security Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/synology_activebackup.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Synology ActiveBackup"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/sysload.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Sysload"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/t-rex_nvidia_gpu_miner.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "T-Rex NVIDIA GPU Miner"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Hardware Devices and Sensors"
6 +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/tacacs.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "TACACS"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Authentication and Authorization"
6 +learn_rel_path: "Collecting Metrics/Authentication and Authorization"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/tado_smart_heating_solution.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Tado smart heating solution"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/tankerkoenig_api.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Tankerkoenig API"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Generic Data Collection"
6 +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/tesla_powerwall.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Tesla Powerwall"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/tesla_vehicle.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Tesla vehicle"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/tesla_wall_connector.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Tesla Wall Connector"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/tp-link_p110.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "TP-Link P110"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/traceroute.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Traceroute"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/twincat_ads_web_service.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "TwinCAT ADS Web Service"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Generic Data Collection"
6 +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/twitch.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Twitch"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Media Services"
6 +learn_rel_path: "Collecting Metrics/Media Services"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/ubiquiti_ufiber_olt.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Ubiquiti UFiber OLT"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/uptimerobot.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Uptimerobot"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Synthetic Checks"
6 +learn_rel_path: "Collecting Metrics/Synthetic Checks"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/vault_pki.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Vault PKI"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Security Systems"
6 +learn_rel_path: "Collecting Metrics/Security Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/vertica.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Vertica"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/vscode.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "VSCode"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/warp10.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Warp10"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/xiaomi_mi_flora.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Xiaomi Mi Flora"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/IoT Devices"
6 +learn_rel_path: "Collecting Metrics/IoT Devices"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/xmpp_server.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "XMPP Server"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Message Brokers"
6 +learn_rel_path: "Collecting Metrics/Message Brokers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/yourls_url_shortener.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "YOURLS URL Shortener"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/zerto.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Zerto"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Cloud Provider Managed"
6 +learn_rel_path: "Collecting Metrics/Cloud Provider Managed"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/zulip.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Zulip"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Media Services"
6 +learn_rel_path: "Collecting Metrics/Media Services"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/integrations/zyxel_gs1200-8.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml"
4 sidebar_label: "Zyxel GS1200-8"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces"
6 +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/prometheus/prometheus.go
+5 -5
@@ -6,11 +6,11 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/matcher"
11 - "github.com/netdata/go.d.plugin/pkg/prometheus"
12 - "github.com/netdata/go.d.plugin/pkg/prometheus/selector"
13 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/prometheus/prometheus_test.go
+3 -3
@@ -8,9 +8,9 @@ import (
8 "net/http/httptest"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
12 - "github.com/netdata/go.d.plugin/pkg/prometheus/selector"
13 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14
15 "github.com/stretchr/testify/assert"
16 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/proxysql/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 // TODO: check https://github.com/ProxySQL/proxysql-grafana-prometheus/blob/main/grafana/provisioning/dashboards/ProxySQL-Host-Statistics.json
src/go/collectors/go.d.plugin/modules/proxysql/integrations/proxysql.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/proxysql/metadata.yaml"
4 sidebar_label: "ProxySQL"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -171,7 +171,7 @@ The configuration file name for this integration is `go.d/proxysql.conf`.
171
172
173 You can edit the configuration file using the `edit-config` script from the
174 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
174 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
175
176 ```bash
177 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/proxysql/proxysql.go
+2 -2
@@ -9,8 +9,8 @@ import (
9 "sync"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
13 - "github.com/netdata/go.d.plugin/pkg/web"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/pulsar/charts.go
+2 -2
@@ -6,9 +6,9 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/pkg/prometheus"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 )
13
14 type (
src/go/collectors/go.d.plugin/modules/pulsar/collect.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "errors"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/pkg/prometheus"
10 - "github.com/netdata/go.d.plugin/pkg/stm"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
11 )
12
13 func isValidPulsarMetrics(pms prometheus.Series) bool {
src/go/collectors/go.d.plugin/modules/pulsar/integrations/apache_pulsar.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pul
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/pulsar/metadata.yaml"
4 sidebar_label: "Apache Pulsar"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Message Brokers"
6 +learn_rel_path: "Collecting Metrics/Message Brokers"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -149,7 +149,7 @@ The configuration file name for this integration is `go.d/pulsar.conf`.
149
150
151 You can edit the configuration file using the `edit-config` script from the
152 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
152 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
153
154 ```bash
155 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/pulsar/pulsar.go
+4 -4
@@ -8,11 +8,11 @@ import (
8 "sync"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/pkg/matcher"
12 - "github.com/netdata/go.d.plugin/pkg/prometheus"
13 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14
15 - "github.com/netdata/go.d.plugin/agent/module"
15 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
16 )
17
18 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/pulsar/pulsar_test.go
+4 -4
@@ -9,11 +9,11 @@ import (
9 "strings"
10 "testing"
11
12 - "github.com/netdata/go.d.plugin/pkg/matcher"
13 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
14 - "github.com/netdata/go.d.plugin/pkg/web"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
14 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
15
16 - "github.com/netdata/go.d.plugin/agent/module"
16 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
17 "github.com/stretchr/testify/assert"
18 "github.com/stretchr/testify/require"
19 )
src/go/collectors/go.d.plugin/modules/rabbitmq/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/rabbitmq/collect.go
+2 -2
@@ -9,8 +9,8 @@ import (
9 "net/http"
10 "path/filepath"
11
12 - "github.com/netdata/go.d.plugin/pkg/stm"
13 - "github.com/netdata/go.d.plugin/pkg/web"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 const (
src/go/collectors/go.d.plugin/modules/rabbitmq/integrations/rabbitmq.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/rab
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/rabbitmq/metadata.yaml"
4 sidebar_label: "RabbitMQ"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Message Brokers"
6 +learn_rel_path: "Collecting Metrics/Message Brokers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -146,7 +146,7 @@ The configuration file name for this integration is `go.d/rabbitmq.conf`.
146
147
148 You can edit the configuration file using the `edit-config` script from the
149 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
149 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
150
151 ```bash
152 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/rabbitmq/rabbitmq.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "net/http"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/rabbitmq/rabbitmq_test.go
+1 -1
@@ -12,7 +12,7 @@ import (
12 "github.com/stretchr/testify/assert"
13 "github.com/stretchr/testify/require"
14
15 - "github.com/netdata/go.d.plugin/pkg/web"
15 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
16 )
17
18 var (
src/go/collectors/go.d.plugin/modules/redis/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package redis
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 const (
8 prioConnections = module.Priority + iota
src/go/collectors/go.d.plugin/modules/redis/collect_info.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "strings"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 )
14
15 const (
src/go/collectors/go.d.plugin/modules/redis/init.go
+2 -2
@@ -5,8 +5,8 @@ package redis
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
9 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
10
11 "github.com/go-redis/redis/v8"
12 )
src/go/collectors/go.d.plugin/modules/redis/integrations/redis.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/red
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/redis/metadata.yaml"
4 sidebar_label: "Redis"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Databases"
6 +learn_rel_path: "Collecting Metrics/Databases"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -129,7 +129,7 @@ The configuration file name for this integration is `go.d/redis.conf`.
129
130
131 You can edit the configuration file using the `edit-config` script from the
132 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
132 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
133
134 ```bash
135 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/redis/redis.go
+4 -4
@@ -8,10 +8,10 @@ import (
8 "sync"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
12 - "github.com/netdata/go.d.plugin/pkg/metrics"
13 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
14 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
14 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
15
16 "github.com/blang/semver/v4"
17 "github.com/go-redis/redis/v8"
src/go/collectors/go.d.plugin/modules/redis/redis_test.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "strings"
10 "testing"
11
12 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
13
14 "github.com/go-redis/redis/v8"
15 "github.com/stretchr/testify/assert"
src/go/collectors/go.d.plugin/modules/scaleio/charts.go
+2 -2
@@ -5,9 +5,9 @@ package scaleio
5 import (
6 "fmt"
7
8 - "github.com/netdata/go.d.plugin/modules/scaleio/client"
8 + "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 )
12
13 type (
src/go/collectors/go.d.plugin/modules/scaleio/client/client.go
+1 -1
@@ -13,7 +13,7 @@ import (
13 "strings"
14 "sync"
15
16 - "github.com/netdata/go.d.plugin/pkg/web"
16 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
17 )
18
19 /*
src/go/collectors/go.d.plugin/modules/scaleio/client/client_test.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "net/http/httptest"
7 "testing"
8
9 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
10
11 "github.com/stretchr/testify/assert"
12 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/scaleio/collect.go
+2 -2
@@ -5,8 +5,8 @@ package scaleio
5 import (
6 "time"
7
8 - "github.com/netdata/go.d.plugin/modules/scaleio/client"
9 - "github.com/netdata/go.d.plugin/pkg/stm"
8 + "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
10 )
11
12 const discoveryEvery = 5
src/go/collectors/go.d.plugin/modules/scaleio/collect_sdc.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package scaleio
4
5 -import "github.com/netdata/go.d.plugin/modules/scaleio/client"
5 +import "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client"
6
7 func (s ScaleIO) collectSdc(ss map[string]client.SdcStatistics) map[string]sdcMetrics {
8 ms := make(map[string]sdcMetrics, len(ss))
src/go/collectors/go.d.plugin/modules/scaleio/collect_storage_pool.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package scaleio
4
5 -import "github.com/netdata/go.d.plugin/modules/scaleio/client"
5 +import "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client"
6
7 func (s ScaleIO) collectStoragePool(ss map[string]client.StoragePoolStatistics) map[string]storagePoolMetrics {
8 ms := make(map[string]storagePoolMetrics, len(ss))
src/go/collectors/go.d.plugin/modules/scaleio/collect_system.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package scaleio
4
5 -import "github.com/netdata/go.d.plugin/modules/scaleio/client"
5 +import "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client"
6
7 func (ScaleIO) collectSystem(ss client.SystemStatistics) systemMetrics {
8 var sm systemMetrics
src/go/collectors/go.d.plugin/modules/scaleio/integrations/dell_emc_scaleio.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/sca
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/scaleio/metadata.yaml"
4 sidebar_label: "Dell EMC ScaleIO"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems"
6 +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -144,7 +144,7 @@ The configuration file name for this integration is `go.d/scaleio.conf`.
144
145
146 You can edit the configuration file using the `edit-config` script from the
147 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
147 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
148
149 ```bash
150 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/scaleio/queries.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package scaleio
4
5 -import "github.com/netdata/go.d.plugin/modules/scaleio/client"
5 +import "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client"
6
7 /*
8 Starting from version 3 of ScaleIO/VxFlex API numOfScsiInitiators property is removed from the system selectedStatisticsQuery.
src/go/collectors/go.d.plugin/modules/scaleio/scaleio.go
+3 -3
@@ -6,10 +6,10 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/modules/scaleio/client"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 )
14
15 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/scaleio/scaleio_test.go
+2 -2
@@ -8,9 +8,9 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/modules/scaleio/client"
11 + "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 "github.com/stretchr/testify/assert"
15 "github.com/stretchr/testify/require"
16 )
src/go/collectors/go.d.plugin/modules/snmp/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 func newCharts(configs []ChartConfig) (*module.Charts, error) {
src/go/collectors/go.d.plugin/modules/snmp/integrations/snmp_devices.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/snm
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/snmp/metadata.yaml"
4 sidebar_label: "SNMP devices"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Generic Data Collection"
6 +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -99,7 +99,7 @@ The configuration file name for this integration is `go.d/snmp.conf`.
99
100
101 You can edit the configuration file using the `edit-config` script from the
102 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
102 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
103
104 ```bash
105 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/snmp/snmp.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "fmt"
8 "strings"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11
12 "github.com/gosnmp/gosnmp"
13 )
src/go/collectors/go.d.plugin/modules/snmp/snmp_test.go
+1 -1
@@ -11,7 +11,7 @@ import (
11 "github.com/golang/mock/gomock"
12 "github.com/gosnmp/gosnmp"
13 snmpmock "github.com/gosnmp/gosnmp/mocks"
14 - "github.com/netdata/go.d.plugin/agent/module"
14 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
15 "github.com/stretchr/testify/assert"
16 "github.com/stretchr/testify/require"
17 )
src/go/collectors/go.d.plugin/modules/solr/charts.go
+1 -1
@@ -3,7 +3,7 @@
3 package solr
4
5 import (
6 - "github.com/netdata/go.d.plugin/agent/module"
6 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
7 )
8
9 type (
src/go/collectors/go.d.plugin/modules/solr/integrations/solr.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/sol
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/solr/metadata.yaml"
4 sidebar_label: "Solr"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Search Engines"
6 +learn_rel_path: "Collecting Metrics/Search Engines"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -102,7 +102,7 @@ The configuration file name for this integration is `go.d/solr.conf`.
102
103
104 You can edit the configuration file using the `edit-config` script from the
105 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
105 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
106
107 ```bash
108 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/solr/solr.go
+2 -2
@@ -13,9 +13,9 @@ import (
13 "strings"
14 "time"
15
16 - "github.com/netdata/go.d.plugin/pkg/web"
16 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
17
18 - "github.com/netdata/go.d.plugin/agent/module"
18 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
19 )
20
21 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/solr/solr_test.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "os"
10 "testing"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 "github.com/stretchr/testify/assert"
14 "github.com/stretchr/testify/require"
15 )
src/go/collectors/go.d.plugin/modules/springboot2/charts.go
+1 -1
@@ -3,7 +3,7 @@
3 package springboot2
4
5 import (
6 - "github.com/netdata/go.d.plugin/agent/module"
6 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
7 )
8
9 type (
src/go/collectors/go.d.plugin/modules/springboot2/integrations/java_spring-boot_2_applications.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/spr
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/springboot2/metadata.yaml"
4 sidebar_label: "Java Spring-boot 2 applications"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/APM"
6 +learn_rel_path: "Collecting Metrics/APM"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -103,7 +103,7 @@ The configuration file name for this integration is `go.d/springboot2.conf`.
103
104
105 You can edit the configuration file using the `edit-config` script from the
106 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
106 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
107
108 ```bash
109 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/springboot2/springboot2.go
+6 -6
@@ -7,14 +7,14 @@ import (
7 "strings"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/pkg/matcher"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
11
12 - mtx "github.com/netdata/go.d.plugin/pkg/metrics"
13 - "github.com/netdata/go.d.plugin/pkg/prometheus"
14 - "github.com/netdata/go.d.plugin/pkg/stm"
15 - "github.com/netdata/go.d.plugin/pkg/web"
12 + mtx "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
14 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
15 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
16
17 - "github.com/netdata/go.d.plugin/agent/module"
17 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
18 )
19
20 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/squidlog/charts.go
+1 -1
@@ -5,7 +5,7 @@ package squidlog
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 )
10
11 type (
src/go/collectors/go.d.plugin/modules/squidlog/collect.go
+3 -3
@@ -8,10 +8,10 @@ import (
8 "strconv"
9 "strings"
10
11 - "github.com/netdata/go.d.plugin/pkg/logs"
12 - "github.com/netdata/go.d.plugin/pkg/stm"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
13
14 - "github.com/netdata/go.d.plugin/agent/module"
14 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
15 )
16
17 func (s SquidLog) logPanicStackIfAny() {
src/go/collectors/go.d.plugin/modules/squidlog/init.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "fmt"
8 "strings"
9
10 - "github.com/netdata/go.d.plugin/pkg/logs"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs"
11 )
12
13 func (s *SquidLog) createLogReader() error {
src/go/collectors/go.d.plugin/modules/squidlog/integrations/squid_log_files.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/squ
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/squidlog/metadata.yaml"
4 sidebar_label: "Squid log files"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -105,7 +105,7 @@ The configuration file name for this integration is `go.d/squidlog.conf`.
105
106
107 You can edit the configuration file using the `edit-config` script from the
108 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
108 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
109
110 ```bash
111 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/squidlog/metrics.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package squidlog
4
5 -import "github.com/netdata/go.d.plugin/pkg/metrics"
5 +import "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics"
6
7 func newSummary() metrics.Summary {
8 return &summary{metrics.NewSummary()}
src/go/collectors/go.d.plugin/modules/squidlog/squidlog.go
+2 -2
@@ -5,8 +5,8 @@ package squidlog
5 import (
6 _ "embed"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
9 - "github.com/netdata/go.d.plugin/pkg/logs"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs"
10 )
11
12 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/squidlog/squidlog_test.go
+3 -3
@@ -7,10 +7,10 @@ import (
7 "os"
8 "testing"
9
10 - "github.com/netdata/go.d.plugin/pkg/logs"
11 - "github.com/netdata/go.d.plugin/pkg/metrics"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 "github.com/stretchr/testify/assert"
15 "github.com/stretchr/testify/require"
16 )
src/go/collectors/go.d.plugin/modules/supervisord/charts.go
+1 -1
@@ -5,7 +5,7 @@ package supervisord
5 import (
6 "fmt"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 )
10
11 const (
src/go/collectors/go.d.plugin/modules/supervisord/collect.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 func (s *Supervisord) collect() (map[string]int64, error) {
src/go/collectors/go.d.plugin/modules/supervisord/init.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "fmt"
8 "net/url"
9
10 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 func (s Supervisord) verifyConfig() error {
src/go/collectors/go.d.plugin/modules/supervisord/integrations/supervisor.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/sup
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/supervisord/metadata.yaml"
4 sidebar_label: "Supervisor"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Processes and System Services"
6 +learn_rel_path: "Collecting Metrics/Processes and System Services"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -112,7 +112,7 @@ The configuration file name for this integration is `go.d/supervisord.conf`.
112
113
114 You can edit the configuration file using the `edit-config` script from the
115 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
115 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
116
117 ```bash
118 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/supervisord/supervisord.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/systemdunits/charts.go
+1 -1
@@ -8,7 +8,7 @@ package systemdunits
8 import (
9 "fmt"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12
13 "golang.org/x/text/cases"
14 "golang.org/x/text/language"
src/go/collectors/go.d.plugin/modules/systemdunits/init.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "errors"
10 "strings"
11
12 - "github.com/netdata/go.d.plugin/pkg/matcher"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
13 )
14
15 func (s *SystemdUnits) validateConfig() error {
src/go/collectors/go.d.plugin/modules/systemdunits/integrations/systemd_units.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/sys
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/systemdunits/metadata.yaml"
4 sidebar_label: "Systemd Units"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Systemd"
6 +learn_rel_path: "Collecting Metrics/Systemd"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -116,7 +116,7 @@ The configuration file name for this integration is `go.d/systemdunits.conf`.
116
117
118 You can edit the configuration file using the `edit-config` script from the
119 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
119 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
120
121 ```bash
122 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/systemdunits/systemdunits.go
+3 -3
@@ -9,9 +9,9 @@ import (
9 _ "embed"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
13 - "github.com/netdata/go.d.plugin/pkg/matcher"
14 - "github.com/netdata/go.d.plugin/pkg/web"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
14 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
15 )
16
17 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/systemdunits/systemdunits_test.go
+1 -1
@@ -12,7 +12,7 @@ import (
12 "path/filepath"
13 "testing"
14
15 - "github.com/netdata/go.d.plugin/agent/module"
15 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
16
17 "github.com/coreos/go-systemd/v22/dbus"
18 "github.com/stretchr/testify/assert"
src/go/collectors/go.d.plugin/modules/tengine/apiclient.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "strconv"
11 "strings"
12
13 - "github.com/netdata/go.d.plugin/pkg/web"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14 )
15
16 const (
src/go/collectors/go.d.plugin/modules/tengine/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package tengine
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 // Charts is an alias for module.Charts
src/go/collectors/go.d.plugin/modules/tengine/collect.go
+1 -1
@@ -3,7 +3,7 @@
3 package tengine
4
5 import (
6 - "github.com/netdata/go.d.plugin/pkg/stm"
6 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
7 )
8
9 func (t *Tengine) collect() (map[string]int64, error) {
src/go/collectors/go.d.plugin/modules/tengine/integrations/tengine.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ten
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/tengine/metadata.yaml"
4 sidebar_label: "Tengine"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -99,7 +99,7 @@ The configuration file name for this integration is `go.d/tengine.conf`.
99
100
101 You can edit the configuration file using the `edit-config` script from the
102 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
102 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
103
104 ```bash
105 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/tengine/tengine.go
+2 -2
@@ -6,9 +6,9 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/tengine/tengine_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 "github.com/stretchr/testify/assert"
13 "github.com/stretchr/testify/require"
14 )
src/go/collectors/go.d.plugin/modules/traefik/charts.go
+1 -1
@@ -5,7 +5,7 @@ package traefik
5 import (
6 "fmt"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 )
10
11 var chartTmplEntrypointRequests = module.Chart{
src/go/collectors/go.d.plugin/modules/traefik/collect.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "errors"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/prometheus"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
11 )
12
13 const (
src/go/collectors/go.d.plugin/modules/traefik/init.go
+3 -3
@@ -5,9 +5,9 @@ package traefik
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
9 - "github.com/netdata/go.d.plugin/pkg/prometheus/selector"
10 - "github.com/netdata/go.d.plugin/pkg/web"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 func (t Traefik) validateConfig() error {
src/go/collectors/go.d.plugin/modules/traefik/integrations/traefik.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/tra
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/traefik/metadata.yaml"
4 sidebar_label: "Traefik"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -93,7 +93,7 @@ The configuration file name for this integration is `go.d/traefik.conf`.
93
94
95 You can edit the configuration file using the `edit-config` script from the
96 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
96 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
97
98 ```bash
99 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/traefik/traefik.go
+3 -3
@@ -6,9 +6,9 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/prometheus"
11 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/traefik/traefik_test.go
+2 -2
@@ -8,8 +8,8 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
12 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13
14 "github.com/stretchr/testify/assert"
15 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/unbound/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10
11 "golang.org/x/text/cases"
12 "golang.org/x/text/language"
src/go/collectors/go.d.plugin/modules/unbound/init.go
+3 -3
@@ -7,9 +7,9 @@ import (
7 "errors"
8 "net"
9
10 - "github.com/netdata/go.d.plugin/modules/unbound/config"
11 - "github.com/netdata/go.d.plugin/pkg/socket"
12 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
10 + "github.com/netdata/netdata/go/go.d.plugin/modules/unbound/config"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
13 )
14
15 func (u *Unbound) initConfig() (enabled bool) {
src/go/collectors/go.d.plugin/modules/unbound/integrations/unbound.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/unb
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/unbound/metadata.yaml"
4 sidebar_label: "Unbound"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/DNS and DHCP Servers"
6 +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -160,7 +160,7 @@ The configuration file name for this integration is `go.d/unbound.conf`.
160
161
162 You can edit the configuration file using the `edit-config` script from the
163 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
163 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
164
165 ```bash
166 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/unbound/unbound.go
+4 -4
@@ -6,11 +6,11 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/pkg/socket"
10 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
11 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 )
15
16 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/unbound/unbound_test.go
+3 -3
@@ -11,10 +11,10 @@ import (
11 "strings"
12 "testing"
13
14 - "github.com/netdata/go.d.plugin/pkg/socket"
15 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
14 + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket"
15 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
16
17 - "github.com/netdata/go.d.plugin/agent/module"
17 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
18 "github.com/stretchr/testify/assert"
19 "github.com/stretchr/testify/require"
20 )
src/go/collectors/go.d.plugin/modules/upsd/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/upsd/client.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "fmt"
9 "strings"
10
11 - "github.com/netdata/go.d.plugin/pkg/socket"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket"
12 )
13
14 const (
src/go/collectors/go.d.plugin/modules/upsd/integrations/ups_nut.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ups
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/upsd/metadata.yaml"
4 sidebar_label: "UPS (NUT)"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/UPS"
6 +learn_rel_path: "Collecting Metrics/UPS"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -122,7 +122,7 @@ The configuration file name for this integration is `go.d/upsd.conf`.
122
123
124 You can edit the configuration file using the `edit-config` script from the
125 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
125 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
126
127 ```bash
128 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/upsd/upsd.go
+2 -2
@@ -5,8 +5,8 @@ package upsd
5 import (
6 "time"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
9 - "github.com/netdata/go.d.plugin/pkg/web"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
10 )
11
12 func init() {
src/go/collectors/go.d.plugin/modules/vcsa/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package vcsa
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 var (
8 vcsaHealthCharts = module.Charts{
src/go/collectors/go.d.plugin/modules/vcsa/client/client.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "net/http"
10 "sync"
11
12 - "github.com/netdata/go.d.plugin/pkg/web"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13 )
14
15 // Session: https://vmware.github.io/vsphere-automation-sdk-rest/vsphere/index.html#SVC_com.vmware.cis.session
src/go/collectors/go.d.plugin/modules/vcsa/init.go
+2 -2
@@ -5,8 +5,8 @@ package vcsa
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/modules/vcsa/client"
9 - "github.com/netdata/go.d.plugin/pkg/web"
8 + "github.com/netdata/netdata/go/go.d.plugin/modules/vcsa/client"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
10 )
11
12 func (vc *VCSA) validateConfig() error {
src/go/collectors/go.d.plugin/modules/vcsa/integrations/vcenter_server_appliance.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/vcs
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/vcsa/metadata.yaml"
4 sidebar_label: "vCenter Server Appliance"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Containers and VMs"
6 +learn_rel_path: "Collecting Metrics/Containers and VMs"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -149,7 +149,7 @@ The configuration file name for this integration is `go.d/vcsa.conf`.
149
150
151 You can edit the configuration file using the `edit-config` script from the
152 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
152 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
153
154 ```bash
155 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/vcsa/vcsa.go
+2 -2
@@ -6,9 +6,9 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 )
13
14 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/vernemq/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package vernemq
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 Charts = module.Charts
src/go/collectors/go.d.plugin/modules/vernemq/collect.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "errors"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/pkg/prometheus"
10 - "github.com/netdata/go.d.plugin/pkg/stm"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
11 )
12
13 func isValidVerneMQMetrics(pms prometheus.Series) bool {
src/go/collectors/go.d.plugin/modules/vernemq/integrations/vernemq.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ver
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/vernemq/metadata.yaml"
4 sidebar_label: "VerneMQ"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Message Brokers"
6 +learn_rel_path: "Collecting Metrics/Message Brokers"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -179,7 +179,7 @@ The configuration file name for this integration is `go.d/vernemq.conf`.
179
180
181 You can edit the configuration file using the `edit-config` script from the
182 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
182 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
183
184 ```bash
185 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/vernemq/vernemq.go
+3 -3
@@ -7,10 +7,10 @@ import (
7 "errors"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/pkg/prometheus"
11 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
12
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 )
15
16 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/vernemq/vernemq_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "os"
9 "testing"
10
11 - "github.com/netdata/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
12 "github.com/stretchr/testify/assert"
13 "github.com/stretchr/testify/require"
14 )
src/go/collectors/go.d.plugin/modules/vsphere/charts.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources"
11 )
12
13 const (
src/go/collectors/go.d.plugin/modules/vsphere/client/client.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "net/url"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
12
13 "github.com/vmware/govmomi"
14 "github.com/vmware/govmomi/performance"
src/go/collectors/go.d.plugin/modules/vsphere/client/client_test.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "testing"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
12
13 "github.com/stretchr/testify/assert"
14 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/vsphere/collect.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "fmt"
8 "time"
9
10 - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources"
10 + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources"
11
12 "github.com/vmware/govmomi/performance"
13 )
src/go/collectors/go.d.plugin/modules/vsphere/discover/build.go
+1 -1
@@ -5,7 +5,7 @@ package discover
5 import (
6 "time"
7
8 - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources"
8 + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources"
9
10 "github.com/vmware/govmomi/vim25/mo"
11 )
src/go/collectors/go.d.plugin/modules/vsphere/discover/discover.go
+3 -3
@@ -7,10 +7,10 @@ import (
7 "strings"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/modules/vsphere/match"
11 - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources"
10 + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/match"
11 + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources"
12
13 - "github.com/netdata/go.d.plugin/logger"
13 + "github.com/netdata/netdata/go/go.d.plugin/logger"
14 "github.com/vmware/govmomi/vim25/mo"
15 "github.com/vmware/govmomi/vim25/types"
16 )
src/go/collectors/go.d.plugin/modules/vsphere/discover/discover_test.go
+3 -3
@@ -8,9 +8,9 @@ import (
8 "testing"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/modules/vsphere/client"
12 - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources"
13 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
11 + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/client"
12 + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
14
15 "github.com/stretchr/testify/assert"
16 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/vsphere/discover/filter.go
+1 -1
@@ -5,7 +5,7 @@ package discover
5 import (
6 "time"
7
8 - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources"
8 + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources"
9 )
10
11 func (d Discoverer) matchHost(host *rs.Host) bool {
src/go/collectors/go.d.plugin/modules/vsphere/discover/hierarchy.go
+1 -1
@@ -5,7 +5,7 @@ package discover
5 import (
6 "time"
7
8 - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources"
8 + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources"
9 )
10
11 func (d Discoverer) setHierarchy(res *rs.Resources) error {
src/go/collectors/go.d.plugin/modules/vsphere/discover/metric_lists.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "sort"
7 "time"
8
9 - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources"
9 + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources"
10
11 "github.com/vmware/govmomi/performance"
12 "github.com/vmware/govmomi/vim25/types"
src/go/collectors/go.d.plugin/modules/vsphere/init.go
+3 -3
@@ -5,9 +5,9 @@ package vsphere
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/modules/vsphere/client"
9 - "github.com/netdata/go.d.plugin/modules/vsphere/discover"
10 - "github.com/netdata/go.d.plugin/modules/vsphere/scrape"
8 + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/client"
9 + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/discover"
10 + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/scrape"
11 )
12
13 func (vs *VSphere) validateConfig() error {
src/go/collectors/go.d.plugin/modules/vsphere/integrations/vmware_vcenter_server.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/vsp
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/vsphere/metadata.yaml"
4 sidebar_label: "VMware vCenter Server"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Containers and VMs"
6 +learn_rel_path: "Collecting Metrics/Containers and VMs"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -186,7 +186,7 @@ The configuration file name for this integration is `go.d/vsphere.conf`.
186
187
188 You can edit the configuration file using the `edit-config` script from the
189 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
189 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
190
191 ```bash
192 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/vsphere/match/match.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "fmt"
7 "strings"
8
9 - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources"
10 - "github.com/netdata/go.d.plugin/pkg/matcher"
9 + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
11 )
12
13 type HostMatcher interface {
src/go/collectors/go.d.plugin/modules/vsphere/match/match_test.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "strings"
7 "testing"
8
9 - "github.com/netdata/go.d.plugin/modules/vsphere/resources"
10 - "github.com/netdata/go.d.plugin/pkg/matcher"
9 + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
11
12 "github.com/stretchr/testify/assert"
13 )
src/go/collectors/go.d.plugin/modules/vsphere/scrape/scrape.go
+2 -2
@@ -9,9 +9,9 @@ import (
9 "sync"
10 "time"
11
12 - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources"
12 + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources"
13
14 - "github.com/netdata/go.d.plugin/logger"
14 + "github.com/netdata/netdata/go/go.d.plugin/logger"
15 "github.com/vmware/govmomi/performance"
16 "github.com/vmware/govmomi/vim25/types"
17 )
src/go/collectors/go.d.plugin/modules/vsphere/scrape/scrape_test.go
+4 -4
@@ -8,10 +8,10 @@ import (
8 "testing"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/modules/vsphere/client"
12 - "github.com/netdata/go.d.plugin/modules/vsphere/discover"
13 - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources"
14 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
11 + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/client"
12 + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/discover"
13 + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources"
14 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
15
16 "github.com/stretchr/testify/assert"
17 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/vsphere/vsphere.go
+4 -4
@@ -7,10 +7,10 @@ import (
7 "sync"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/modules/vsphere/match"
12 - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources"
13 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/match"
12 + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14
15 "github.com/vmware/govmomi/performance"
16 )
src/go/collectors/go.d.plugin/modules/vsphere/vsphere_test.go
+4 -4
@@ -7,11 +7,11 @@ import (
7 "testing"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/modules/vsphere/discover"
11 - "github.com/netdata/go.d.plugin/modules/vsphere/match"
12 - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources"
10 + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/discover"
11 + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/match"
12 + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources"
13
14 - "github.com/netdata/go.d.plugin/agent/module"
14 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
15 "github.com/stretchr/testify/assert"
16 "github.com/stretchr/testify/require"
17 "github.com/vmware/govmomi/performance"
src/go/collectors/go.d.plugin/modules/weblog/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "errors"
7 "fmt"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 type (
src/go/collectors/go.d.plugin/modules/weblog/collect.go
+3 -3
@@ -9,10 +9,10 @@ import (
9 "strconv"
10 "strings"
11
12 - "github.com/netdata/go.d.plugin/pkg/logs"
13 - "github.com/netdata/go.d.plugin/pkg/stm"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
14
15 - "github.com/netdata/go.d.plugin/agent/module"
15 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
16 )
17
18 func (w *WebLog) logPanicStackIfAny() {
src/go/collectors/go.d.plugin/modules/weblog/init.go
+2 -2
@@ -7,8 +7,8 @@ import (
7 "fmt"
8 "strings"
9
10 - "github.com/netdata/go.d.plugin/pkg/logs"
11 - "github.com/netdata/go.d.plugin/pkg/matcher"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
12 )
13
14 type pattern struct {
src/go/collectors/go.d.plugin/modules/weblog/integrations/web_server_log_files.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/web
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/weblog/metadata.yaml"
4 sidebar_label: "Web server log files"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Web Servers and Web Proxies"
6 +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -163,7 +163,7 @@ The configuration file name for this integration is `go.d/web_log.conf`.
163
164
165 You can edit the configuration file using the `edit-config` script from the
166 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
166 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
167
168 ```bash
169 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/weblog/metrics.go
+1 -1
@@ -3,7 +3,7 @@
3 package weblog
4
5 import (
6 - "github.com/netdata/go.d.plugin/pkg/metrics"
6 + "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics"
7 )
8
9 func newWebLogSummary() metrics.Summary {
src/go/collectors/go.d.plugin/modules/weblog/parser.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 "regexp"
9 "strings"
10
11 - "github.com/netdata/go.d.plugin/pkg/logs"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs"
12 )
13
14 /*
src/go/collectors/go.d.plugin/modules/weblog/parser_test.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "testing"
8
9 - "github.com/netdata/go.d.plugin/pkg/logs"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs"
10
11 "github.com/stretchr/testify/assert"
12 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/weblog/weblog.go
+2 -2
@@ -5,8 +5,8 @@ package weblog
5 import (
6 _ "embed"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
9 - "github.com/netdata/go.d.plugin/pkg/logs"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs"
10 )
11
12 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/weblog/weblog_test.go
+3 -3
@@ -11,10 +11,10 @@ import (
11 "strings"
12 "testing"
13
14 - "github.com/netdata/go.d.plugin/pkg/logs"
15 - "github.com/netdata/go.d.plugin/pkg/metrics"
14 + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs"
15 + "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics"
16
17 - "github.com/netdata/go.d.plugin/agent/module"
17 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
18 "github.com/stretchr/testify/assert"
19 "github.com/stretchr/testify/require"
20 )
src/go/collectors/go.d.plugin/modules/whoisquery/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package whoisquery
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 var baseCharts = module.Charts{
8 {
src/go/collectors/go.d.plugin/modules/whoisquery/init.go
+1 -1
@@ -5,7 +5,7 @@ package whoisquery
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 )
10
11 func (w *WhoisQuery) validateConfig() error {
src/go/collectors/go.d.plugin/modules/whoisquery/integrations/domain_expiration_date.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/who
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/whoisquery/metadata.yaml"
4 sidebar_label: "Domain expiration date"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Synthetic Checks"
6 +learn_rel_path: "Collecting Metrics/Synthetic Checks"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/whoisquery.conf`.
96
97
98 You can edit the configuration file using the `edit-config` script from the
99 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
99 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
100
101 ```bash
102 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/whoisquery/whoisquery.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/windows/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/windows/collect.go
+1 -1
@@ -3,7 +3,7 @@
3 package windows
4
5 import (
6 - "github.com/netdata/go.d.plugin/pkg/prometheus"
6 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
7 )
8
9 const precision = 1000
src/go/collectors/go.d.plugin/modules/windows/collect_ad.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package windows
4
5 -import "github.com/netdata/go.d.plugin/pkg/prometheus"
5 +import "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
6
7 // Windows exporter:
8 // https://github.com/prometheus-community/windows_exporter/blob/master/docs/collector.ad.md
src/go/collectors/go.d.plugin/modules/windows/collect_adcs.go
+1 -1
@@ -5,7 +5,7 @@ package windows
5 import (
6 "strings"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 )
10
11 const (
src/go/collectors/go.d.plugin/modules/windows/collect_adfs.go
+1 -1
@@ -5,7 +5,7 @@ package windows
5 import (
6 "strings"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 )
10
11 const (
src/go/collectors/go.d.plugin/modules/windows/collect_collector.go
+1 -1
@@ -3,7 +3,7 @@
3 package windows
4
5 import (
6 - "github.com/netdata/go.d.plugin/pkg/prometheus"
6 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
7 )
8
9 const (
src/go/collectors/go.d.plugin/modules/windows/collect_cpu.go
+1 -1
@@ -3,7 +3,7 @@
3 package windows
4
5 import (
6 - "github.com/netdata/go.d.plugin/pkg/prometheus"
6 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
7 )
8
9 const (
src/go/collectors/go.d.plugin/modules/windows/collect_exchange.go
+1 -1
@@ -5,7 +5,7 @@ package windows
5 import (
6 "strings"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 )
10
11 const (
src/go/collectors/go.d.plugin/modules/windows/collect_hyperv.go
+1 -1
@@ -5,7 +5,7 @@ package windows
5 import (
6 "strings"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 )
10
11 const (
src/go/collectors/go.d.plugin/modules/windows/collect_iis.go
+1 -1
@@ -5,7 +5,7 @@ package windows
5 import (
6 "strings"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 )
10
11 const (
src/go/collectors/go.d.plugin/modules/windows/collect_logical_disk.go
+1 -1
@@ -5,7 +5,7 @@ package windows
5 import (
6 "strings"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 )
10
11 const (
src/go/collectors/go.d.plugin/modules/windows/collect_logon.go
+1 -1
@@ -3,7 +3,7 @@
3 package windows
4
5 import (
6 - "github.com/netdata/go.d.plugin/pkg/prometheus"
6 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
7 )
8
9 const (
src/go/collectors/go.d.plugin/modules/windows/collect_memory.go
+1 -1
@@ -3,7 +3,7 @@
3 package windows
4
5 import (
6 - "github.com/netdata/go.d.plugin/pkg/prometheus"
6 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
7 )
8
9 const (
src/go/collectors/go.d.plugin/modules/windows/collect_mssql.go
+1 -1
@@ -5,7 +5,7 @@ package windows
5 import (
6 "strings"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 )
10
11 const (
src/go/collectors/go.d.plugin/modules/windows/collect_net.go
+1 -1
@@ -5,7 +5,7 @@ package windows
5 import (
6 "strings"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 )
10
11 const (
src/go/collectors/go.d.plugin/modules/windows/collect_netframework.go
+1 -1
@@ -3,7 +3,7 @@
3 package windows
4
5 import (
6 - "github.com/netdata/go.d.plugin/pkg/prometheus"
6 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
7 )
8
9 const (
src/go/collectors/go.d.plugin/modules/windows/collect_os.go
+1 -1
@@ -3,7 +3,7 @@
3 package windows
4
5 import (
6 - "github.com/netdata/go.d.plugin/pkg/prometheus"
6 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
7 )
8
9 const (
src/go/collectors/go.d.plugin/modules/windows/collect_process.go
+1 -1
@@ -5,7 +5,7 @@ package windows
5 import (
6 "strings"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 )
10
11 const (
src/go/collectors/go.d.plugin/modules/windows/collect_service.go
+1 -1
@@ -5,7 +5,7 @@ package windows
5 import (
6 "strings"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 )
10
11 const (
src/go/collectors/go.d.plugin/modules/windows/collect_system.go
+1 -1
@@ -5,7 +5,7 @@ package windows
5 import (
6 "time"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 )
10
11 const (
src/go/collectors/go.d.plugin/modules/windows/collect_tcp.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package windows
4
5 -import "github.com/netdata/go.d.plugin/pkg/prometheus"
5 +import "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
6
7 const (
8 metricTCPConnectionFailure = "windows_tcp_connection_failures_total"
src/go/collectors/go.d.plugin/modules/windows/collect_thermalzone.go
+1 -1
@@ -5,7 +5,7 @@ package windows
5 import (
6 "strings"
7
8 - "github.com/netdata/go.d.plugin/pkg/prometheus"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
9 )
10
11 const (
src/go/collectors/go.d.plugin/modules/windows/init.go
+2 -2
@@ -6,8 +6,8 @@ import (
6 "errors"
7 "net/http"
8
9 - "github.com/netdata/go.d.plugin/pkg/prometheus"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11 )
12
13 func (w *Windows) validateConfig() error {
src/go/collectors/go.d.plugin/modules/windows/integrations/active_directory.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/win
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/windows/metadata.yaml"
4 sidebar_label: "Active Directory"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Windows Systems"
6 +learn_rel_path: "Collecting Metrics/Windows Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -652,7 +652,7 @@ The configuration file name for this integration is `go.d/windows.conf`.
652
653
654 You can edit the configuration file using the `edit-config` script from the
655 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
655 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
656
657 ```bash
658 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/windows/integrations/hyperv.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/win
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/windows/metadata.yaml"
4 sidebar_label: "HyperV"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Windows Systems"
6 +learn_rel_path: "Collecting Metrics/Windows Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -652,7 +652,7 @@ The configuration file name for this integration is `go.d/windows.conf`.
652
653
654 You can edit the configuration file using the `edit-config` script from the
655 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
655 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
656
657 ```bash
658 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/windows/integrations/ms_exchange.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/win
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/windows/metadata.yaml"
4 sidebar_label: "MS Exchange"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Windows Systems"
6 +learn_rel_path: "Collecting Metrics/Windows Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -652,7 +652,7 @@ The configuration file name for this integration is `go.d/windows.conf`.
652
653
654 You can edit the configuration file using the `edit-config` script from the
655 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
655 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
656
657 ```bash
658 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/windows/integrations/ms_sql_server.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/win
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/windows/metadata.yaml"
4 sidebar_label: "MS SQL Server"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Windows Systems"
6 +learn_rel_path: "Collecting Metrics/Windows Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -652,7 +652,7 @@ The configuration file name for this integration is `go.d/windows.conf`.
652
653
654 You can edit the configuration file using the `edit-config` script from the
655 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
655 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
656
657 ```bash
658 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/windows/integrations/net_framework.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/win
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/windows/metadata.yaml"
4 sidebar_label: "NET Framework"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Windows Systems"
6 +learn_rel_path: "Collecting Metrics/Windows Systems"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -652,7 +652,7 @@ The configuration file name for this integration is `go.d/windows.conf`.
652
653
654 You can edit the configuration file using the `edit-config` script from the
655 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
655 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
656
657 ```bash
658 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/windows/integrations/windows.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/win
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/windows/metadata.yaml"
4 sidebar_label: "Windows"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Windows Systems"
6 +learn_rel_path: "Collecting Metrics/Windows Systems"
7 most_popular: True
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -652,7 +652,7 @@ The configuration file name for this integration is `go.d/windows.conf`.
652
653
654 You can edit the configuration file using the `edit-config` script from the
655 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
655 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
656
657 ```bash
658 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/windows/windows.go
+3 -3
@@ -7,9 +7,9 @@ import (
7 "net/http"
8 "time"
9
10 - "github.com/netdata/go.d.plugin/agent/module"
11 - "github.com/netdata/go.d.plugin/pkg/prometheus"
12 - "github.com/netdata/go.d.plugin/pkg/web"
10 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
13 )
14
15 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/windows/windows_test.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "strings"
11 "testing"
12
13 - "github.com/netdata/go.d.plugin/pkg/web"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14
15 "github.com/stretchr/testify/assert"
16 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/wireguard/charts.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "strings"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10 )
11
12 const (
src/go/collectors/go.d.plugin/modules/wireguard/integrations/wireguard.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/wir
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/wireguard/metadata.yaml"
4 sidebar_label: "WireGuard"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/VPNs"
6 +learn_rel_path: "Collecting Metrics/VPNs"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -115,7 +115,7 @@ The configuration file name for this integration is `go.d/wireguard.conf`.
115
116
117 You can edit the configuration file using the `edit-config` script from the
118 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
118 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
119
120 ```bash
121 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/wireguard/wireguard.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/agent/module"
9 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
10
11 "golang.zx2c4.com/wireguard/wgctrl"
12 "golang.zx2c4.com/wireguard/wgctrl/wgtypes"
src/go/collectors/go.d.plugin/modules/wireguard/wireguard_test.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "testing"
10 "time"
11
12 - "github.com/netdata/go.d.plugin/agent/module"
12 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
13
14 "github.com/stretchr/testify/assert"
15 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/x509check/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package x509check
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 var (
8 baseCharts = module.Charts{
src/go/collectors/go.d.plugin/modules/x509check/init.go
+1 -1
@@ -5,7 +5,7 @@ package x509check
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/agent/module"
8 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
9 )
10
11 func (x *X509Check) validateConfig() error {
src/go/collectors/go.d.plugin/modules/x509check/integrations/x.509_certificate.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/x50
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/x509check/metadata.yaml"
4 sidebar_label: "X.509 certificate"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Synthetic Checks"
6 +learn_rel_path: "Collecting Metrics/Synthetic Checks"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -98,7 +98,7 @@ The configuration file name for this integration is `go.d/x509check.conf`.
98
99
100 You can edit the configuration file using the `edit-config` script from the
101 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
101 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
102
103 ```bash
104 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/x509check/provider.go
+1 -1
@@ -13,7 +13,7 @@ import (
13 "os"
14 "time"
15
16 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
16 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
17 )
18
19 type provider interface {
src/go/collectors/go.d.plugin/modules/x509check/x509check.go
+3 -3
@@ -6,11 +6,11 @@ import (
6 _ "embed"
7 "time"
8
9 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
10 - "github.com/netdata/go.d.plugin/pkg/web"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
11
12 cfssllog "github.com/cloudflare/cfssl/log"
13 - "github.com/netdata/go.d.plugin/agent/module"
13 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
14 )
15
16 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/modules/x509check/x509check_test.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "errors"
8 "testing"
9
10 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
11
12 "github.com/stretchr/testify/assert"
13 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/modules/zookeeper/charts.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package zookeeper
4
5 -import "github.com/netdata/go.d.plugin/agent/module"
5 +import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
6
7 type (
8 Charts = module.Charts
src/go/collectors/go.d.plugin/modules/zookeeper/fetcher.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "fmt"
8 "unsafe"
9
10 - "github.com/netdata/go.d.plugin/pkg/socket"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket"
11 )
12
13 const limitReadLines = 2000
src/go/collectors/go.d.plugin/modules/zookeeper/fetcher_test.go
+1 -1
@@ -5,7 +5,7 @@ package zookeeper
5 import (
6 "testing"
7
8 - "github.com/netdata/go.d.plugin/pkg/socket"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket"
9 "github.com/stretchr/testify/assert"
10 )
11
src/go/collectors/go.d.plugin/modules/zookeeper/integrations/zookeeper.md
+2 -2
@@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/zoo
3 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/zookeeper/metadata.yaml"
4 sidebar_label: "ZooKeeper"
5 learn_status: "Published"
6 -learn_rel_path: "Data Collection/Service Discovery / Registry"
6 +learn_rel_path: "Collecting Metrics/Service Discovery / Registry"
7 most_popular: False
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 endmeta-->
@@ -105,7 +105,7 @@ The configuration file name for this integration is `go.d/zookeeper.conf`.
105
106
107 You can edit the configuration file using the `edit-config` script from the
108 -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory).
108 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
109
110 ```bash
111 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
src/go/collectors/go.d.plugin/modules/zookeeper/zookeeper.go
+4 -4
@@ -8,11 +8,11 @@ import (
8 "fmt"
9 "time"
10
11 - "github.com/netdata/go.d.plugin/pkg/socket"
12 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
13 - "github.com/netdata/go.d.plugin/pkg/web"
11 + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
13 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
14
15 - "github.com/netdata/go.d.plugin/agent/module"
15 + "github.com/netdata/netdata/go/go.d.plugin/agent/module"
16 )
17
18 //go:embed "config_schema.json"
src/go/collectors/go.d.plugin/pkg/logs/reader.go
+1 -1
@@ -10,7 +10,7 @@ import (
10 "path/filepath"
11 "sort"
12
13 - "github.com/netdata/go.d.plugin/logger"
13 + "github.com/netdata/netdata/go/go.d.plugin/logger"
14 )
15
16 const (
src/go/collectors/go.d.plugin/pkg/matcher/doc_test.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package matcher_test
4
5 -import "github.com/netdata/go.d.plugin/pkg/matcher"
5 +import "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
6
7 func ExampleNew_string_format() {
8 // create a string matcher, which perform full text match
src/go/collectors/go.d.plugin/pkg/metrics/counter.go
+1 -1
@@ -5,7 +5,7 @@ package metrics
5 import (
6 "errors"
7
8 - "github.com/netdata/go.d.plugin/pkg/stm"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
9 )
10
11 type (
src/go/collectors/go.d.plugin/pkg/metrics/gauge.go
+1 -1
@@ -5,7 +5,7 @@ package metrics
5 import (
6 "time"
7
8 - "github.com/netdata/go.d.plugin/pkg/stm"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
9 )
10
11 type (
src/go/collectors/go.d.plugin/pkg/metrics/histogram.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "sort"
8
9 - "github.com/netdata/go.d.plugin/pkg/stm"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
10 )
11
12 type (
src/go/collectors/go.d.plugin/pkg/metrics/metrics.go
+1 -1
@@ -2,7 +2,7 @@
2
3 package metrics
4
5 -import "github.com/netdata/go.d.plugin/pkg/stm"
5 +import "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
6
7 // Observer is an interface that wraps the Observe method, which is used by
8 // Histogram and Summary to add observations.
src/go/collectors/go.d.plugin/pkg/metrics/summary.go
+1 -1
@@ -5,7 +5,7 @@ package metrics
5 import (
6 "math"
7
8 - "github.com/netdata/go.d.plugin/pkg/stm"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
9 )
10
11 type (
src/go/collectors/go.d.plugin/pkg/metrics/unique_counter.go
+1 -1
@@ -4,7 +4,7 @@ package metrics
4
5 import (
6 "github.com/axiomhq/hyperloglog"
7 - "github.com/netdata/go.d.plugin/pkg/stm"
7 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
8 )
9
10 type (
src/go/collectors/go.d.plugin/pkg/prometheus/client.go
+2 -2
@@ -13,8 +13,8 @@ import (
13 "os"
14 "path/filepath"
15
16 - "github.com/netdata/go.d.plugin/pkg/prometheus/selector"
17 - "github.com/netdata/go.d.plugin/pkg/web"
16 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector"
17 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
18 )
19
20 type (
src/go/collectors/go.d.plugin/pkg/prometheus/client_test.go
+2 -2
@@ -11,8 +11,8 @@ import (
11 "strings"
12 "testing"
13
14 - "github.com/netdata/go.d.plugin/pkg/prometheus/selector"
15 - "github.com/netdata/go.d.plugin/pkg/web"
14 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector"
15 + "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
16
17 "github.com/stretchr/testify/assert"
18 "github.com/stretchr/testify/require"
src/go/collectors/go.d.plugin/pkg/prometheus/parse.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "strconv"
8 "strings"
9
10 - "github.com/netdata/go.d.plugin/pkg/prometheus/selector"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector"
11
12 "github.com/prometheus/prometheus/model/labels"
13 "github.com/prometheus/prometheus/model/textparse"
src/go/collectors/go.d.plugin/pkg/prometheus/parse_test.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "os"
8 "testing"
9
10 - "github.com/netdata/go.d.plugin/pkg/prometheus/selector"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector"
11
12 "github.com/prometheus/prometheus/model/labels"
13 "github.com/prometheus/prometheus/model/textparse"
src/go/collectors/go.d.plugin/pkg/prometheus/selector/parse.go
+1 -1
@@ -7,7 +7,7 @@ import (
7 "regexp"
8 "strings"
9
10 - "github.com/netdata/go.d.plugin/pkg/matcher"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
11 )
12
13 var (
src/go/collectors/go.d.plugin/pkg/prometheus/selector/parse_test.go
+1 -1
@@ -6,7 +6,7 @@ import (
6 "fmt"
7 "testing"
8
9 - "github.com/netdata/go.d.plugin/pkg/matcher"
9 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
10
11 "github.com/prometheus/prometheus/model/labels"
12 "github.com/stretchr/testify/assert"
src/go/collectors/go.d.plugin/pkg/prometheus/selector/selector.go
+1 -1
@@ -3,7 +3,7 @@
3 package selector
4
5 import (
6 - "github.com/netdata/go.d.plugin/pkg/matcher"
6 + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
7
8 "github.com/prometheus/prometheus/model/labels"
9 )
src/go/collectors/go.d.plugin/pkg/stm/stm_test.go
+2 -2
@@ -5,9 +5,9 @@ package stm_test
5 import (
6 "testing"
7
8 - "github.com/netdata/go.d.plugin/pkg/stm"
8 + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm"
9
10 - "github.com/netdata/go.d.plugin/pkg/metrics"
10 + "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics"
11
12 "github.com/stretchr/testify/assert"
13 )
src/go/collectors/go.d.plugin/pkg/web/client.go
+1 -1
@@ -9,7 +9,7 @@ import (
9 "net/http"
10 "net/url"
11
12 - "github.com/netdata/go.d.plugin/pkg/tlscfg"
12 + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg"
13 )
14
15 // ErrRedirectAttempted indicates that a redirect occurred.