diff --git a/.github/workflows/generate-integrations.yml b/.github/workflows/generate-integrations.yml index 2c6c5c8c84..f7d4df866d 100644 --- a/.github/workflows/generate-integrations.yml +++ b/.github/workflows/generate-integrations.yml @@ -7,6 +7,7 @@ on: - master paths: # If any of these files change, we need to regenerate integrations.js. - 'src/collectors/**/metadata.yaml' + - 'src/go/collectors/**/metadata.yaml' - 'src/exporting/**/metadata.yaml' - 'src/health/notifications/**/metadata.yaml' - 'integrations/templates/**' @@ -14,7 +15,6 @@ on: - 'integrations/deploy.yaml' - 'integrations/cloud-notifications/metadata.yaml' - 'integrations/gen_integrations.py' - - 'packaging/go.d.version' workflow_dispatch: null concurrency: # This keeps multiple instances of the job from running concurrently for the same ref. group: integrations-${{ github.ref }} @@ -31,17 +31,6 @@ jobs: with: fetch-depth: 1 submodules: recursive - - name: Get Go Ref - id: get-go-ref - run: echo "go_ref=$(cat packaging/go.d.version)" >> "${GITHUB_ENV}" - - name: Checkout Go - id: checkout-go - uses: actions/checkout@v4 - with: - fetch-depth: 1 - path: go.d.plugin - repository: netdata/go.d.plugin - ref: ${{ env.go_ref }} - name: Prepare Dependencies id: prep-deps run: | diff --git a/CMakeLists.txt b/CMakeLists.txt index c703309513..4fce843857 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -47,12 +47,14 @@ else() message(FATAL_ERROR "Wrong version regex match count ${CMAKE_MATCH_COUNT} (should be in 3, 4 or 5)") endif() +set(NETDATA_VERSION ${FIELD_MAJOR}.${FIELD_MINOR}.${FIELD_PATCH}.${FIELD_TWEAK}) + # # project # project(netdata - VERSION ${FIELD_MAJOR}.${FIELD_MINOR}.${FIELD_PATCH}.${FIELD_TWEAK} + VERSION ${NETDATA_VERSION} DESCRIPTION "Netdata real-time monitoring" HOMEPAGE_URL "https://www.netdata.cloud" LANGUAGES C CXX) @@ -98,20 +100,21 @@ option(ENABLE_ML "enable machine learning" True) option(ENABLE_H2O "enable h2o" True) option(ENABLE_DBENGINE "enable dbengine" True) -option(ENABLE_PLUGIN_DEBUGFS "enable debugfs.plugin" True) option(ENABLE_PLUGIN_APPS "enable apps.plugin" True) +option(ENABLE_PLUGIN_CGROUP_NETWORK "enable cgroup-network plugin" True) +option(ENABLE_PLUGIN_CUPS "enable cups.plugin" True) +option(ENABLE_PLUGIN_DEBUGFS "enable debugfs.plugin" True) +option(ENABLE_PLUGIN_EBPF "enable ebpf.plugin" True) option(ENABLE_PLUGIN_FREEIPMI "enable freeipmi.plugin" True) +option(ENABLE_PLUGIN_GO "enable go.d.plugin" True) +option(ENABLE_PLUGIN_LOCAL_LISTENERS "enable local-listeners" True) +option(ENABLE_PLUGIN_LOGS_MANAGEMENT "enable logs-management.plugin" True) +option(ENABLE_PLUGIN_NETWORK_VIEWER "enable network-viewer" True) option(ENABLE_PLUGIN_NFACCT "enable nfacct.plugin" True) -option(ENABLE_PLUGIN_XENSTAT "enable xenstat.plugin" True) option(ENABLE_PLUGIN_PERF "enable perf.plugin" True) option(ENABLE_PLUGIN_SLABINFO "enable slabinfo.plugin" True) -option(ENABLE_PLUGIN_CUPS "enable cups.plugin" True) -option(ENABLE_PLUGIN_CGROUP_NETWORK "enable cgroup-network plugin" True) -option(ENABLE_PLUGIN_EBPF "enable ebpf.plugin" True) -option(ENABLE_PLUGIN_LOCAL_LISTENERS "enable local-listeners" True) -option(ENABLE_PLUGIN_NETWORK_VIEWER "enable network-viewer" True) option(ENABLE_PLUGIN_SYSTEMD_JOURNAL "enable systemd-journal.plugin" True) -option(ENABLE_PLUGIN_LOGS_MANAGEMENT "enable logs-management.plugin" True) +option(ENABLE_PLUGIN_XENSTAT "enable xenstat.plugin" True) option(ENABLE_EXPORTER_PROMETHEUS_REMOTE_WRITE "enable prometheus remote write exporter" True) option(ENABLE_EXPORTER_MONGODB "enable mongodb exporter" True) @@ -125,6 +128,14 @@ option(ENABLE_LOGS_MANAGEMENT_TESTS "enable logs management tests" True) option(ENABLE_SENTRY "enable sentry" False) option(ENABLE_WEBRTC "enable webrtc" False) +if(ENABLE_PLUGIN_GO) + include(NetdataGoTools) + + find_min_go_version("${CMAKE_SOURCE_DIR}/src/go") + + find_package(Go "${MIN_GO_VERSION}" REQUIRED) +endif() + if(ENABLE_SENTRY) include(FetchContent) @@ -2134,6 +2145,18 @@ install(TARGETS netdatacli COMPONENT netdatacli DESTINATION usr/sbin) +# +# Build go.d.plugin +# + +if(ENABLE_PLUGIN_GO) + add_go_target(go-plugin go.d.plugin src/go/collectors/go.d.plugin cmd/godplugin) + + install(PROGRAMS ${CMAKE_BINARY_DIR}/go.d.plugin + COMPONENT go.d.plugin + DESTINATION usr/libexec/netdata/plugins.d) +endif() + # # Generate config file # @@ -2641,6 +2664,23 @@ if (ENABLE_PLUGIN_LOGS_MANAGEMENT) DESTINATION usr/lib/netdata/conf.d) endif() +# +# go.d.plugin +# +if(ENABLE_PLUGIN_GO) + install(FILES src/go/collectors/go.d.plugin/config/go.d.conf + COMPONENT go.d.plugin + DESTINATION usr/lib/netdata/conf.d) + install(DIRECTORY + COMPONENT go.d.plugin + DESTINATION usr/lib/netdata/conf.d/go.d) + + file(GLOB GO_CONF_FILES src/go/collectors/go.d.plugin/config/go.d/*.conf) + install(FILES ${GO_CONF_FILES} + COMPONENT go.d.plugin + DESTINATION usr/lib/netdata/conf.d/go.d) +endif() + # # dashboard # diff --git a/contrib/debian/control b/contrib/debian/control index b48efdf93e..f513b7eef3 100644 --- a/contrib/debian/control +++ b/contrib/debian/control @@ -5,6 +5,7 @@ Build-Depends: debhelper (>= 10), cmake, curl, flex, + golang (>= 1.21), libcups2-dev, libcurl4-openssl-dev, libelf-dev, diff --git a/contrib/debian/rules b/contrib/debian/rules index 4d56ee371f..722d607598 100755 --- a/contrib/debian/rules +++ b/contrib/debian/rules @@ -83,12 +83,13 @@ override_dh_auto_configure: -DENABLE_PLUGIN_DEBUGFS=On \ $(EBPF_CONFIG) \ -DENABLE_PLUGIN_FREEIPMI=On \ + -DENABLE_PLUGIN_GO=On \ -DENABLE_PLUGIN_LOCAL_LISTENERS=On \ + -DENABLE_PLUGIN_LOGS_MANAGEMENT=On \ -DENABLE_PLUGIN_NFACCT=On \ -DENABLE_PLUGIN_PERF=On \ -DENABLE_PLUGIN_SLABINFO=On \ -DENABLE_PLUGIN_SYSTEMD_JOURNAL=On \ - -DENABLE_PLUGIN_LOGS_MANAGEMENT=On \ $(XENSTAT_CONFIG) \ -DENABLE_EXPORTER_PROMETHEUS_REMOTE_WRITE=On \ -DENABLE_EXPORTER_MONGODB=On \ @@ -210,6 +211,17 @@ override_dh_install: $(TOP)-plugin-xenstat/usr/libexec/netdata/plugins.d/xenstat.plugin; \ fi + # Install go to it's own package directory + # + mkdir -p $(TOP)-plugin-go/usr/libexec/netdata/plugins.d + mv -f $(TEMPTOP)/usr/libexec/netdata/plugins.d/go.d.plugin \ + $(TOP)-plugin-go/usr/libexec/netdata/plugins.d/go.d.plugin + mkdir -p $(TOP)-plugin-go/usr/lib/netdata/conf.d + mv -f $(TEMPTOP)/usr/lib/netdata/conf.d/go.d.conf \ + $(TOP)-plugin-go/usr/lib/netdata/conf.d/go.d.conf + mv -f $(TEMPTOP)/usr/lib/netdata/conf.d/go.d \ + $(TOP)-plugin-go/usr/lib/netdata/conf.d/go.d + # Set the rest of the software in the main package # cp -rp $(TEMPTOP)/usr $(TOP) @@ -230,13 +242,6 @@ override_dh_install: packaging/bundle-ebpf.sh . ${TOP}-ebpf-code-legacy/usr/libexec/netdata/plugins.d/ force; \ fi - # Install go to it's own package directory - # - mkdir -p $(TOP)-plugin-go/usr/lib/netdata/conf.d - mkdir -p $(TOP)-plugin-go/usr/libexec/netdata/plugins.d - debian/install_go.sh $$(cat ${CURDIR}/packaging/go.d.version) \ - $(TOP)-plugin-go/usr/lib/netdata \ - $(TOP)-plugin-go/usr/libexec/netdata override_dh_installdocs: dh_installdocs diff --git a/integrations/gen_docs_integrations.py b/integrations/gen_docs_integrations.py index b52500bdda..caceb9cc9c 100644 --- a/integrations/gen_docs_integrations.py +++ b/integrations/gen_docs_integrations.py @@ -5,30 +5,26 @@ import re # Dictionary responsible for making the symbolic links at the end of the script's run. symlink_dict = {} -am_i_inside_go = "go.d.plugin" in str(Path.cwd()) def cleanup(): """ clean directories that are either data collection or exporting integrations """ - if am_i_inside_go: - for element in Path("modules").glob('**/*/'): - if "integrations" in str(element): - shutil.rmtree(element) - else: - for element in Path("src/collectors").glob('**/*/'): - # print(element) - if "integrations" in str(element): - shutil.rmtree(element) - - for element in Path("src/exporting").glob('**/*/'): - if "integrations" in str(element): - shutil.rmtree(element) - for element in Path("integrations/cloud-notifications").glob('**/*/'): - if "integrations" in str(element) and not "metadata.yaml" in str(element): - shutil.rmtree(element) + for element in Path("src/go/collectors/go.d.plugin/modules").glob('**/*/'): + if "integrations" in str(element): + shutil.rmtree(element) + for element in Path("src/collectors").glob('**/*/'): + # print(element) + if "integrations" in str(element): + shutil.rmtree(element) + for element in Path("src/exporting").glob('**/*/'): + if "integrations" in str(element): + shutil.rmtree(element) + for element in Path("integrations/cloud-notifications").glob('**/*/'): + if "integrations" in str(element) and not "metadata.yaml" in str(element): + shutil.rmtree(element) def generate_category_from_name(category_fragment, category_array): """ @@ -368,7 +364,7 @@ for integration in integrations: path = build_path(meta_yaml) write_to_file(path, md, meta_yaml, sidebar_label, community) - elif not am_i_inside_go: + else: # kind of specific if clause, so we can avoid running excessive code in the go repo if integration['integration_type'] == "exporter": diff --git a/integrations/gen_integrations.py b/integrations/gen_integrations.py index 938ae735cc..2b188b630f 100755 --- a/integrations/gen_integrations.py +++ b/integrations/gen_integrations.py @@ -14,7 +14,6 @@ from referencing.jsonschema import DRAFT7 from ruamel.yaml import YAML, YAMLError AGENT_REPO = 'netdata/netdata' -GO_REPO = 'netdata/go.d.plugin' INTEGRATIONS_PATH = Path(__file__).parent TEMPLATE_PATH = INTEGRATIONS_PATH / 'templates' @@ -23,7 +22,6 @@ JSON_PATH = INTEGRATIONS_PATH / 'integrations.json' CATEGORIES_FILE = INTEGRATIONS_PATH / 'categories.yaml' REPO_PATH = INTEGRATIONS_PATH.parent SCHEMA_PATH = INTEGRATIONS_PATH / 'schemas' -GO_REPO_PATH = REPO_PATH / 'go.d.plugin' DISTROS_FILE = REPO_PATH / '.github' / 'data' / 'distros.yml' METADATA_PATTERN = '*/metadata.yaml' @@ -31,7 +29,7 @@ COLLECTOR_SOURCES = [ (AGENT_REPO, REPO_PATH / 'src' / 'collectors', True), (AGENT_REPO, REPO_PATH / 'src' / 'collectors' / 'charts.d.plugin', True), (AGENT_REPO, REPO_PATH / 'src' / 'collectors' / 'python.d.plugin', True), - (GO_REPO, GO_REPO_PATH / 'modules', True), + (AGENT_REPO, REPO_PATH / 'src' / 'go' / 'collectors' / 'go.d.plugin' / 'modules', True), ] DEPLOY_SOURCES = [ @@ -399,10 +397,7 @@ def make_id(meta): def make_edit_link(item): - if item['_repo'] == 'netdata/go.d.plugin': - item_path = item['_src_path'].relative_to(GO_REPO_PATH) - else: - item_path = item['_src_path'].relative_to(REPO_PATH) + item_path = item['_src_path'].relative_to(REPO_PATH) return f'https://github.com/{ item["_repo"] }/blob/master/{ item_path }' diff --git a/netdata-installer.sh b/netdata-installer.sh index 7735487854..dd7b18bcbc 100755 --- a/netdata-installer.sh +++ b/netdata-installer.sh @@ -102,10 +102,6 @@ print_deferred_errors() { fi } -download_go() { - download_file "${1}" "${2}" "go.d plugin" "go" -} - # make sure we save all commands we run # Variable is used by code in the packaging/installer/functions.sh # shellcheck disable=SC2034 @@ -205,7 +201,6 @@ USAGE: ${PROGRAM} [options] This results in less frequent updates. --nightly-channel Use most recent nightly updates instead of GitHub releases. This results in more frequent updates. - --disable-go Disable installation of go.d.plugin. --disable-ebpf Disable eBPF Kernel plugin. Default: enabled. --disable-cloud Disable all Netdata Cloud functionality. --require-cloud Fail the install if it can't build Netdata Cloud support. @@ -214,6 +209,9 @@ USAGE: ${PROGRAM} [options] --disable-plugin-freeipmi Explicitly disable the FreeIPMI plugin. --disable-https Explicitly disable TLS support. --disable-dbengine Explicitly disable DB engine support. + --enable-plugin-go Enable the Go plugin. Default: Enabled when possible. + --disable-plugin-go Disable the Go plugin. + --disable-go Equivalent to --disable-go-plugin --enable-plugin-nfacct Enable nfacct plugin. Default: enable it when libmnl and libnetfilter_acct are available. --disable-plugin-nfacct Explicitly disable the nfacct plugin. --enable-plugin-xenstat Enable the xenstat plugin. Default: enable it when libxenstat and libyajl are available. @@ -254,6 +252,7 @@ LIBS_ARE_HERE=0 NETDATA_ENABLE_ML="" ENABLE_DBENGINE=1 ENABLE_EBPF=1 +ENABLE_GO=1 ENABLE_H2O=1 ENABLE_CLOUD=1 ENABLE_LOGS_MANAGEMENT=1 @@ -284,6 +283,9 @@ while [ -n "${1}" ]; do ENABLE_CLOUD=0 ;; "--disable-dbengine") ENABLE_DBENGINE=0 ;; + "--enable-plugin-go") ENABLE_GO=1 ;; + "--disable-plugin-go") ENABLE_GO=0 ;; + "--disable-go") ENABLE_GO=0 ;; "--enable-plugin-nfacct") ENABLE_NFACCT=1 ;; "--disable-plugin-nfacct") ENABLE_NFACCT=0 ;; "--enable-plugin-xenstat") ENABLE_XENSTAT=1 ;; @@ -321,7 +323,6 @@ while [ -n "${1}" ]; do # XXX: No longer supported. ;; "--disable-telemetry") NETDATA_DISABLE_TELEMETRY=1 ;; - "--disable-go") NETDATA_DISABLE_GO=1 ;; "--enable-ebpf") ENABLE_EBPF=1 NETDATA_DISABLE_EBPF=0 @@ -1039,6 +1040,18 @@ bundle_fluentbit() { bundle_fluentbit +# ----------------------------------------------------------------------------- +# If we’re installing the Go plugin, ensure a working Go toolchain is installed. +if [ "${ENABLE_GO}" -eq 1 ]; then + progress "Checking for a usable Go toolchain and attempting to install one to /usr/local/go if needed." + . "${NETDATA_SOURCE_DIR}/packaging/check-for-go-toolchain.sh" + + if ! ensure_go_toolchain; then + warning "Go ${GOLANG_MIN_VERSION} needed to build Go plugin, but could not find or install a usable toolchain: ${GOLANG_FAILURE_REASON}" + ENABLE_GO=0 + fi +fi + # ----------------------------------------------------------------------------- # If we have the dashboard switching logic, make sure we're on the classic # dashboard during the install (updates don't work correctly otherwise). @@ -1429,6 +1442,22 @@ if [ "$(id -u)" -eq 0 ]; then run chmod 4750 "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/ndsudo" fi + if [ -f "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin" ]; then + run chown "root:${NETDATA_GROUP}" "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin" + capabilities=1 + if ! iscontainer && command -v setcap 1> /dev/null 2>&1; then + run chmod 0750 "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin" + 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 + capabilities=0 + fi + fi + + if [ $capabilities -eq 0 ]; then + # fix go.d.plugin to be setuid to root + run chmod 4750 "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin" + fi + fi + else # non-privileged user installation run chown "${NETDATA_USER}:${NETDATA_GROUP}" "${NETDATA_LOG_DIR}" @@ -1439,167 +1468,6 @@ fi [ -n "${GITHUB_ACTIONS}" ] && echo "::endgroup::" -# ----------------------------------------------------------------------------- - -# govercomp compares go.d.plugin versions. Exit codes: -# 0 - version1 == version2 -# 1 - version1 > version2 -# 2 - version2 > version1 -# 3 - error - -# shellcheck disable=SC2086 -govercomp() { - # version in file: - # - v0.14.0 - # - # 'go.d.plugin -v' output variants: - # - go.d.plugin, version: unknown - # - go.d.plugin, version: v0.14.1 - # - go.d.plugin, version: v0.14.1-dirty - # - go.d.plugin, version: v0.14.1-1-g4c5f98c - # - go.d.plugin, version: v0.14.1-1-g4c5f98c-dirty - - # we need to compare only MAJOR.MINOR.PATCH part - ver1=$(echo "$1" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+") - ver2=$(echo "$2" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+") - - if [ ${#ver1} -eq 0 ] || [ ${#ver2} -eq 0 ]; then - return 3 - fi - - num1=$(echo $ver1 | grep -o -E '\.' | wc -l) - num2=$(echo $ver2 | grep -o -E '\.' | wc -l) - - if [ ${num1} -ne ${num2} ]; then - return 3 - fi - - for i in $(seq 1 $((num1+1))); do - x=$(echo $ver1 | cut -d'.' -f$i) - y=$(echo $ver2 | cut -d'.' -f$i) - if [ "${x}" -gt "${y}" ]; then - return 1 - elif [ "${y}" -gt "${x}" ]; then - return 2 - fi - done - - return 0 -} - -should_install_go() { - if [ -n "${NETDATA_DISABLE_GO+x}" ]; then - return 1 - fi - - version_in_file="$(cat packaging/go.d.version 2> /dev/null)" - binary_version=$("${NETDATA_PREFIX}"/usr/libexec/netdata/plugins.d/go.d.plugin -v 2> /dev/null) - - govercomp "$version_in_file" "$binary_version" - case $? in - 0) return 1 ;; # = - 2) return 1 ;; # < - *) return 0 ;; # >, error - esac -} - -install_go() { - if ! should_install_go; then - return 0 - fi - - [ -n "${GITHUB_ACTIONS}" ] && echo "::group::Installing go.d.plugin." - - # When updating this value, ensure correct checksums in packaging/go.d.checksums - GO_PACKAGE_VERSION="$(cat packaging/go.d.version)" - ARCH_MAP=' - i386::386 - i686::386 - x86_64::amd64 - aarch64::arm64 - armv64::arm64 - armv6l::arm - armv7l::arm - armv5tel::arm - ' - - progress "Install go.d.plugin" - ARCH=$(uname -m) - OS=$(uname -s | tr '[:upper:]' '[:lower:]') - - for index in ${ARCH_MAP}; do - KEY="${index%%::*}" - VALUE="${index##*::}" - if [ "$KEY" = "$ARCH" ]; then - ARCH="${VALUE}" - break - fi - done - tmp="$(mktemp -d -t netdata-go-XXXXXX)" - GO_PACKAGE_BASENAME="go.d.plugin-${GO_PACKAGE_VERSION}.${OS}-${ARCH}.tar.gz" - - if [ -z "${NETDATA_LOCAL_TARBALL_OVERRIDE_GO_PLUGIN}" ]; then - download_go "https://github.com/netdata/go.d.plugin/releases/download/${GO_PACKAGE_VERSION}/${GO_PACKAGE_BASENAME}" "${tmp}/${GO_PACKAGE_BASENAME}" - else - progress "Using provided go.d tarball ${NETDATA_LOCAL_TARBALL_OVERRIDE_GO_PLUGIN}" - run cp "${NETDATA_LOCAL_TARBALL_OVERRIDE_GO_PLUGIN}" "${tmp}/${GO_PACKAGE_BASENAME}" - fi - - if [ -z "${NETDATA_LOCAL_TARBALL_OVERRIDE_GO_PLUGIN_CONFIG}" ]; then - download_go "https://github.com/netdata/go.d.plugin/releases/download/${GO_PACKAGE_VERSION}/config.tar.gz" "${tmp}/config.tar.gz" - else - progress "Using provided config file for go.d ${NETDATA_LOCAL_TARBALL_OVERRIDE_GO_PLUGIN_CONFIG}" - run cp "${NETDATA_LOCAL_TARBALL_OVERRIDE_GO_PLUGIN_CONFIG}" "${tmp}/config.tar.gz" - fi - - if [ ! -f "${tmp}/${GO_PACKAGE_BASENAME}" ] || [ ! -f "${tmp}/config.tar.gz" ] || [ ! -s "${tmp}/config.tar.gz" ] || [ ! -s "${tmp}/${GO_PACKAGE_BASENAME}" ]; then - run_failed "go.d plugin download failed, go.d plugin will not be available" - echo >&2 "Either check the error or consider disabling it by issuing '--disable-go' in the installer" - echo >&2 - [ -n "${GITHUB_ACTIONS}" ] && echo "::endgroup::" - return 0 - fi - - grep "${GO_PACKAGE_BASENAME}\$" "${INSTALLER_DIR}/packaging/go.d.checksums" > "${tmp}/sha256sums.txt" 2> /dev/null - grep "config.tar.gz" "${INSTALLER_DIR}/packaging/go.d.checksums" >> "${tmp}/sha256sums.txt" 2> /dev/null - - # Checksum validation - if ! (cd "${tmp}" && safe_sha256sum -c "sha256sums.txt"); then - - echo >&2 "go.d plugin checksum validation failure." - echo >&2 "Either check the error or consider disabling it by issuing '--disable-go' in the installer" - echo >&2 - - run_failed "go.d.plugin package files checksum validation failed. go.d.plugin will not be available." - [ -n "${GITHUB_ACTIONS}" ] && echo "::endgroup::" - return 0 - fi - - # Install new files - run rm -rf "${NETDATA_STOCK_CONFIG_DIR}/go.d" - run rm -rf "${NETDATA_STOCK_CONFIG_DIR}/go.d.conf" - run tar --no-same-owner -xf "${tmp}/config.tar.gz" -C "${NETDATA_STOCK_CONFIG_DIR}/" - run chown -R "${ROOT_USER}:${ROOT_GROUP}" "${NETDATA_STOCK_CONFIG_DIR}" - - run tar --no-same-owner -xf "${tmp}/${GO_PACKAGE_BASENAME}" - run mv "${GO_PACKAGE_BASENAME%.tar.gz}" "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin" - if [ "$(id -u)" -eq 0 ]; then - run chown "root:${NETDATA_GROUP}" "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin" - fi - run chmod 0750 "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin" - rm -rf "${tmp}" - - [ -n "${GITHUB_ACTIONS}" ] && echo "::endgroup::" -} - -install_go - -if [ -f "${NETDATA_PREFIX}/usr/libexec/netdata/plugins.d/go.d.plugin" ]; then - if command -v setcap 1>/dev/null 2>&1; then - 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" - fi -fi - should_install_ebpf() { if [ "${NETDATA_DISABLE_EBPF:=0}" -eq 1 ]; then run_failed "eBPF has been explicitly disabled, it will not be available in this install." diff --git a/netdata.spec.in b/netdata.spec.in index ad0a6a36f0..bb9bf279ee 100644 --- a/netdata.spec.in +++ b/netdata.spec.in @@ -1,8 +1,6 @@ # SPDX-License-Identifier: GPL-3.0-or-later %global contentdir %{_datadir}/netdata %global version @PACKAGE_VERSION@ -%global go_version @GO_PACKAGE_VERSION@ -%global go_name go.d.plugin # XXX: We are using automatic `Requires:` generation for libraries # whenever possible, DO NOT LIST LIBRARY DEPENDENCIES UNLESS THE RESULTANT @@ -14,6 +12,11 @@ AutoReqProv: yes # error. %global __os_install_post %{nil} +# This is needed to support proper handling of Go code without requiring +# external linking or GCCGO, because even recent versions of rpmbuild do +# not properly support the build IDs generated by the upstream Go toolchain. +%global _missing_build_ids_terminate_build 0 + # Use our custom CMake version from our package builders if we can’t find cmake. %if 0%{?centos_ver} == 7 %global __cmake /cmake/bin/cmake @@ -39,18 +42,6 @@ AutoReqProv: yes %global __cmake_builddir %{__builddir} %endif -# Disable go.d.plugin build on outdated golang distros -%if 0 -%if 0%{?centos_ver:1} -%if 0%{?centos_ver} >= 10 && 0%{?almalinux_ver:1} && 0%{?rocky_ver:1} -%global _golang_build 1 -%else -%global _golang_build 0 -%global _missing_build_ids_terminate_build 0 -%endif -%endif -%endif - # Disable eBPF for architectures other than x86 %ifarch x86_64 i386 %global _have_ebpf 1 @@ -125,8 +116,6 @@ Release: 1%{?dist} License: GPLv3+ Group: Applications/System Source0: https://github.com/%{name}/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz -Source1: https://github.com/%{name}/%{go_name}/releases/download/v%{go_version}/config.tar.gz -Source2: https://github.com/%{name}/%{go_name}/archive/refs/tags/v%{go_version}.tar.gz URL: http://my-%{name}.io # Remove conflicting EPEL packages @@ -260,11 +249,17 @@ BuildRequires: cups-devel # end - cups plugin dependencies # go.d.plugin dependencies -%if 0%{?_golang_build} +# +# The conditional here is checking for a macro we define in our package +# builders. If it’s defined, then we’ve injected an upstream copy of +# the Go toolchain, so we don’t need the package installed (which +# is needed because Go’s development model is at odds with enterprise +# distro handling of versioning). +%if %{?_upstream_go_toolchain:0}%{!?_upstream_go_toolchain:1} %if 0%{?suse_version} -BuildRequires: go +BuildRequires: go >= 1.21 %else -BuildRequires: golang +BuildRequires: golang >= 1.21 %endif %endif # end - go.d.plugin plugin dependencies @@ -339,15 +334,6 @@ export CFLAGS="${CFLAGS} -fPIC" && ${RPM_BUILD_DIR}/%{name}-%{version}/packaging %endif %endif -# go.d.plugin -%if 0%{?_golang_build} -mkdir -p "%{_builddir}/%{go_name}" -tar -xzf "%{SOURCE1}" -C "%{_builddir}/%{go_name}" -tar -xzf "%{SOURCE2}" -C "%{_builddir}/%{go_name}" -cd "%{_builddir}/%{go_name}/%{go_name}-%{go_version}" -make download -%endif - %build # Conf step %cmake -G Ninja \ @@ -408,6 +394,7 @@ make download -DENABLE_PLUGIN_APPS=On \ -DENABLE_PLUGIN_CGROUP_NETWORK=On \ -DENABLE_PLUGIN_DEBUGFS=On \ + -DENABLE_PLUGIN_GO=On \ -DENABLE_PLUGIN_LOCAL_LISTENERS=On \ -DENABLE_PLUGIN_PERF=On \ -DENABLE_PLUGIN_SLABINFO=On \ @@ -420,13 +407,6 @@ make download # Build step %{cmake_build} -# Build go.d.plugin -%if 0%{?_golang_build} -cd "%{_builddir}/%{go_name}/%{go_name}-%{go_version}" -sed -i 's|CGO_ENABLED=0 ||' "hack/go-build.sh" -TRAVIS_TAG="%{go_version}" %{__make} build -%endif - %install # ########################################################### @@ -471,111 +451,6 @@ install -m 644 -p "%{__cmake_builddir}/system/systemd/%{name}.service.v235" "${R install -m 755 -d "${RPM_BUILD_ROOT}%{_presetdir}" install -m 644 -p "system/systemd/50-%{name}.preset" "${RPM_BUILD_ROOT}%{_presetdir}/50-%{name}.preset" -# ############################################################ -# Package Go within netdata - -# Install builded go.d.plugin -%if 0%{?_golang_build} -install -m 0640 "%{_builddir}/%{go_name}/%{go_name}-%{go_version}/bin/godplugin" \ -"${RPM_BUILD_ROOT}%{_libexecdir}/%{name}/plugins.d/%{go_name}" -cp -r "%{_builddir}/%{go_name}/go.d.conf" "%{_builddir}/%{go_name}/go.d" \ -"${RPM_BUILD_ROOT}%{_libdir}/%{name}/conf.d/" -%else -# Install binary go.d.plugin -safe_sha256sum() { - # Within the context of the installer, we only use -c option that is common between the two commands - # We will have to reconsider if we start non-common options - if command -v sha256sum >/dev/null 2>&1; then - sha256sum $@ - elif command -v shasum >/dev/null 2>&1; then - shasum -a 256 $@ - else - fatal "I could not find a suitable checksum binary to use" - fi -} - -download_go() { - url="${1}" - dest="${2}" - - if command -v curl >/dev/null 2>&1; then - curl -sSL --connect-timeout 10 --retry 3 "${url}" > "${dest}" - elif command -v wget >/dev/null 2>&1; then - wget -T 15 -O - "${url}" > "${dest}" - else - echo >&2 - echo >&2 "Downloading go.d plugin from '${url}' failed because of missing mandatory packages." - echo >&2 "Either add packages or disable it by issuing '--disable-go' in the installer" - echo >&2 - exit 1 - fi -} - -install_go() { - # When updating this value, ensure correct checksums in packaging/go.d.checksums - GO_PACKAGE_VERSION="$(cat packaging/go.d.version)" - ARCH_MAP=( - 'i386::386' - 'i686::386' - 'x86_64::amd64' - 'aarch64::arm64' - 'armv64::arm64' - 'armv6l::arm' - 'armv7l::arm' - 'armv5tel::arm' - ) - - if [ -z "${NETDATA_DISABLE_GO+x}" ]; then - ARCH="%{_arch}" - OS=$(uname -s | tr '[:upper:]' '[:lower:]') - - echo >&2 "Install go.d.plugin (ARCH=${ARCH}, OS=${OS})" - - for index in "${ARCH_MAP[@]}" ; do - KEY="${index%%::*}" - VALUE="${index##*::}" - if [ "$KEY" = "$ARCH" ]; then - ARCH="${VALUE}" - break - fi - done - tmp=$(mktemp -d /tmp/netdata-go-XXXXXX) - GO_PACKAGE_BASENAME="go.d.plugin-${GO_PACKAGE_VERSION}.${OS}-${ARCH}.tar.gz" - download_go "https://github.com/netdata/go.d.plugin/releases/download/${GO_PACKAGE_VERSION}/${GO_PACKAGE_BASENAME}" "${tmp}/${GO_PACKAGE_BASENAME}" - download_go "https://github.com/netdata/go.d.plugin/releases/download/${GO_PACKAGE_VERSION}/config.tar.gz" "${tmp}/config.tar.gz" - - if [ ! -f "${tmp}/${GO_PACKAGE_BASENAME}" ] || [ ! -f "${tmp}/config.tar.gz" ] || [ ! -s "${tmp}/config.tar.gz" ] || [ ! -s "${tmp}/${GO_PACKAGE_BASENAME}" ]; then - echo >&2 "Either check the error or consider disabling it by issuing '--disable-go' in the installer" - echo >&2 - return 1 - fi - - grep "${GO_PACKAGE_BASENAME}\$" "packaging/go.d.checksums" > "${tmp}/sha256sums.txt" 2>/dev/null - grep "config.tar.gz" "packaging/go.d.checksums" >> "${tmp}/sha256sums.txt" 2>/dev/null - - # Checksum validation - if ! (cd "${tmp}" && safe_sha256sum -c "sha256sums.txt"); then - - echo >&2 "go.d plugin checksum validation failure." - echo >&2 "Either check the error or consider disabling it by issuing '--disable-go' in the installer" - echo >&2 - - echo "go.d.plugin package files checksum validation failed." - exit 1 - fi - - # Install files - tar -xf "${tmp}/config.tar.gz" -C "${RPM_BUILD_ROOT}%{_libdir}/%{name}/conf.d/" - tar xf "${tmp}/${GO_PACKAGE_BASENAME}" - mv "${GO_PACKAGE_BASENAME/\.tar\.gz/}" "go.d.plugin" - rm -rf "${tmp}" - fi - return 0 -} -install_go -install -m 0640 -p "%{go_name}" "${RPM_BUILD_ROOT}%{_libexecdir}/%{name}/plugins.d/%{go_name}" -%endif - %if 0%{?_have_ebpf} ${RPM_BUILD_DIR}/%{name}-%{version}/packaging/bundle-ebpf.sh ${RPM_BUILD_DIR}/%{name}-%{version} \ ${RPM_BUILD_ROOT}%{_libexecdir}/%{name}/plugins.d @@ -729,7 +604,7 @@ rm -rf "${RPM_BUILD_ROOT}" %exclude %{_libdir}/%{name}/conf.d/python.d # Go.d belongs to a different sub-package -%exclude %{_libexecdir}/%{name}/plugins.d/%{go_name} +%exclude %{_libexecdir}/%{name}/plugins.d/go.d.plugin %exclude %{_libdir}/%{name}/conf.d/go.d.conf %exclude %{_libdir}/%{name}/conf.d/go.d @@ -958,7 +833,7 @@ fi %defattr(0750,root,netdata,0750) # CAP_NET_ADMIN needed for WireGuard collector # CAP_NET_RAW needed for ping collector -%caps(cap_dac_read_search,cap_net_admin,cap_net_raw=eip) %{_libexecdir}/%{name}/plugins.d/%{go_name} +%caps(cap_dac_read_search,cap_net_admin,cap_net_raw=eip) %{_libexecdir}/%{name}/plugins.d/go.d.plugin %defattr(0644,root,netdata,0755) %{_libdir}/%{name}/conf.d/go.d.conf %{_libdir}/%{name}/conf.d/go.d diff --git a/packaging/check-for-go-toolchain.sh b/packaging/check-for-go-toolchain.sh index 6303ddecbb..2b29b847fe 100644 --- a/packaging/check-for-go-toolchain.sh +++ b/packaging/check-for-go-toolchain.sh @@ -16,6 +16,7 @@ GOLANG_MIN_MAJOR_VERSION='1' GOLANG_MIN_MINOR_VERSION='21' GOLANG_MIN_PATCH_VERSION='0' +GOLANG_MIN_VERSION="${GOLANG_MIN_MAJOR_VERSION}.${GOLANG_MIN_MINOR_VERSION}.${GOLANG_MIN_PATCH_VERSION}" GOLANG_TEMP_PATH="${TMPDIR}/go-toolchain" @@ -48,49 +49,84 @@ install_go_toolchain() { GOLANG_ARCHIVE_NAME="${GOLANG_TEMP_PATH}/golang.tar.gz" GOLANG_CHECKSUM_FILE="${GOLANG_TEMP_PATH}/golang.sha256sums" - if [ "$(uname -s)" != "Linux" ]; then - GOLANG_FAILURE_REASON="We do not support automatic handling of a Go toolchain on this system, you must install one manually." - return 1 - fi - - case "$(uname -m)" in - i?86) - GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-386.tar.gz" - GOLANG_ARCHIVE_CHECKSUM="05d09041b5a1193c14e4b2db3f7fcc649b236c567f5eb93305c537851b72dd95" + case "$(uname -s)" in + Linux) + case "$(uname -m)" in + i?86) + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-386.tar.gz" + GOLANG_ARCHIVE_CHECKSUM="05d09041b5a1193c14e4b2db3f7fcc649b236c567f5eb93305c537851b72dd95" + ;; + x86_64) + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-amd64.tar.gz" + GOLANG_ARCHIVE_CHECKSUM="3f934f40ac360b9c01f616a9aa1796d227d8b0328bf64cb045c7b8c4ee9caea4" + ;; + aarch64) + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-arm64.tar.gz" + GOLANG_ARCHIVE_CHECKSUM="e2e8aa88e1b5170a0d495d7d9c766af2b2b6c6925a8f8956d834ad6b4cacbd9a" + ;; + armv*) + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-armv6l.tar.gz" + GOLANG_ARCHIVE_CHECKSUM="6a8eda6cc6a799ff25e74ce0c13fdc1a76c0983a0bb07c789a2a3454bf6ec9b2" + ;; + ppc64le) + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-ppc64le.tar.gz" + GOLANG_ARCHIVE_CHECKSUM="e872b1e9a3f2f08fd4554615a32ca9123a4ba877ab6d19d36abc3424f86bc07f" + ;; + riscv64) + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-riscv64.tar.gz" + GOLANG_ARCHIVE_CHECKSUM="86a2fe6597af4b37d98bca632f109034b624786a8d9c1504d340661355ed31f7" + ;; + s390x) + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-s390x.tar.gz" + GOLANG_ARCHIVE_CHECKSUM="92894d0f732d3379bc414ffdd617eaadad47e1d72610e10d69a1156db03fc052" + ;; + *) + GOLANG_FAILURE_REASON="Linux $(uname -m) platform is not supported out-of-box by Go, you must install a toolchain for it yourself." + return 1 + ;; + esac ;; - x86_64) - GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-amd64.tar.gz" - GOLANG_ARCHIVE_CHECKSUM="3f934f40ac360b9c01f616a9aa1796d227d8b0328bf64cb045c7b8c4ee9caea4" - ;; - aarch64) - GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-arm64.tar.gz" - GOLANG_ARCHIVE_CHECKSUM="e2e8aa88e1b5170a0d495d7d9c766af2b2b6c6925a8f8956d834ad6b4cacbd9a" - ;; - armv*) - GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-armv6l.tar.gz" - GOLANG_ARCHIVE_CHECKSUM="6a8eda6cc6a799ff25e74ce0c13fdc1a76c0983a0bb07c789a2a3454bf6ec9b2" - ;; - ppc64le) - GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-ppc64le.tar.gz" - GOLANG_ARCHIVE_CHECKSUM="e872b1e9a3f2f08fd4554615a32ca9123a4ba877ab6d19d36abc3424f86bc07f" - ;; - riscv64) - GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-riscv64.tar.gz" - GOLANG_ARCHIVE_CHECKSUM="86a2fe6597af4b37d98bca632f109034b624786a8d9c1504d340661355ed31f7" - ;; - s390x) - GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.21.6.linux-s390x.tar.gz" - GOLANG_ARCHIVE_CHECKSUM="92894d0f732d3379bc414ffdd617eaadad47e1d72610e10d69a1156db03fc052" + FreeBSD) + case "$(uname -m)" in + 386) + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.22.0.freebsd-386.tar.gz" + GOLANG_ARCHIVE_CHECKSUM="b8065da37783e8b9e7086365a54d74537e832c92311b61101a66989ab2458d8e" + ;; + amd64) + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.22.0.freebsd-amd64.tar.gz" + GOLANG_ARCHIVE_CHECKSUM="50f421c7f217083ac94aab1e09400cb9c2fea7d337679ec11f1638a11460da30" + ;; + arm) + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.22.0.freebsd-arm.tar.gz" + GOLANG_ARCHIVE_CHECKSUM="c9c8b305f90903536f4981bad9f029828c2483b3216ca1783777344fbe603f2d" + ;; + arm64) + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.22.0.freebsd-arm64.tar.gz" + GOLANG_ARCHIVE_CHECKSUM="e23385e5c640787fa02cd58f2301ea09e162c4d99f8ca9fa6d52766f428a933d" + ;; + riscv64) + GOLANG_ARCHIVE_URL="https://go.dev/dl/go1.22.0.freebsd-riscv64.tar.gz" + GOLANG_ARCHIVE_CHECKSUM="c8f94d1de6024546194d58e7b9370dc7ea06176aad94a675b0062c25c40cb645" + ;; + *) + GOLANG_FAILURE_REASON="FreeBSD $(uname -m) platform is not supported out-of-box by Go, you must install a toolchain for it yourself." + return 1 + ;; + esac ;; *) - GOLANG_FAILURE_REASON="Linux $(uname -m) platform is not supported out-of-box by Go, you must install a toolchain for it yourself." + GOLANG_FAILURE_REASON="We do not support automatic handling of a Go toolchain on this system, you must install one manually." return 1 ;; esac - if [ -d '/usr/local/go' ]; then - GOLANG_FAILURE_REASON="Refusing to overwrite existing Go toolchain install at /usr/local/go, it needs to be updated manually." - return 1 + if [ -d '/usr/local/go' ]; then + if [ -f '/usr/local/go/.installed-by-netdata' ]; then + rm -rf /usr/local/go + else + GOLANG_FAILURE_REASON="Refusing to overwrite existing Go toolchain install at /usr/local/go, it needs to be updated manually." + return 1 + fi fi mkdir -p "${GOLANG_TEMP_PATH}" @@ -112,6 +148,8 @@ install_go_toolchain() { return 1 fi + touch /usr/local/go/.installed-by-netdata + rm -rf "${GOLANG_TEMP_PATH}" } diff --git a/packaging/cmake/Modules/FindGo.cmake b/packaging/cmake/Modules/FindGo.cmake new file mode 100644 index 0000000000..454a0051e0 --- /dev/null +++ b/packaging/cmake/Modules/FindGo.cmake @@ -0,0 +1,39 @@ +# Custom CMake module to find the Go toolchain +# +# Copyright (c) 2024 Netdata Inc +# +# SPDX-License-Identifier: GPL-3.0-or-later +# +# This is a relatively orthodox CMake Find Module. It can be used by +# simply including it and then invoking `find_package(Go)`. +# +# Version handling is done by CMake itself via the +# find_package_handle_standard_args() function, so `find_package(Go 1.21)` +# will also work correctly. + +if(GO_FOUND) + return() +endif() + +# Two passes are needed here so that we prefer a copy in `/usr/local/go/bin` over a system copy. +find_program(GO_EXECUTABLE go PATHS /usr/local/go/bin DOC "Go toolchain" NO_DEFAULT_PATH) +find_program(GO_EXECUTABLE go DOC "Go toolchain") + +if (GO_EXECUTABLE) + execute_process( + COMMAND ${GO_EXECUTABLE} version + OUTPUT_VARIABLE GO_VERSION_STRING + RESULT_VARIABLE RESULT + ) + if (RESULT EQUAL 0) + string(REGEX MATCH "go([0-9]+\\.[0-9]+(\\.[0-9]+)?)" GO_VERSION_STRING "${GO_VERSION_STRING}") + string(REGEX MATCH "([0-9]+\\.[0-9]+(\\.[0-9]+)?)" GO_VERSION_STRING "${GO_VERSION_STRING}") + endif() +endif() + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args( + Go + REQUIRED_VARS GO_EXECUTABLE + VERSION_VAR GO_VERSION_STRING +) diff --git a/packaging/cmake/Modules/NetdataGoTools.cmake b/packaging/cmake/Modules/NetdataGoTools.cmake new file mode 100644 index 0000000000..12785aeb54 --- /dev/null +++ b/packaging/cmake/Modules/NetdataGoTools.cmake @@ -0,0 +1,85 @@ +# Macros and functions to assist in working with Go +# +# Copyright (c) 2024 Netdata Inc +# +# SPDX-License-Identifier: GPL + +if(CMAKE_BUILD_TYPE STREQUAL Debug OR CMAKE_BUILD_TYPE STREQUAL RelWithDebInfo) + set(GO_LDFLAGS "-X main.version=${NETDATA_VERSION}") +else() + set(GO_LDFLAGS "-w -s -X main.version=${NETDATA_VERSION}") +endif() + +# add_go_target: Add a new target that needs to be built using the Go toolchain. +# +# Takes four arguments, the target name, the output artifact name, the +# source tree for the Go module, and the sub-directory of that source tree +# to pass to `go build`. +# +# The target itself will invoke `go build` in the specified source tree, +# using the `-o` option to produce the final output artifact, and passing +# the requested sub-directory as the final argument. +# +# This will also automatically construct the dependency list for the +# target by finding all Go source files under the specified source tree +# and then appending the go.mod and go.sum files from the root of the +# source tree. +macro(add_go_target target output build_src build_dir) + file(GLOB_RECURSE ${target}_DEPS CONFIGURE_DEPENDS "${build_src}/*.go") + list(APPEND ${target}_DEPS + "${build_src}/go.mod" + "${build_src}/go.sum" + ) + + add_custom_command( + OUTPUT ${output} + COMMAND "${CMAKE_COMMAND}" -E env CGO_ENABLED=0 "${GO_EXECUTABLE}" build -buildvcs=false -ldflags "${GO_LDFLAGS}" -o "${CMAKE_BINARY_DIR}/${output}" "./${build_dir}" + DEPENDS ${${target}_DEPS} + COMMENT "Building Go component ${output}" + WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}/${build_src}" + VERBATIM + ) + add_custom_target( + ${target} ALL + DEPENDS ${output} + ) +endmacro() + +# find_min_go_version: Determine the minimum Go version based on go.mod files +# +# Takes one argument, specifying a source tree to scan for go.mod files. +# +# All files found will be checked for a `go` directive, and the +# MIN_GO_VERSION variable will be set to the highest version +# number found among these directives. +# +# Only works on UNIX-like systems, because it has to process the go.mod +# files in ways that CMake can't do on it's own. +function(find_min_go_version src_tree) + message(STATUS "Determining minimum required version of Go for this build") + + file(GLOB_RECURSE go_mod_files ${src_tree}/go.mod) + + set(result 1.0) + + foreach(f IN ITEMS ${go_mod_files}) + message(VERBOSE "Checking Go version specified in ${f}") + execute_process( + COMMAND grep -E "^go .*$" ${f} + COMMAND cut -f 2 -d " " + RESULT_VARIABLE version_check_result + OUTPUT_VARIABLE go_mod_version + ) + + if(version_check_result EQUAL 0) + string(REGEX MATCH "([0-9]+\\.[0-9]+(\\.[0-9]+)?)" go_mod_version "${go_mod_version}") + + if(go_mod_version VERSION_GREATER result) + set(result "${go_mod_version}") + endif() + endif() + endforeach() + + message(STATUS "Minimum required Go version determined to be ${result}") + set(MIN_GO_VERSION "${result}" PARENT_SCOPE) +endfunction() diff --git a/packaging/go.d.checksums b/packaging/go.d.checksums deleted file mode 100644 index 67b25cb623..0000000000 --- a/packaging/go.d.checksums +++ /dev/null @@ -1,20 +0,0 @@ -6ae6cc9970cb75a245a97e242ded366b37342c3b89d5f673e4f05f81d8623c85 *config.tar.gz -6ae6cc9970cb75a245a97e242ded366b37342c3b89d5f673e4f05f81d8623c85 *go.d.plugin-config-v0.58.1.tar.gz -5951ea9c3345c2d0fe9f66d559e4ff99d0d0ac1df57cd120f7d7ebc22e518d3d *go.d.plugin-v0.58.1.darwin-amd64.tar.gz -083f742e643c94c3d173d8b490752abd46cb00a27f7ce4eaa44f356c72ce83d0 *go.d.plugin-v0.58.1.darwin-arm64.tar.gz -4d042db7af2dd4065d1b3d121f30acdf4186d531b0918969540727b04e583bce *go.d.plugin-v0.58.1.freebsd-386.tar.gz -4496b2f27bf17e4e71b2867914e5f7f03675b31d0db100b9dff0da668c611651 *go.d.plugin-v0.58.1.freebsd-amd64.tar.gz -708affd49865c4c681ab269341347d6106eca4d23d1e8ba6dbf59d7b13e9569a *go.d.plugin-v0.58.1.freebsd-arm.tar.gz -efa87e606ad5e602df0dac143b78133bd70c2d5f8c96e4d48cc89efdebd8ce7c *go.d.plugin-v0.58.1.freebsd-arm64.tar.gz -846038bd893593879b965016fb917258a9778c4adb63cccc1722bdfbdc600b37 *go.d.plugin-v0.58.1.linux-386.tar.gz -eb43f1020947bcd3564e0917842c72e880438c00da2a5a3718fcd83c0d60d636 *go.d.plugin-v0.58.1.linux-amd64.tar.gz -310e82f7a227054a0fe27a4c076fd77296da5c37e9677f51e4c1c3f1edf9258f *go.d.plugin-v0.58.1.linux-arm.tar.gz -5066048efcd94711987e6554e15abb36c11356cd264a3c62b16697a687f2de81 *go.d.plugin-v0.58.1.linux-arm64.tar.gz -d77bfc0a98311fa989d826f60ea41acdd56a749b9b78e7192bc57f13d3ccf805 *go.d.plugin-v0.58.1.linux-mips.tar.gz -d57e7bf97e649f03675aeb5bfa7e3b04315a1a70e52e66b230bf915e2d86a976 *go.d.plugin-v0.58.1.linux-mips64.tar.gz -3fe10ededbf7b3b9f2aa428339a975ffa23ed062289b958a845bd879cc63e654 *go.d.plugin-v0.58.1.linux-mips64le.tar.gz -4d5c5e8324ddb6f3a085083826ea8670546aa7689fc664b62f75d1cf4dff155d *go.d.plugin-v0.58.1.linux-mipsle.tar.gz -fe238fb44d6b408e6977e12ced32b0140d72d62b1e63de44d66cd3602e17f2e3 *go.d.plugin-v0.58.1.linux-ppc64.tar.gz -a2b1940798462748bdc445e6bcc3557ca0ea65369dc3134ac5f6e35919d1d146 *go.d.plugin-v0.58.1.linux-ppc64le.tar.gz -87391dd6784ca6f4754fcf872f1fba0730275da24023cf7ad83250b486326980 *go.d.plugin-vendor-v0.58.1.tar.gz -87391dd6784ca6f4754fcf872f1fba0730275da24023cf7ad83250b486326980 *vendor.tar.gz diff --git a/packaging/go.d.version b/packaging/go.d.version deleted file mode 100644 index e7d75d3abe..0000000000 --- a/packaging/go.d.version +++ /dev/null @@ -1 +0,0 @@ -v0.58.1 diff --git a/packaging/installer/functions.sh b/packaging/installer/functions.sh index 9a0df58e9a..ac56bd3893 100644 --- a/packaging/installer/functions.sh +++ b/packaging/installer/functions.sh @@ -257,6 +257,12 @@ prepare_cmake_options() { NETDATA_CMAKE_OPTIONS="${NETDATA_CMAKE_OPTIONS} -DUSE_CXX_11=On" fi + if [ "${ENABLE_GO:-1}" -eq 1 ]; then + enable_feature PLUGIN_GO 1 + else + enable_feature PLUGIN_GO 0 + fi + if [ "${USE_SYSTEM_PROTOBUF:-1}" -eq 1 ]; then enable_feature BUNDLED_PROTOBUF 0 else diff --git a/packaging/utils/coverity-scan.sh b/packaging/utils/coverity-scan.sh index be5ea64afa..b69fea5613 100755 --- a/packaging/utils/coverity-scan.sh +++ b/packaging/utils/coverity-scan.sh @@ -132,6 +132,7 @@ scanit() { progress "Configuring netdata source..." USE_SYSTEM_PROTOBUF=1 + ENABLE_GO=0 prepare_cmake_options run cmake ${NETDATA_CMAKE_OPTIONS} diff --git a/src/go/collectors/go.d.plugin/Dockerfile.dev b/src/go/collectors/go.d.plugin/Dockerfile.dev index 544e9a96d9..2811f73986 100644 --- a/src/go/collectors/go.d.plugin/Dockerfile.dev +++ b/src/go/collectors/go.d.plugin/Dockerfile.dev @@ -1,4 +1,4 @@ -FROM golang:1.21 AS build-env +FROM golang:1.22 AS build-env RUN mkdir -p /workspace WORKDIR /workspace diff --git a/src/go/collectors/go.d.plugin/Makefile b/src/go/collectors/go.d.plugin/Makefile index eadf3e122a..fc5d3e3f6e 100644 --- a/src/go/collectors/go.d.plugin/Makefile +++ b/src/go/collectors/go.d.plugin/Makefile @@ -60,7 +60,7 @@ dev-log: docker-compose logs -f netdata dev-run: ## Run go.d.plugin inside development environment - go run github.com/netdata/go.d.plugin/cmd/godplugin -d -c conf.d + go run github.com/netdata/netdata/go/go.d.plugin/cmd/godplugin -d -c conf.d dev-mock: ## Run go.d.plugin inside development environment with mock config - go run github.com/netdata/go.d.plugin/cmd/godplugin -d -c ./mocks/conf.d -m $(DEV_MODULES) + go run github.com/netdata/netdata/go/go.d.plugin/cmd/godplugin -d -c ./mocks/conf.d -m $(DEV_MODULES) diff --git a/src/go/collectors/go.d.plugin/README.md b/src/go/collectors/go.d.plugin/README.md index 16371433f1..c66d386cca 100644 --- a/src/go/collectors/go.d.plugin/README.md +++ b/src/go/collectors/go.d.plugin/README.md @@ -132,7 +132,7 @@ see the appropriate collector readme. ## Configuration Edit the `go.d.conf` configuration file using `edit-config` from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md), which is typically +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory), which is typically at `/etc/netdata`. ```bash diff --git a/src/go/collectors/go.d.plugin/agent/agent.go b/src/go/collectors/go.d.plugin/agent/agent.go index 9d6a85f91f..2f010f5bd4 100644 --- a/src/go/collectors/go.d.plugin/agent/agent.go +++ b/src/go/collectors/go.d.plugin/agent/agent.go @@ -12,18 +12,18 @@ import ( "syscall" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/discovery" - "github.com/netdata/go.d.plugin/agent/filelock" - "github.com/netdata/go.d.plugin/agent/filestatus" - "github.com/netdata/go.d.plugin/agent/functions" - "github.com/netdata/go.d.plugin/agent/jobmgr" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/agent/netdataapi" - "github.com/netdata/go.d.plugin/agent/safewriter" - "github.com/netdata/go.d.plugin/agent/vnodes" - "github.com/netdata/go.d.plugin/logger" - "github.com/netdata/go.d.plugin/pkg/multipath" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery" + "github.com/netdata/netdata/go/go.d.plugin/agent/filelock" + "github.com/netdata/netdata/go/go.d.plugin/agent/filestatus" + "github.com/netdata/netdata/go/go.d.plugin/agent/functions" + "github.com/netdata/netdata/go/go.d.plugin/agent/jobmgr" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/netdataapi" + "github.com/netdata/netdata/go/go.d.plugin/agent/safewriter" + "github.com/netdata/netdata/go/go.d.plugin/agent/vnodes" + "github.com/netdata/netdata/go/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/pkg/multipath" "github.com/mattn/go-isatty" ) diff --git a/src/go/collectors/go.d.plugin/agent/agent_test.go b/src/go/collectors/go.d.plugin/agent/agent_test.go index 2a15a6b733..859009bd72 100644 --- a/src/go/collectors/go.d.plugin/agent/agent_test.go +++ b/src/go/collectors/go.d.plugin/agent/agent_test.go @@ -9,8 +9,8 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/agent/safewriter" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/safewriter" "github.com/stretchr/testify/assert" ) diff --git a/src/go/collectors/go.d.plugin/agent/confgroup/group.go b/src/go/collectors/go.d.plugin/agent/confgroup/group.go index 649a145d7a..21f8fcb6f7 100644 --- a/src/go/collectors/go.d.plugin/agent/confgroup/group.go +++ b/src/go/collectors/go.d.plugin/agent/confgroup/group.go @@ -8,8 +8,8 @@ import ( "regexp" "strings" - "github.com/netdata/go.d.plugin/agent/hostinfo" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/hostinfo" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/ilyam8/hashstructure" ) diff --git a/src/go/collectors/go.d.plugin/agent/confgroup/group_test.go b/src/go/collectors/go.d.plugin/agent/confgroup/group_test.go index af9a804e83..467b2e87dd 100644 --- a/src/go/collectors/go.d.plugin/agent/confgroup/group_test.go +++ b/src/go/collectors/go.d.plugin/agent/confgroup/group_test.go @@ -5,7 +5,7 @@ package confgroup import ( "testing" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" ) diff --git a/src/go/collectors/go.d.plugin/agent/discovery/cache.go b/src/go/collectors/go.d.plugin/agent/discovery/cache.go index 7187246b2d..72a49ac561 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/cache.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/cache.go @@ -3,7 +3,7 @@ package discovery import ( - "github.com/netdata/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" ) type cache map[string]*confgroup.Group diff --git a/src/go/collectors/go.d.plugin/agent/discovery/config.go b/src/go/collectors/go.d.plugin/agent/discovery/config.go index d19770d351..1f4e9d10af 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/config.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/config.go @@ -5,9 +5,9 @@ package discovery import ( "errors" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/discovery/dummy" - "github.com/netdata/go.d.plugin/agent/discovery/file" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/dummy" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/file" ) type Config struct { diff --git a/src/go/collectors/go.d.plugin/agent/discovery/dummy/config.go b/src/go/collectors/go.d.plugin/agent/discovery/dummy/config.go index 8fc66ef129..4da80a8dcb 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/dummy/config.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/dummy/config.go @@ -5,7 +5,7 @@ package dummy import ( "errors" - "github.com/netdata/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" ) type Config struct { diff --git a/src/go/collectors/go.d.plugin/agent/discovery/dummy/discovery.go b/src/go/collectors/go.d.plugin/agent/discovery/dummy/discovery.go index acd0b8f1cb..40e8d6693b 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/dummy/discovery.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/dummy/discovery.go @@ -7,8 +7,8 @@ import ( "fmt" "log/slog" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/logger" ) func NewDiscovery(cfg Config) (*Discovery, error) { diff --git a/src/go/collectors/go.d.plugin/agent/discovery/dummy/discovery_test.go b/src/go/collectors/go.d.plugin/agent/discovery/dummy/discovery_test.go index 45eb39aff4..2fdf5a1606 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/dummy/discovery_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/dummy/discovery_test.go @@ -7,8 +7,8 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/config.go b/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/config.go index ebda00f500..d16a8b1bd7 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/config.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/config.go @@ -3,9 +3,9 @@ package dyncfg import ( - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/functions" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/functions" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) type Config struct { diff --git a/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/dyncfg.go b/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/dyncfg.go index 2f3c342340..7cbd9bbd4d 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/dyncfg.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/dyncfg.go @@ -10,10 +10,10 @@ import ( "strings" "sync" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/functions" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/functions" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/logger" "gopkg.in/yaml.v2" ) diff --git a/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/dyncfg_test.go b/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/dyncfg_test.go index 3eee1cef30..f78309714f 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/dyncfg_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/dyncfg_test.go @@ -8,9 +8,9 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/functions" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/functions" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/ext.go b/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/ext.go index 910475c3d5..1907b03e51 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/ext.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/dyncfg/ext.go @@ -5,7 +5,7 @@ import ( "os" "strings" - "github.com/netdata/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" "gopkg.in/yaml.v2" ) diff --git a/src/go/collectors/go.d.plugin/agent/discovery/file/config.go b/src/go/collectors/go.d.plugin/agent/discovery/file/config.go index f8ef6b5fdb..cc19ee4458 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/file/config.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/file/config.go @@ -5,7 +5,7 @@ package file import ( "errors" - "github.com/netdata/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" ) type Config struct { diff --git a/src/go/collectors/go.d.plugin/agent/discovery/file/discovery.go b/src/go/collectors/go.d.plugin/agent/discovery/file/discovery.go index 028644dd47..cdeb9305bd 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/file/discovery.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/file/discovery.go @@ -9,8 +9,8 @@ import ( "log/slog" "sync" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/logger" ) var log = logger.New().With( diff --git a/src/go/collectors/go.d.plugin/agent/discovery/file/parse.go b/src/go/collectors/go.d.plugin/agent/discovery/file/parse.go index b6ba52372a..e8ed92e56c 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/file/parse.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/file/parse.go @@ -7,7 +7,7 @@ import ( "os" "path/filepath" - "github.com/netdata/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" "gopkg.in/yaml.v2" ) diff --git a/src/go/collectors/go.d.plugin/agent/discovery/file/parse_test.go b/src/go/collectors/go.d.plugin/agent/discovery/file/parse_test.go index e18d43013e..5f154b10e7 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/file/parse_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/file/parse_test.go @@ -5,8 +5,8 @@ package file import ( "testing" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/file/read.go b/src/go/collectors/go.d.plugin/agent/discovery/file/read.go index 3d27955ade..3fb2c786ce 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/file/read.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/file/read.go @@ -7,8 +7,8 @@ import ( "os" "path/filepath" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/logger" ) type ( diff --git a/src/go/collectors/go.d.plugin/agent/discovery/file/read_test.go b/src/go/collectors/go.d.plugin/agent/discovery/file/read_test.go index 2bfa20a778..c27ec01f28 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/file/read_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/file/read_test.go @@ -5,8 +5,8 @@ package file import ( "testing" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" ) diff --git a/src/go/collectors/go.d.plugin/agent/discovery/file/sim_test.go b/src/go/collectors/go.d.plugin/agent/discovery/file/sim_test.go index d2bf8124bc..cd9fa05ac7 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/file/sim_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/file/sim_test.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/file/watch.go b/src/go/collectors/go.d.plugin/agent/discovery/file/watch.go index e33aac3ec0..d4ac735264 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/file/watch.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/file/watch.go @@ -9,8 +9,8 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/logger" "github.com/fsnotify/fsnotify" ) diff --git a/src/go/collectors/go.d.plugin/agent/discovery/file/watch_test.go b/src/go/collectors/go.d.plugin/agent/discovery/file/watch_test.go index 1450b7bb6b..cc8f8a6568 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/file/watch_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/file/watch_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" ) diff --git a/src/go/collectors/go.d.plugin/agent/discovery/manager.go b/src/go/collectors/go.d.plugin/agent/discovery/manager.go index 3ab1ab6af5..24fe67408f 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/manager.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/manager.go @@ -10,10 +10,10 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/discovery/dummy" - "github.com/netdata/go.d.plugin/agent/discovery/file" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/dummy" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/file" + "github.com/netdata/netdata/go/go.d.plugin/logger" ) func NewManager(cfg Config) (*Manager, error) { diff --git a/src/go/collectors/go.d.plugin/agent/discovery/manager_test.go b/src/go/collectors/go.d.plugin/agent/discovery/manager_test.go index ebeba81a46..a3de58d4dc 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/manager_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/manager_test.go @@ -9,8 +9,8 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/discovery/file" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/file" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/hostsocket/net.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/hostsocket/net.go index 18cc35b7dc..a1906c9225 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/hostsocket/net.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/hostsocket/net.go @@ -15,8 +15,8 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/logger" "github.com/ilyam8/hashstructure" ) diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/hostsocket/net_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/hostsocket/net_test.go index 4ec8608755..8409a29cbf 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/hostsocket/net_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/hostsocket/net_test.go @@ -7,7 +7,7 @@ import ( "errors" "testing" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" ) var ( diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/hostsocket/sim_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/hostsocket/sim_test.go index 998d9370c4..ebc1ace4d5 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/hostsocket/sim_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/hostsocket/sim_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes.go index ba4f058515..926ed0c07f 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes.go @@ -11,9 +11,9 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" - "github.com/netdata/go.d.plugin/logger" - "github.com/netdata/go.d.plugin/pkg/k8sclient" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/pkg/k8sclient" "github.com/ilyam8/hashstructure" corev1 "k8s.io/api/core/v1" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes_test.go index dcaecb8feb..cd16a7b111 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/kubernetes_test.go @@ -7,8 +7,8 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" - "github.com/netdata/go.d.plugin/pkg/k8sclient" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/pkg/k8sclient" "github.com/stretchr/testify/assert" corev1 "k8s.io/api/core/v1" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod.go index a6391f7f6c..fb6d04c168 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod.go @@ -9,8 +9,8 @@ import ( "strconv" "strings" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/logger" corev1 "k8s.io/api/core/v1" "k8s.io/client-go/tools/cache" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod_test.go index 87506243bc..985b2e33c2 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/pod_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" "github.com/stretchr/testify/assert" corev1 "k8s.io/api/core/v1" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service.go index 975c5f84d8..a970a396f0 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service.go @@ -9,8 +9,8 @@ import ( "strconv" "strings" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/logger" corev1 "k8s.io/api/core/v1" "k8s.io/client-go/tools/cache" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service_test.go index a62d66f099..f15db4cf66 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/service_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" "github.com/stretchr/testify/assert" corev1 "k8s.io/api/core/v1" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/sim_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/sim_test.go index af66c549f3..1a46ece5f7 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/sim_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/kubernetes/sim_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/accumulator.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/accumulator.go index 5d52941061..e4ec6ce635 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/accumulator.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/accumulator.go @@ -7,8 +7,8 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/logger" ) func newAccumulator() *accumulator { diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/classify.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/classify.go index 0d96331d3b..09f1a7affa 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/classify.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/classify.go @@ -7,8 +7,8 @@ import ( "strings" "text/template" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/logger" ) func newTargetClassificator(cfg []ClassifyRuleConfig) (*targetClassificator, error) { diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/classify_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/classify_test.go index 27ebc5e134..fc6f1e9d4f 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/classify_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/classify_test.go @@ -5,7 +5,7 @@ package pipeline import ( "testing" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/compose.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/compose.go index ccb57956b0..e05e04ac4d 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/compose.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/compose.go @@ -6,9 +6,9 @@ import ( "bytes" "text/template" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/logger" "gopkg.in/yaml.v2" ) diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/compose_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/compose_test.go index 0db0c5fb6c..ccbb072bf7 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/compose_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/compose_test.go @@ -5,8 +5,8 @@ package pipeline import ( "testing" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/config.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/config.go index faed30e362..51281c9fe0 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/config.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/config.go @@ -5,9 +5,9 @@ package pipeline import ( "errors" "fmt" - "github.com/netdata/go.d.plugin/agent/discovery/sd/hostsocket" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/hostsocket" - "github.com/netdata/go.d.plugin/agent/discovery/sd/kubernetes" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/kubernetes" ) type Config struct { diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/pipeline.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/pipeline.go index 1a1eb69f94..c5b609c21e 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/pipeline.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/pipeline.go @@ -7,11 +7,11 @@ import ( "log/slog" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/discovery/sd/hostsocket" - "github.com/netdata/go.d.plugin/agent/discovery/sd/kubernetes" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/hostsocket" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/kubernetes" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/logger" ) func New(cfg Config) (*Pipeline, error) { diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/pipeline_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/pipeline_test.go index ae6c5991ae..1ff9bb5046 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/pipeline_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/pipeline_test.go @@ -9,8 +9,8 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" "github.com/ilyam8/hashstructure" "github.com/stretchr/testify/assert" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/selector.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/selector.go index 99cd6a8a15..8bb5fb061c 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/selector.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/selector.go @@ -7,7 +7,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" ) type selector interface { diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/selector_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/selector_test.go index 986eef72cb..a4fcf30417 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/selector_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/selector_test.go @@ -6,7 +6,7 @@ import ( "regexp" "testing" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" "github.com/stretchr/testify/assert" ) diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/sim_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/sim_test.go index eec7f417e9..7b80976a11 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/sim_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/pipeline/sim_test.go @@ -8,9 +8,9 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/discovery/sd/model" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/model" + "github.com/netdata/netdata/go/go.d.plugin/logger" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/sd.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/sd.go index 7897a659df..05458801da 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/sd.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/sd.go @@ -6,9 +6,9 @@ import ( "context" "sync" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/discovery/sd/pipeline" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/pipeline" + "github.com/netdata/netdata/go/go.d.plugin/logger" "gopkg.in/yaml.v2" ) diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/sd_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/sd_test.go index b67921e966..0525d7871c 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/sd_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/sd_test.go @@ -5,7 +5,7 @@ package sd import ( "testing" - "github.com/netdata/go.d.plugin/agent/discovery/sd/pipeline" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/pipeline" "gopkg.in/yaml.v2" ) diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sd/sim_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sd/sim_test.go index 9ddb15e509..5526150ee0 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sd/sim_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sd/sim_test.go @@ -9,9 +9,9 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/discovery/sd/pipeline" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/sd/pipeline" + "github.com/netdata/netdata/go/go.d.plugin/logger" "github.com/stretchr/testify/assert" ) diff --git a/src/go/collectors/go.d.plugin/agent/discovery/sim_test.go b/src/go/collectors/go.d.plugin/agent/discovery/sim_test.go index f8a515de01..0b777f392d 100644 --- a/src/go/collectors/go.d.plugin/agent/discovery/sim_test.go +++ b/src/go/collectors/go.d.plugin/agent/discovery/sim_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/agent/executable/executable.go b/src/go/collectors/go.d.plugin/agent/executable/executable.go new file mode 100644 index 0000000000..3aead79438 --- /dev/null +++ b/src/go/collectors/go.d.plugin/agent/executable/executable.go @@ -0,0 +1,42 @@ +// SPDX-License-Identifier: GPL-3.0-or-later + +package executable + +import ( + "os" + "path/filepath" + "strings" +) + +var ( + Name string + Directory string +) + +func init() { + path, err := os.Executable() + if err != nil || path == "" { + Name = "go.d" + return + } + + _, Name = filepath.Split(path) + Name = strings.TrimSuffix(Name, ".plugin") + Name = strings.TrimSuffix(Name, ".test") + + // FIXME: can't use logger because of circular import + fi, err := os.Lstat(path) + if err != nil { + return + } + + if fi.Mode()&os.ModeSymlink != 0 { + realPath, err := filepath.EvalSymlinks(path) + if err != nil { + return + } + Directory = filepath.Dir(realPath) + } else { + Directory = filepath.Dir(path) + } +} diff --git a/src/go/collectors/go.d.plugin/agent/executable/name.go b/src/go/collectors/go.d.plugin/agent/executable/name.go deleted file mode 100644 index 49dcf8db6e..0000000000 --- a/src/go/collectors/go.d.plugin/agent/executable/name.go +++ /dev/null @@ -1,22 +0,0 @@ -// SPDX-License-Identifier: GPL-3.0-or-later - -package executable - -import ( - "os" - "path/filepath" - "strings" -) - -var Name string - -func init() { - s, err := os.Executable() - if err != nil || s == "" || strings.HasSuffix(s, ".test") { - Name = "go.d" - return - } - - _, Name = filepath.Split(s) - Name = strings.TrimSuffix(Name, ".plugin") -} diff --git a/src/go/collectors/go.d.plugin/agent/filestatus/manager.go b/src/go/collectors/go.d.plugin/agent/filestatus/manager.go index 323ad1f474..4f4f03f85e 100644 --- a/src/go/collectors/go.d.plugin/agent/filestatus/manager.go +++ b/src/go/collectors/go.d.plugin/agent/filestatus/manager.go @@ -8,8 +8,8 @@ import ( "os" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/logger" ) func NewManager(path string) *Manager { diff --git a/src/go/collectors/go.d.plugin/agent/filestatus/manager_test.go b/src/go/collectors/go.d.plugin/agent/filestatus/manager_test.go index 8520da0e78..7d45c64a2d 100644 --- a/src/go/collectors/go.d.plugin/agent/filestatus/manager_test.go +++ b/src/go/collectors/go.d.plugin/agent/filestatus/manager_test.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/agent/filestatus/store.go b/src/go/collectors/go.d.plugin/agent/filestatus/store.go index 6161ec02d8..faeedff3ee 100644 --- a/src/go/collectors/go.d.plugin/agent/filestatus/store.go +++ b/src/go/collectors/go.d.plugin/agent/filestatus/store.go @@ -9,7 +9,7 @@ import ( "slices" "sync" - "github.com/netdata/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" ) func LoadStore(path string) (*Store, error) { diff --git a/src/go/collectors/go.d.plugin/agent/filestatus/store_test.go b/src/go/collectors/go.d.plugin/agent/filestatus/store_test.go index 811b0ffa73..fbf7d339bd 100644 --- a/src/go/collectors/go.d.plugin/agent/filestatus/store_test.go +++ b/src/go/collectors/go.d.plugin/agent/filestatus/store_test.go @@ -5,7 +5,7 @@ package filestatus import ( "testing" - "github.com/netdata/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" "github.com/stretchr/testify/assert" ) diff --git a/src/go/collectors/go.d.plugin/agent/functions/manager.go b/src/go/collectors/go.d.plugin/agent/functions/manager.go index 760780cff4..1995c5e822 100644 --- a/src/go/collectors/go.d.plugin/agent/functions/manager.go +++ b/src/go/collectors/go.d.plugin/agent/functions/manager.go @@ -11,7 +11,7 @@ import ( "strings" "sync" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/logger" "github.com/mattn/go-isatty" "github.com/muesli/cancelreader" diff --git a/src/go/collectors/go.d.plugin/agent/jobmgr/cache.go b/src/go/collectors/go.d.plugin/agent/jobmgr/cache.go index 53a1f73253..3d5f16a35c 100644 --- a/src/go/collectors/go.d.plugin/agent/jobmgr/cache.go +++ b/src/go/collectors/go.d.plugin/agent/jobmgr/cache.go @@ -5,7 +5,7 @@ package jobmgr import ( "context" - "github.com/netdata/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" ) func newRunningJobsCache() *runningJobsCache { diff --git a/src/go/collectors/go.d.plugin/agent/jobmgr/di.go b/src/go/collectors/go.d.plugin/agent/jobmgr/di.go index fa567b2ce3..746ef8588e 100644 --- a/src/go/collectors/go.d.plugin/agent/jobmgr/di.go +++ b/src/go/collectors/go.d.plugin/agent/jobmgr/di.go @@ -3,8 +3,8 @@ package jobmgr import ( - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/vnodes" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/vnodes" ) type FileLocker interface { diff --git a/src/go/collectors/go.d.plugin/agent/jobmgr/manager.go b/src/go/collectors/go.d.plugin/agent/jobmgr/manager.go index 7088f84f9c..0219faee87 100644 --- a/src/go/collectors/go.d.plugin/agent/jobmgr/manager.go +++ b/src/go/collectors/go.d.plugin/agent/jobmgr/manager.go @@ -12,9 +12,9 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/logger" "gopkg.in/yaml.v2" ) diff --git a/src/go/collectors/go.d.plugin/agent/jobmgr/manager_test.go b/src/go/collectors/go.d.plugin/agent/jobmgr/manager_test.go index 69dceda497..479510da9d 100644 --- a/src/go/collectors/go.d.plugin/agent/jobmgr/manager_test.go +++ b/src/go/collectors/go.d.plugin/agent/jobmgr/manager_test.go @@ -9,9 +9,9 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/agent/safewriter" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/safewriter" "github.com/stretchr/testify/assert" ) diff --git a/src/go/collectors/go.d.plugin/agent/jobmgr/noop.go b/src/go/collectors/go.d.plugin/agent/jobmgr/noop.go index 15883105de..747322614b 100644 --- a/src/go/collectors/go.d.plugin/agent/jobmgr/noop.go +++ b/src/go/collectors/go.d.plugin/agent/jobmgr/noop.go @@ -3,8 +3,8 @@ package jobmgr import ( - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/vnodes" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/vnodes" ) type noop struct{} diff --git a/src/go/collectors/go.d.plugin/agent/jobmgr/run.go b/src/go/collectors/go.d.plugin/agent/jobmgr/run.go index f1a14cadc2..8d569d0201 100644 --- a/src/go/collectors/go.d.plugin/agent/jobmgr/run.go +++ b/src/go/collectors/go.d.plugin/agent/jobmgr/run.go @@ -7,7 +7,7 @@ import ( "slices" "time" - "github.com/netdata/go.d.plugin/agent/ticker" + "github.com/netdata/netdata/go/go.d.plugin/agent/ticker" ) func (m *Manager) runRunningJobsHandling(ctx context.Context) { diff --git a/src/go/collectors/go.d.plugin/agent/module/job.go b/src/go/collectors/go.d.plugin/agent/module/job.go index 6200ff9f5a..3bf9a11279 100644 --- a/src/go/collectors/go.d.plugin/agent/module/job.go +++ b/src/go/collectors/go.d.plugin/agent/module/job.go @@ -14,9 +14,9 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/agent/netdataapi" - "github.com/netdata/go.d.plugin/agent/vnodes" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/agent/netdataapi" + "github.com/netdata/netdata/go/go.d.plugin/agent/vnodes" + "github.com/netdata/netdata/go/go.d.plugin/logger" ) var obsoleteLock = &sync.Mutex{} @@ -39,7 +39,7 @@ var reSpace = regexp.MustCompile(`\s+`) var ndInternalMonitoringDisabled = os.Getenv("NETDATA_INTERNALS_MONITORING") == "NO" func newRuntimeChart(pluginName string) *Chart { - // this is needed to keep the same name as we had before https://github.com/netdata/go.d.plugin/issues/650 + // this is needed to keep the same name as we had before https://github.com/netdata/netdata/go/go.d.plugin/issues/650 ctxName := pluginName if ctxName == "go.d" { ctxName = "go" diff --git a/src/go/collectors/go.d.plugin/agent/module/module.go b/src/go/collectors/go.d.plugin/agent/module/module.go index 3421a02ee7..aaf8b515fb 100644 --- a/src/go/collectors/go.d.plugin/agent/module/module.go +++ b/src/go/collectors/go.d.plugin/agent/module/module.go @@ -3,7 +3,7 @@ package module import ( - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/logger" ) // Module is an interface that represents a module. diff --git a/src/go/collectors/go.d.plugin/agent/setup.go b/src/go/collectors/go.d.plugin/agent/setup.go index 202eedbb27..000e241011 100644 --- a/src/go/collectors/go.d.plugin/agent/setup.go +++ b/src/go/collectors/go.d.plugin/agent/setup.go @@ -7,13 +7,13 @@ import ( "os" "strings" - "github.com/netdata/go.d.plugin/agent/confgroup" - "github.com/netdata/go.d.plugin/agent/discovery" - "github.com/netdata/go.d.plugin/agent/discovery/dummy" - "github.com/netdata/go.d.plugin/agent/discovery/file" - "github.com/netdata/go.d.plugin/agent/hostinfo" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/agent/vnodes" + "github.com/netdata/netdata/go/go.d.plugin/agent/confgroup" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/dummy" + "github.com/netdata/netdata/go/go.d.plugin/agent/discovery/file" + "github.com/netdata/netdata/go/go.d.plugin/agent/hostinfo" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/vnodes" "gopkg.in/yaml.v2" ) diff --git a/src/go/collectors/go.d.plugin/agent/setup_test.go b/src/go/collectors/go.d.plugin/agent/setup_test.go index a98c40ba48..36ec682737 100644 --- a/src/go/collectors/go.d.plugin/agent/setup_test.go +++ b/src/go/collectors/go.d.plugin/agent/setup_test.go @@ -5,7 +5,7 @@ package agent import ( "testing" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/agent/vnodes/vnodes.go b/src/go/collectors/go.d.plugin/agent/vnodes/vnodes.go index fc2a87fd3f..8a3a830165 100644 --- a/src/go/collectors/go.d.plugin/agent/vnodes/vnodes.go +++ b/src/go/collectors/go.d.plugin/agent/vnodes/vnodes.go @@ -10,7 +10,7 @@ import ( "path/filepath" "sync" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/logger" "gopkg.in/yaml.v2" ) diff --git a/src/go/collectors/go.d.plugin/cmd/godplugin/main.go b/src/go/collectors/go.d.plugin/cmd/godplugin/main.go index cffdb4adde..7f1d464f58 100644 --- a/src/go/collectors/go.d.plugin/cmd/godplugin/main.go +++ b/src/go/collectors/go.d.plugin/cmd/godplugin/main.go @@ -11,15 +11,16 @@ import ( "path/filepath" "strings" - "github.com/netdata/go.d.plugin/agent" - "github.com/netdata/go.d.plugin/cli" - "github.com/netdata/go.d.plugin/logger" - "github.com/netdata/go.d.plugin/pkg/multipath" + "github.com/netdata/netdata/go/go.d.plugin/agent" + "github.com/netdata/netdata/go/go.d.plugin/agent/executable" + "github.com/netdata/netdata/go/go.d.plugin/cli" + "github.com/netdata/netdata/go/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/pkg/multipath" "github.com/jessevdk/go-flags" "golang.org/x/net/http/httpproxy" - _ "github.com/netdata/go.d.plugin/modules" + _ "github.com/netdata/netdata/go/go.d.plugin/modules" ) var ( @@ -45,6 +46,12 @@ func confDir(opts *cli.Option) multipath.MultiPath { stockDir, ) } + if executable.Directory != "" { + return multipath.New( + filepath.Join(executable.Directory, "/../../../../etc/netdata"), + filepath.Join(executable.Directory, "/../../../../usr/lib/netdata/conf.d"), + ) + } return multipath.New( filepath.Join(cd, "/../../../../etc/netdata"), filepath.Join(cd, "/../../../../usr/lib/netdata/conf.d"), @@ -64,6 +71,12 @@ func modulesConfDir(opts *cli.Option) (mpath multipath.MultiPath) { } return multipath.New(mpath...) } + if executable.Directory != "" { + return multipath.New( + filepath.Join(executable.Directory, "/../../../../etc/netdata", name), + filepath.Join(executable.Directory, "/../../../../usr/lib/netdata/conf.d", name), + ) + } return multipath.New( filepath.Join(cd, "/../../../../etc/netdata", name), filepath.Join(cd, "/../../../../usr/lib/netdata/conf.d", name), diff --git a/src/go/collectors/go.d.plugin/examples/simple/main.go b/src/go/collectors/go.d.plugin/examples/simple/main.go index 9982b91fce..dc60111ca3 100644 --- a/src/go/collectors/go.d.plugin/examples/simple/main.go +++ b/src/go/collectors/go.d.plugin/examples/simple/main.go @@ -9,11 +9,11 @@ import ( "os" "path" - "github.com/netdata/go.d.plugin/agent" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/cli" - "github.com/netdata/go.d.plugin/logger" - "github.com/netdata/go.d.plugin/pkg/multipath" + "github.com/netdata/netdata/go/go.d.plugin/agent" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/cli" + "github.com/netdata/netdata/go/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/pkg/multipath" "github.com/jessevdk/go-flags" ) diff --git a/src/go/collectors/go.d.plugin/go.mod b/src/go/collectors/go.d.plugin/go.mod index 6e5f784754..cfa8047fd1 100644 --- a/src/go/collectors/go.d.plugin/go.mod +++ b/src/go/collectors/go.d.plugin/go.mod @@ -1,4 +1,4 @@ -module github.com/netdata/go.d.plugin +module github.com/netdata/netdata/go/go.d.plugin go 1.21 @@ -41,7 +41,7 @@ require ( github.com/stretchr/testify v1.8.4 github.com/tomasen/fcgi_client v0.0.0-20180423082037-2bb3d819fd19 github.com/valyala/fastjson v1.6.4 - github.com/vmware/govmomi v0.34.2 + github.com/vmware/govmomi v0.35.0 go.mongodb.org/mongo-driver v1.14.0 golang.org/x/net v0.21.0 golang.org/x/text v0.14.0 @@ -79,7 +79,7 @@ require ( github.com/google/gnostic-models v0.6.8 // indirect github.com/google/go-cmp v0.6.0 // indirect github.com/google/gofuzz v1.2.0 // indirect - github.com/google/uuid v1.4.0 // indirect + github.com/google/uuid v1.6.0 // indirect github.com/grafana/regexp v0.0.0-20220304095617-2e8d9baf4ac2 // indirect github.com/huandu/xstrings v1.3.3 // indirect github.com/imdario/mergo v0.3.12 // indirect diff --git a/src/go/collectors/go.d.plugin/go.sum b/src/go/collectors/go.d.plugin/go.sum index 8678b5d836..55266dd9b6 100644 --- a/src/go/collectors/go.d.plugin/go.sum +++ b/src/go/collectors/go.d.plugin/go.sum @@ -111,8 +111,8 @@ github.com/google/pprof v0.0.0-20220520215854-d04f2422c8a1 h1:K4bn56FHdjFCfjSo3w github.com/google/pprof v0.0.0-20220520215854-d04f2422c8a1/go.mod h1:gSuNB+gJaOiQKLEZ+q+PK9Mq3SOzhRcw2GsGS/FhYDk= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.4.0 h1:MtMxsa51/r9yyhkyLsVeVt0B+BGQZzpQiTQ4eHZ8bc4= -github.com/google/uuid v1.4.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/gosnmp/gosnmp v1.37.0 h1:/Tf8D3b9wrnNuf/SfbvO+44mPrjVphBhRtcGg22V07Y= github.com/gosnmp/gosnmp v1.37.0/go.mod h1:GDH9vNqpsD7f2HvZhKs5dlqSEcAS6s6Qp099oZRCR+M= 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 github.com/tomasen/fcgi_client v0.0.0-20180423082037-2bb3d819fd19/go.mod h1:SXTY+QvI+KTTKXQdg0zZ7nx0u94QWh8ZAwBQYsW9cqk= github.com/valyala/fastjson v1.6.4 h1:uAUNq9Z6ymTgGhcm0UynUAB6tlbakBrz6CQFax3BXVQ= github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLrsQns1aXY= -github.com/vmware/govmomi v0.34.2 h1:o6ydkTVITOkpQU6HAf6tP5GvHFCNJlNUNlMsvFK77X4= -github.com/vmware/govmomi v0.34.2/go.mod h1:qWWT6n9mdCr/T9vySsoUqcI04sSEj4CqHXxtk/Y+Los= +github.com/vmware/govmomi v0.35.0 h1:vN6m2J5ezSJomSTHyKbvpfoEZTn2mGXWg2FFpjRTRp0= +github.com/vmware/govmomi v0.35.0/go.mod h1:VvIo6siOYFKdF9eU7qrY9+j/F99DV/LtSgsOpxFXJAY= github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c= github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI= github.com/xdg-go/scram v1.1.2 h1:FHX5I5B4i4hKRVRBCFRxq1iQRej7WO3hhBuJf+UUySY= diff --git a/src/go/collectors/go.d.plugin/hack/go-build.sh b/src/go/collectors/go.d.plugin/hack/go-build.sh index 331b6bcff6..960eaa20ba 100755 --- a/src/go/collectors/go.d.plugin/hack/go-build.sh +++ b/src/go/collectors/go.d.plugin/hack/go-build.sh @@ -40,7 +40,7 @@ GOLDFLAGS="$GOLDFLAGS -w -s -X main.version=$VERSION" build() { echo "Building ${GOOS}/${GOARCH}" - CGO_ENABLED=0 GOOS="$1" GOARCH="$2" go build -ldflags "${GOLDFLAGS}" -o "$3" "github.com/netdata/go.d.plugin/cmd/godplugin" + CGO_ENABLED=0 GOOS="$1" GOARCH="$2" go build -ldflags "${GOLDFLAGS}" -o "$3" "github.com/netdata/netdata/go/go.d.plugin/cmd/godplugin" } create_config_archives() { diff --git a/src/go/collectors/go.d.plugin/logger/logger.go b/src/go/collectors/go.d.plugin/logger/logger.go index 74782cfde8..f40819d1d3 100644 --- a/src/go/collectors/go.d.plugin/logger/logger.go +++ b/src/go/collectors/go.d.plugin/logger/logger.go @@ -12,7 +12,7 @@ import ( "sync/atomic" "syscall" - "github.com/netdata/go.d.plugin/agent/executable" + "github.com/netdata/netdata/go/go.d.plugin/agent/executable" "github.com/mattn/go-isatty" ) diff --git a/src/go/collectors/go.d.plugin/modules/activemq/activemq.go b/src/go/collectors/go.d.plugin/modules/activemq/activemq.go index 109c874dee..91727719e7 100644 --- a/src/go/collectors/go.d.plugin/modules/activemq/activemq.go +++ b/src/go/collectors/go.d.plugin/modules/activemq/activemq.go @@ -8,10 +8,10 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/pkg/matcher" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/activemq/activemq_test.go b/src/go/collectors/go.d.plugin/modules/activemq/activemq_test.go index e45ceecd42..51df43e859 100644 --- a/src/go/collectors/go.d.plugin/modules/activemq/activemq_test.go +++ b/src/go/collectors/go.d.plugin/modules/activemq/activemq_test.go @@ -7,9 +7,9 @@ import ( "net/http/httptest" "testing" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/activemq/apiclient.go b/src/go/collectors/go.d.plugin/modules/activemq/apiclient.go index 6835fd5aab..bd44d3b9d5 100644 --- a/src/go/collectors/go.d.plugin/modules/activemq/apiclient.go +++ b/src/go/collectors/go.d.plugin/modules/activemq/apiclient.go @@ -5,7 +5,7 @@ package activemq import ( "encoding/xml" "fmt" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "io" "net/http" "net/url" diff --git a/src/go/collectors/go.d.plugin/modules/activemq/charts.go b/src/go/collectors/go.d.plugin/modules/activemq/charts.go index 465cbce662..fd715970f3 100644 --- a/src/go/collectors/go.d.plugin/modules/activemq/charts.go +++ b/src/go/collectors/go.d.plugin/modules/activemq/charts.go @@ -2,7 +2,7 @@ package activemq -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( // Charts is an alias for module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/activemq/integrations/activemq.md b/src/go/collectors/go.d.plugin/modules/activemq/integrations/activemq.md index 3a4915d222..b636a5e5d1 100644 --- a/src/go/collectors/go.d.plugin/modules/activemq/integrations/activemq.md +++ b/src/go/collectors/go.d.plugin/modules/activemq/integrations/activemq.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/act meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/activemq/metadata.yaml" sidebar_label: "ActiveMQ" learn_status: "Published" -learn_rel_path: "Data Collection/Message Brokers" +learn_rel_path: "Collecting Metrics/Message Brokers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -92,7 +92,7 @@ The configuration file name for this integration is `go.d/activemq.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/apache/apache.go b/src/go/collectors/go.d.plugin/modules/apache/apache.go index 8b117463d9..bed766bb99 100644 --- a/src/go/collectors/go.d.plugin/modules/apache/apache.go +++ b/src/go/collectors/go.d.plugin/modules/apache/apache.go @@ -8,8 +8,8 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/apache/apache_test.go b/src/go/collectors/go.d.plugin/modules/apache/apache_test.go index a507113f35..83197dfd84 100644 --- a/src/go/collectors/go.d.plugin/modules/apache/apache_test.go +++ b/src/go/collectors/go.d.plugin/modules/apache/apache_test.go @@ -8,7 +8,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/apache/charts.go b/src/go/collectors/go.d.plugin/modules/apache/charts.go index 1dcf77f512..5470aecad8 100644 --- a/src/go/collectors/go.d.plugin/modules/apache/charts.go +++ b/src/go/collectors/go.d.plugin/modules/apache/charts.go @@ -2,7 +2,7 @@ package apache -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" const ( prioRequests = module.Priority + iota diff --git a/src/go/collectors/go.d.plugin/modules/apache/collect.go b/src/go/collectors/go.d.plugin/modules/apache/collect.go index 5e9a6048cc..52bad9fdaa 100644 --- a/src/go/collectors/go.d.plugin/modules/apache/collect.go +++ b/src/go/collectors/go.d.plugin/modules/apache/collect.go @@ -10,8 +10,8 @@ import ( "strconv" "strings" - "github.com/netdata/go.d.plugin/pkg/stm" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (a *Apache) collect() (map[string]int64, error) { diff --git a/src/go/collectors/go.d.plugin/modules/apache/init.go b/src/go/collectors/go.d.plugin/modules/apache/init.go index 3559997707..19ac890a14 100644 --- a/src/go/collectors/go.d.plugin/modules/apache/init.go +++ b/src/go/collectors/go.d.plugin/modules/apache/init.go @@ -7,7 +7,7 @@ import ( "net/http" "strings" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (a Apache) verifyConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/apache/integrations/apache.md b/src/go/collectors/go.d.plugin/modules/apache/integrations/apache.md index 6163ee5a9d..0c407af3ac 100644 --- a/src/go/collectors/go.d.plugin/modules/apache/integrations/apache.md +++ b/src/go/collectors/go.d.plugin/modules/apache/integrations/apache.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/apa meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/apache/metadata.yaml" sidebar_label: "Apache" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -109,7 +109,7 @@ The configuration file name for this integration is `go.d/apache.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/apache/integrations/httpd.md b/src/go/collectors/go.d.plugin/modules/apache/integrations/httpd.md index fe2c92b464..e2bd9db216 100644 --- a/src/go/collectors/go.d.plugin/modules/apache/integrations/httpd.md +++ b/src/go/collectors/go.d.plugin/modules/apache/integrations/httpd.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/apa meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/apache/metadata.yaml" sidebar_label: "HTTPD" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -109,7 +109,7 @@ The configuration file name for this integration is `go.d/apache.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/bind/bind.go b/src/go/collectors/go.d.plugin/modules/bind/bind.go index bcca0204e1..01d5518638 100644 --- a/src/go/collectors/go.d.plugin/modules/bind/bind.go +++ b/src/go/collectors/go.d.plugin/modules/bind/bind.go @@ -8,10 +8,10 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/pkg/matcher" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/bind/charts.go b/src/go/collectors/go.d.plugin/modules/bind/charts.go index d2e0cf0043..db1833ab46 100644 --- a/src/go/collectors/go.d.plugin/modules/bind/charts.go +++ b/src/go/collectors/go.d.plugin/modules/bind/charts.go @@ -3,7 +3,7 @@ package bind import ( - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) type ( diff --git a/src/go/collectors/go.d.plugin/modules/bind/json_client.go b/src/go/collectors/go.d.plugin/modules/bind/json_client.go index 1537131aae..46a98de3a6 100644 --- a/src/go/collectors/go.d.plugin/modules/bind/json_client.go +++ b/src/go/collectors/go.d.plugin/modules/bind/json_client.go @@ -10,7 +10,7 @@ import ( "net/url" "path" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) type serverStats = jsonServerStats diff --git a/src/go/collectors/go.d.plugin/modules/bind/xml3_client.go b/src/go/collectors/go.d.plugin/modules/bind/xml3_client.go index b84cabbd80..8ba804ecf5 100644 --- a/src/go/collectors/go.d.plugin/modules/bind/xml3_client.go +++ b/src/go/collectors/go.d.plugin/modules/bind/xml3_client.go @@ -9,7 +9,7 @@ import ( "net/url" "path" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) type xml3Stats struct { diff --git a/src/go/collectors/go.d.plugin/modules/cassandra/cassandra.go b/src/go/collectors/go.d.plugin/modules/cassandra/cassandra.go index 1e745fbd8a..5c05151051 100644 --- a/src/go/collectors/go.d.plugin/modules/cassandra/cassandra.go +++ b/src/go/collectors/go.d.plugin/modules/cassandra/cassandra.go @@ -6,9 +6,9 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/cassandra/cassandra_test.go b/src/go/collectors/go.d.plugin/modules/cassandra/cassandra_test.go index 4425de46e4..61a2aae2f0 100644 --- a/src/go/collectors/go.d.plugin/modules/cassandra/cassandra_test.go +++ b/src/go/collectors/go.d.plugin/modules/cassandra/cassandra_test.go @@ -8,7 +8,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/cassandra/charts.go b/src/go/collectors/go.d.plugin/modules/cassandra/charts.go index f175bf0700..8c3fc239af 100644 --- a/src/go/collectors/go.d.plugin/modules/cassandra/charts.go +++ b/src/go/collectors/go.d.plugin/modules/cassandra/charts.go @@ -5,7 +5,7 @@ package cassandra import ( "fmt" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/cassandra/collect.go b/src/go/collectors/go.d.plugin/modules/cassandra/collect.go index c96a439477..511aac6426 100644 --- a/src/go/collectors/go.d.plugin/modules/cassandra/collect.go +++ b/src/go/collectors/go.d.plugin/modules/cassandra/collect.go @@ -4,7 +4,7 @@ package cassandra import ( "errors" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" "strings" ) diff --git a/src/go/collectors/go.d.plugin/modules/cassandra/init.go b/src/go/collectors/go.d.plugin/modules/cassandra/init.go index 92bb5e56d6..7248681d85 100644 --- a/src/go/collectors/go.d.plugin/modules/cassandra/init.go +++ b/src/go/collectors/go.d.plugin/modules/cassandra/init.go @@ -5,8 +5,8 @@ package cassandra import ( "errors" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (c *Cassandra) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/cassandra/integrations/cassandra.md b/src/go/collectors/go.d.plugin/modules/cassandra/integrations/cassandra.md index 8ab132c1a0..152572b9c8 100644 --- a/src/go/collectors/go.d.plugin/modules/cassandra/integrations/cassandra.md +++ b/src/go/collectors/go.d.plugin/modules/cassandra/integrations/cassandra.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/cas meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/cassandra/metadata.yaml" sidebar_label: "Cassandra" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -152,7 +152,7 @@ The configuration file name for this integration is `go.d/cassandra.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/chrony/charts.go b/src/go/collectors/go.d.plugin/modules/chrony/charts.go index 92af547444..6b8f42897d 100644 --- a/src/go/collectors/go.d.plugin/modules/chrony/charts.go +++ b/src/go/collectors/go.d.plugin/modules/chrony/charts.go @@ -3,7 +3,7 @@ package chrony import ( - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) var charts = module.Charts{ diff --git a/src/go/collectors/go.d.plugin/modules/chrony/chrony.go b/src/go/collectors/go.d.plugin/modules/chrony/chrony.go index 9f12325b93..cb6a225ea9 100644 --- a/src/go/collectors/go.d.plugin/modules/chrony/chrony.go +++ b/src/go/collectors/go.d.plugin/modules/chrony/chrony.go @@ -7,8 +7,8 @@ import ( "time" "github.com/facebook/time/ntp/chrony" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/chrony/integrations/chrony.md b/src/go/collectors/go.d.plugin/modules/chrony/integrations/chrony.md index 52aa92d804..c1a8fd4bef 100644 --- a/src/go/collectors/go.d.plugin/modules/chrony/integrations/chrony.md +++ b/src/go/collectors/go.d.plugin/modules/chrony/integrations/chrony.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/chr meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/chrony/metadata.yaml" sidebar_label: "Chrony" learn_status: "Published" -learn_rel_path: "Data Collection/System Clock and NTP" +learn_rel_path: "Collecting Metrics/System Clock and NTP" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -102,7 +102,7 @@ The configuration file name for this integration is `go.d/chrony.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/cockroachdb/charts.go b/src/go/collectors/go.d.plugin/modules/cockroachdb/charts.go index 20802e9285..d615ef23c3 100644 --- a/src/go/collectors/go.d.plugin/modules/cockroachdb/charts.go +++ b/src/go/collectors/go.d.plugin/modules/cockroachdb/charts.go @@ -2,7 +2,7 @@ package cockroachdb -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( Charts = module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/cockroachdb/cockroachdb.go b/src/go/collectors/go.d.plugin/modules/cockroachdb/cockroachdb.go index 0a862f97ea..dd51680166 100644 --- a/src/go/collectors/go.d.plugin/modules/cockroachdb/cockroachdb.go +++ b/src/go/collectors/go.d.plugin/modules/cockroachdb/cockroachdb.go @@ -7,10 +7,10 @@ import ( "errors" "time" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) // DefaultMetricsSampleInterval hard coded to 10 diff --git a/src/go/collectors/go.d.plugin/modules/cockroachdb/cockroachdb_test.go b/src/go/collectors/go.d.plugin/modules/cockroachdb/cockroachdb_test.go index 88c3077165..efeac58ffe 100644 --- a/src/go/collectors/go.d.plugin/modules/cockroachdb/cockroachdb_test.go +++ b/src/go/collectors/go.d.plugin/modules/cockroachdb/cockroachdb_test.go @@ -8,7 +8,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/cockroachdb/collect.go b/src/go/collectors/go.d.plugin/modules/cockroachdb/collect.go index 49c8bb78c1..0cdc2d1d8a 100644 --- a/src/go/collectors/go.d.plugin/modules/cockroachdb/collect.go +++ b/src/go/collectors/go.d.plugin/modules/cockroachdb/collect.go @@ -5,8 +5,8 @@ package cockroachdb import ( "errors" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) func validCockroachDBMetrics(scraped prometheus.Series) bool { diff --git a/src/go/collectors/go.d.plugin/modules/cockroachdb/integrations/cockroachdb.md b/src/go/collectors/go.d.plugin/modules/cockroachdb/integrations/cockroachdb.md index 39bbedcdfc..7deb982464 100644 --- a/src/go/collectors/go.d.plugin/modules/cockroachdb/integrations/cockroachdb.md +++ b/src/go/collectors/go.d.plugin/modules/cockroachdb/integrations/cockroachdb.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/coc meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/cockroachdb/metadata.yaml" sidebar_label: "CockroachDB" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -155,7 +155,7 @@ The configuration file name for this integration is `go.d/cockroachdb.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/consul/charts.go b/src/go/collectors/go.d.plugin/modules/consul/charts.go index 42327cef40..3e6c50cfd8 100644 --- a/src/go/collectors/go.d.plugin/modules/consul/charts.go +++ b/src/go/collectors/go.d.plugin/modules/consul/charts.go @@ -7,7 +7,7 @@ import ( "github.com/blang/semver/v4" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/consul/collect.go b/src/go/collectors/go.d.plugin/modules/consul/collect.go index 2f4acbdfab..3b5ebfd30d 100644 --- a/src/go/collectors/go.d.plugin/modules/consul/collect.go +++ b/src/go/collectors/go.d.plugin/modules/consul/collect.go @@ -8,7 +8,7 @@ import ( "io" "net/http" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/consul/collect_metrics.go b/src/go/collectors/go.d.plugin/modules/consul/collect_metrics.go index 9e44e2b30b..8dcfe18384 100644 --- a/src/go/collectors/go.d.plugin/modules/consul/collect_metrics.go +++ b/src/go/collectors/go.d.plugin/modules/consul/collect_metrics.go @@ -8,7 +8,7 @@ import ( "strconv" "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) func (c *Consul) collectMetricsPrometheus(mx map[string]int64) error { diff --git a/src/go/collectors/go.d.plugin/modules/consul/collect_net_rtt.go b/src/go/collectors/go.d.plugin/modules/consul/collect_net_rtt.go index 50825e5568..1b1853719d 100644 --- a/src/go/collectors/go.d.plugin/modules/consul/collect_net_rtt.go +++ b/src/go/collectors/go.d.plugin/modules/consul/collect_net_rtt.go @@ -4,7 +4,7 @@ import ( "math" "time" - "github.com/netdata/go.d.plugin/pkg/metrics" + "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/consul/consul.go b/src/go/collectors/go.d.plugin/modules/consul/consul.go index ebd10984a2..246b0c833c 100644 --- a/src/go/collectors/go.d.plugin/modules/consul/consul.go +++ b/src/go/collectors/go.d.plugin/modules/consul/consul.go @@ -10,9 +10,9 @@ import ( "github.com/blang/semver/v4" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/consul/consul_test.go b/src/go/collectors/go.d.plugin/modules/consul/consul_test.go index b8f9908933..d31ac265cc 100644 --- a/src/go/collectors/go.d.plugin/modules/consul/consul_test.go +++ b/src/go/collectors/go.d.plugin/modules/consul/consul_test.go @@ -11,7 +11,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) var ( diff --git a/src/go/collectors/go.d.plugin/modules/consul/init.go b/src/go/collectors/go.d.plugin/modules/consul/init.go index 11087ec64a..944609a169 100644 --- a/src/go/collectors/go.d.plugin/modules/consul/init.go +++ b/src/go/collectors/go.d.plugin/modules/consul/init.go @@ -7,8 +7,8 @@ import ( "net/http" "net/url" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (c *Consul) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/consul/integrations/consul.md b/src/go/collectors/go.d.plugin/modules/consul/integrations/consul.md index 20d8018ee4..9de2350adf 100644 --- a/src/go/collectors/go.d.plugin/modules/consul/integrations/consul.md +++ b/src/go/collectors/go.d.plugin/modules/consul/integrations/consul.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/con meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/consul/metadata.yaml" sidebar_label: "Consul" learn_status: "Published" -learn_rel_path: "Data Collection/Service Discovery / Registry" +learn_rel_path: "Collecting Metrics/Service Discovery / Registry" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -203,7 +203,7 @@ The configuration file name for this integration is `go.d/consul.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/coredns/charts.go b/src/go/collectors/go.d.plugin/modules/coredns/charts.go index f4d4639f1d..fecc1736e6 100644 --- a/src/go/collectors/go.d.plugin/modules/coredns/charts.go +++ b/src/go/collectors/go.d.plugin/modules/coredns/charts.go @@ -2,7 +2,7 @@ package coredns -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( // Charts is an alias for module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/coredns/collect.go b/src/go/collectors/go.d.plugin/modules/coredns/collect.go index 18d7226bb7..b77f9a29c8 100644 --- a/src/go/collectors/go.d.plugin/modules/coredns/collect.go +++ b/src/go/collectors/go.d.plugin/modules/coredns/collect.go @@ -8,8 +8,8 @@ import ( "strings" "github.com/blang/semver/v4" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/coredns/coredns.go b/src/go/collectors/go.d.plugin/modules/coredns/coredns.go index 18c92caf38..241f65d740 100644 --- a/src/go/collectors/go.d.plugin/modules/coredns/coredns.go +++ b/src/go/collectors/go.d.plugin/modules/coredns/coredns.go @@ -7,11 +7,11 @@ import ( "time" "github.com/blang/semver/v4" - "github.com/netdata/go.d.plugin/pkg/matcher" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/coredns/integrations/coredns.md b/src/go/collectors/go.d.plugin/modules/coredns/integrations/coredns.md index d564c7cae5..13d04ce453 100644 --- a/src/go/collectors/go.d.plugin/modules/coredns/integrations/coredns.md +++ b/src/go/collectors/go.d.plugin/modules/coredns/integrations/coredns.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/cor meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/coredns/metadata.yaml" sidebar_label: "CoreDNS" learn_status: "Published" -learn_rel_path: "Data Collection/DNS and DHCP Servers" +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -138,7 +138,7 @@ The configuration file name for this integration is `go.d/coredns.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/coredns/metrics.go b/src/go/collectors/go.d.plugin/modules/coredns/metrics.go index 77061751e7..1c72041bfe 100644 --- a/src/go/collectors/go.d.plugin/modules/coredns/metrics.go +++ b/src/go/collectors/go.d.plugin/modules/coredns/metrics.go @@ -3,7 +3,7 @@ package coredns import ( - mtx "github.com/netdata/go.d.plugin/pkg/metrics" + mtx "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics" ) func newMetrics() *metrics { diff --git a/src/go/collectors/go.d.plugin/modules/couchbase/charts.go b/src/go/collectors/go.d.plugin/modules/couchbase/charts.go index e54c04ab65..7927180956 100644 --- a/src/go/collectors/go.d.plugin/modules/couchbase/charts.go +++ b/src/go/collectors/go.d.plugin/modules/couchbase/charts.go @@ -3,7 +3,7 @@ package couchbase import ( - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) type ( diff --git a/src/go/collectors/go.d.plugin/modules/couchbase/collect.go b/src/go/collectors/go.d.plugin/modules/couchbase/collect.go index 2b1672376c..2d4d3626d6 100644 --- a/src/go/collectors/go.d.plugin/modules/couchbase/collect.go +++ b/src/go/collectors/go.d.plugin/modules/couchbase/collect.go @@ -9,8 +9,8 @@ import ( "net/http" "net/url" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/couchbase/couchbase.go b/src/go/collectors/go.d.plugin/modules/couchbase/couchbase.go index b92ec2d769..5ad346a0e8 100644 --- a/src/go/collectors/go.d.plugin/modules/couchbase/couchbase.go +++ b/src/go/collectors/go.d.plugin/modules/couchbase/couchbase.go @@ -7,8 +7,8 @@ import ( "net/http" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/couchbase/couchbase_test.go b/src/go/collectors/go.d.plugin/modules/couchbase/couchbase_test.go index da0fa4e665..8bbd911dad 100644 --- a/src/go/collectors/go.d.plugin/modules/couchbase/couchbase_test.go +++ b/src/go/collectors/go.d.plugin/modules/couchbase/couchbase_test.go @@ -8,8 +8,8 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/couchbase/init.go b/src/go/collectors/go.d.plugin/modules/couchbase/init.go index c274ee572d..4275bfba2e 100644 --- a/src/go/collectors/go.d.plugin/modules/couchbase/init.go +++ b/src/go/collectors/go.d.plugin/modules/couchbase/init.go @@ -6,8 +6,8 @@ import ( "errors" "net/http" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (cb *Couchbase) initCharts() (*Charts, error) { diff --git a/src/go/collectors/go.d.plugin/modules/couchbase/integrations/couchbase.md b/src/go/collectors/go.d.plugin/modules/couchbase/integrations/couchbase.md index 4a1e5b6d7f..59c65538c4 100644 --- a/src/go/collectors/go.d.plugin/modules/couchbase/integrations/couchbase.md +++ b/src/go/collectors/go.d.plugin/modules/couchbase/integrations/couchbase.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/cou meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/couchbase/metadata.yaml" sidebar_label: "Couchbase" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -94,7 +94,7 @@ The configuration file name for this integration is `go.d/couchbase.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/couchdb/charts.go b/src/go/collectors/go.d.plugin/modules/couchdb/charts.go index e1576b6649..3dedec7db5 100644 --- a/src/go/collectors/go.d.plugin/modules/couchdb/charts.go +++ b/src/go/collectors/go.d.plugin/modules/couchdb/charts.go @@ -3,7 +3,7 @@ package couchdb import ( - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) type ( diff --git a/src/go/collectors/go.d.plugin/modules/couchdb/collect.go b/src/go/collectors/go.d.plugin/modules/couchdb/collect.go index 9fd041800e..59ae8b4092 100644 --- a/src/go/collectors/go.d.plugin/modules/couchdb/collect.go +++ b/src/go/collectors/go.d.plugin/modules/couchdb/collect.go @@ -13,8 +13,8 @@ import ( "strings" "sync" - "github.com/netdata/go.d.plugin/pkg/stm" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/couchdb/couchdb.go b/src/go/collectors/go.d.plugin/modules/couchdb/couchdb.go index 3342b7b7f4..7b0f007707 100644 --- a/src/go/collectors/go.d.plugin/modules/couchdb/couchdb.go +++ b/src/go/collectors/go.d.plugin/modules/couchdb/couchdb.go @@ -8,8 +8,8 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/couchdb/couchdb_test.go b/src/go/collectors/go.d.plugin/modules/couchdb/couchdb_test.go index 29b5b64af3..8aa5889b8f 100644 --- a/src/go/collectors/go.d.plugin/modules/couchdb/couchdb_test.go +++ b/src/go/collectors/go.d.plugin/modules/couchdb/couchdb_test.go @@ -8,9 +8,9 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/couchdb/init.go b/src/go/collectors/go.d.plugin/modules/couchdb/init.go index 8de4cb8985..028848152e 100644 --- a/src/go/collectors/go.d.plugin/modules/couchdb/init.go +++ b/src/go/collectors/go.d.plugin/modules/couchdb/init.go @@ -6,8 +6,8 @@ import ( "errors" "net/http" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (cdb *CouchDB) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/couchdb/integrations/couchdb.md b/src/go/collectors/go.d.plugin/modules/couchdb/integrations/couchdb.md index a7fbec7efa..42bd3d27ea 100644 --- a/src/go/collectors/go.d.plugin/modules/couchdb/integrations/couchdb.md +++ b/src/go/collectors/go.d.plugin/modules/couchdb/integrations/couchdb.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/cou meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/couchdb/metadata.yaml" sidebar_label: "CouchDB" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -102,7 +102,7 @@ The configuration file name for this integration is `go.d/couchdb.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/dnsdist/charts.go b/src/go/collectors/go.d.plugin/modules/dnsdist/charts.go index 78d73603b0..8a9914ca88 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsdist/charts.go +++ b/src/go/collectors/go.d.plugin/modules/dnsdist/charts.go @@ -2,7 +2,7 @@ package dnsdist -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" var charts = module.Charts{ { diff --git a/src/go/collectors/go.d.plugin/modules/dnsdist/collect.go b/src/go/collectors/go.d.plugin/modules/dnsdist/collect.go index 53075a5add..6507574796 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsdist/collect.go +++ b/src/go/collectors/go.d.plugin/modules/dnsdist/collect.go @@ -9,8 +9,8 @@ import ( "net/http" "net/url" - "github.com/netdata/go.d.plugin/pkg/stm" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/dnsdist/dnsdist.go b/src/go/collectors/go.d.plugin/modules/dnsdist/dnsdist.go index 0af2425344..d0b326c969 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsdist/dnsdist.go +++ b/src/go/collectors/go.d.plugin/modules/dnsdist/dnsdist.go @@ -7,8 +7,8 @@ import ( "net/http" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/dnsdist/dnsdist_test.go b/src/go/collectors/go.d.plugin/modules/dnsdist/dnsdist_test.go index 851d99016e..b0936e9fc9 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsdist/dnsdist_test.go +++ b/src/go/collectors/go.d.plugin/modules/dnsdist/dnsdist_test.go @@ -8,8 +8,8 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/dnsdist/init.go b/src/go/collectors/go.d.plugin/modules/dnsdist/init.go index d588916817..0fa45cb732 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsdist/init.go +++ b/src/go/collectors/go.d.plugin/modules/dnsdist/init.go @@ -6,8 +6,8 @@ import ( "errors" "net/http" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (d DNSdist) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/dnsdist/integrations/dnsdist.md b/src/go/collectors/go.d.plugin/modules/dnsdist/integrations/dnsdist.md index 26f7551b72..a611f5641d 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsdist/integrations/dnsdist.md +++ b/src/go/collectors/go.d.plugin/modules/dnsdist/integrations/dnsdist.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/dns meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/dnsdist/metadata.yaml" sidebar_label: "DNSdist" learn_status: "Published" -learn_rel_path: "Data Collection/DNS and DHCP Servers" +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -102,7 +102,7 @@ The configuration file name for this integration is `go.d/dnsdist.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/dnsmasq/charts.go b/src/go/collectors/go.d.plugin/modules/dnsmasq/charts.go index 8ae9908302..70a3e69906 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsmasq/charts.go +++ b/src/go/collectors/go.d.plugin/modules/dnsmasq/charts.go @@ -2,7 +2,7 @@ package dnsmasq -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" var cacheCharts = module.Charts{ { diff --git a/src/go/collectors/go.d.plugin/modules/dnsmasq/dnsmasq.go b/src/go/collectors/go.d.plugin/modules/dnsmasq/dnsmasq.go index 33e252b09b..b28c82fecf 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsmasq/dnsmasq.go +++ b/src/go/collectors/go.d.plugin/modules/dnsmasq/dnsmasq.go @@ -6,8 +6,8 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/miekg/dns" ) diff --git a/src/go/collectors/go.d.plugin/modules/dnsmasq/init.go b/src/go/collectors/go.d.plugin/modules/dnsmasq/init.go index 2ce4790ae1..b94536a352 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsmasq/init.go +++ b/src/go/collectors/go.d.plugin/modules/dnsmasq/init.go @@ -6,7 +6,7 @@ import ( "errors" "fmt" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (d Dnsmasq) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/dnsmasq/integrations/dnsmasq.md b/src/go/collectors/go.d.plugin/modules/dnsmasq/integrations/dnsmasq.md index 3d3a3fda6d..8d3ecc7174 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsmasq/integrations/dnsmasq.md +++ b/src/go/collectors/go.d.plugin/modules/dnsmasq/integrations/dnsmasq.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/dns meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/dnsmasq/metadata.yaml" sidebar_label: "Dnsmasq" learn_status: "Published" -learn_rel_path: "Data Collection/DNS and DHCP Servers" +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -90,7 +90,7 @@ The configuration file name for this integration is `go.d/dnsmasq.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/charts.go b/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/charts.go index 1d622c7b47..39ac0024fa 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/charts.go +++ b/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/collect.go b/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/collect.go index 77f174b762..4d3e3ac5e7 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/collect.go +++ b/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/collect.go @@ -12,7 +12,7 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/pkg/iprange" + "github.com/netdata/netdata/go/go.d.plugin/pkg/iprange" ) func (d *DnsmasqDHCP) collect() (map[string]int64, error) { diff --git a/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/dhcp.go b/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/dhcp.go index ede8a8ee81..ff9e018702 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/dhcp.go +++ b/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/dhcp.go @@ -7,8 +7,8 @@ import ( "net" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/iprange" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/iprange" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/integrations/dnsmasq_dhcp.md b/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/integrations/dnsmasq_dhcp.md index 617887bbd2..846ffaccbf 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/integrations/dnsmasq_dhcp.md +++ b/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/integrations/dnsmasq_dhcp.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/dns meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/dnsmasq_dhcp/metadata.yaml" sidebar_label: "Dnsmasq DHCP" learn_status: "Published" -learn_rel_path: "Data Collection/DNS and DHCP Servers" +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -117,7 +117,7 @@ The configuration file name for this integration is `go.d/dnsmasq_dhcp.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/parse_configuration.go b/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/parse_configuration.go index 688939b529..24a20bb598 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/parse_configuration.go +++ b/src/go/collectors/go.d.plugin/modules/dnsmasq_dhcp/parse_configuration.go @@ -12,7 +12,7 @@ import ( "sort" "strings" - "github.com/netdata/go.d.plugin/pkg/iprange" + "github.com/netdata/netdata/go/go.d.plugin/pkg/iprange" ) func (d *DnsmasqDHCP) parseDnsmasqDHCPConfiguration() ([]iprange.Range, []net.IP) { diff --git a/src/go/collectors/go.d.plugin/modules/dnsquery/charts.go b/src/go/collectors/go.d.plugin/modules/dnsquery/charts.go index a56c9c0bec..b229d89eb2 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsquery/charts.go +++ b/src/go/collectors/go.d.plugin/modules/dnsquery/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/dnsquery/dnsquery.go b/src/go/collectors/go.d.plugin/modules/dnsquery/dnsquery.go index dd1cd3c66f..533fe70f2c 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsquery/dnsquery.go +++ b/src/go/collectors/go.d.plugin/modules/dnsquery/dnsquery.go @@ -6,8 +6,8 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/miekg/dns" ) diff --git a/src/go/collectors/go.d.plugin/modules/dnsquery/dnsquery_test.go b/src/go/collectors/go.d.plugin/modules/dnsquery/dnsquery_test.go index 5ba8417314..35080851fb 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsquery/dnsquery_test.go +++ b/src/go/collectors/go.d.plugin/modules/dnsquery/dnsquery_test.go @@ -7,8 +7,8 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/miekg/dns" "github.com/stretchr/testify/assert" diff --git a/src/go/collectors/go.d.plugin/modules/dnsquery/init.go b/src/go/collectors/go.d.plugin/modules/dnsquery/init.go index 8e1e078c75..05dad4ac1b 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsquery/init.go +++ b/src/go/collectors/go.d.plugin/modules/dnsquery/init.go @@ -5,7 +5,7 @@ package dnsquery import ( "errors" "fmt" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/miekg/dns" ) diff --git a/src/go/collectors/go.d.plugin/modules/dnsquery/integrations/dns_query.md b/src/go/collectors/go.d.plugin/modules/dnsquery/integrations/dns_query.md index f1e4c5b5b5..c352b32e9c 100644 --- a/src/go/collectors/go.d.plugin/modules/dnsquery/integrations/dns_query.md +++ b/src/go/collectors/go.d.plugin/modules/dnsquery/integrations/dns_query.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/dns meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/dnsquery/metadata.yaml" sidebar_label: "DNS query" learn_status: "Published" -learn_rel_path: "Data Collection/DNS and DHCP Servers" +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -99,7 +99,7 @@ The configuration file name for this integration is `go.d/dns_query.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/docker/charts.go b/src/go/collectors/go.d.plugin/modules/docker/charts.go index 051c0f4053..2dd26c0e34 100644 --- a/src/go/collectors/go.d.plugin/modules/docker/charts.go +++ b/src/go/collectors/go.d.plugin/modules/docker/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/docker/docker.go b/src/go/collectors/go.d.plugin/modules/docker/docker.go index 1078de2fbc..9ab4064ef6 100644 --- a/src/go/collectors/go.d.plugin/modules/docker/docker.go +++ b/src/go/collectors/go.d.plugin/modules/docker/docker.go @@ -7,8 +7,8 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/docker/docker/api/types" docker "github.com/docker/docker/client" diff --git a/src/go/collectors/go.d.plugin/modules/docker/integrations/docker.md b/src/go/collectors/go.d.plugin/modules/docker/integrations/docker.md index b62ebf2fd7..3fc0a1b637 100644 --- a/src/go/collectors/go.d.plugin/modules/docker/integrations/docker.md +++ b/src/go/collectors/go.d.plugin/modules/docker/integrations/docker.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/doc meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/docker/metadata.yaml" sidebar_label: "Docker" learn_status: "Published" -learn_rel_path: "Data Collection/Containers and VMs" +learn_rel_path: "Collecting Metrics/Containers and VMs" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -122,7 +122,7 @@ The configuration file name for this integration is `go.d/docker.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/docker_engine/charts.go b/src/go/collectors/go.d.plugin/modules/docker_engine/charts.go index 056cad0a13..d23f6e7807 100644 --- a/src/go/collectors/go.d.plugin/modules/docker_engine/charts.go +++ b/src/go/collectors/go.d.plugin/modules/docker_engine/charts.go @@ -2,7 +2,7 @@ package docker_engine -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( Charts = module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/docker_engine/collect.go b/src/go/collectors/go.d.plugin/modules/docker_engine/collect.go index c259f3ae10..171d58b551 100644 --- a/src/go/collectors/go.d.plugin/modules/docker_engine/collect.go +++ b/src/go/collectors/go.d.plugin/modules/docker_engine/collect.go @@ -5,8 +5,8 @@ package docker_engine import ( "fmt" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) func isDockerEngineMetrics(pms prometheus.Series) bool { diff --git a/src/go/collectors/go.d.plugin/modules/docker_engine/docker_engine.go b/src/go/collectors/go.d.plugin/modules/docker_engine/docker_engine.go index 7c69daa29c..bc2757c1a8 100644 --- a/src/go/collectors/go.d.plugin/modules/docker_engine/docker_engine.go +++ b/src/go/collectors/go.d.plugin/modules/docker_engine/docker_engine.go @@ -7,10 +7,10 @@ import ( "errors" "time" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/docker_engine/docker_engine_test.go b/src/go/collectors/go.d.plugin/modules/docker_engine/docker_engine_test.go index 7ffc1ce5e4..8da63a2f78 100644 --- a/src/go/collectors/go.d.plugin/modules/docker_engine/docker_engine_test.go +++ b/src/go/collectors/go.d.plugin/modules/docker_engine/docker_engine_test.go @@ -8,10 +8,10 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/docker_engine/integrations/docker_engine.md b/src/go/collectors/go.d.plugin/modules/docker_engine/integrations/docker_engine.md index 78b46866dc..ba0873df93 100644 --- a/src/go/collectors/go.d.plugin/modules/docker_engine/integrations/docker_engine.md +++ b/src/go/collectors/go.d.plugin/modules/docker_engine/integrations/docker_engine.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/doc meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/docker_engine/metadata.yaml" sidebar_label: "Docker Engine" learn_status: "Published" -learn_rel_path: "Data Collection/Containers and VMs" +learn_rel_path: "Collecting Metrics/Containers and VMs" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -100,7 +100,7 @@ The configuration file name for this integration is `go.d/docker_engine.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/dockerhub/apiclient.go b/src/go/collectors/go.d.plugin/modules/dockerhub/apiclient.go index a4d3497007..fa6e1c8056 100644 --- a/src/go/collectors/go.d.plugin/modules/dockerhub/apiclient.go +++ b/src/go/collectors/go.d.plugin/modules/dockerhub/apiclient.go @@ -10,7 +10,7 @@ import ( "net/url" "path" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) type repository struct { diff --git a/src/go/collectors/go.d.plugin/modules/dockerhub/charts.go b/src/go/collectors/go.d.plugin/modules/dockerhub/charts.go index ba7adc9309..07ba8e18bb 100644 --- a/src/go/collectors/go.d.plugin/modules/dockerhub/charts.go +++ b/src/go/collectors/go.d.plugin/modules/dockerhub/charts.go @@ -5,7 +5,7 @@ package dockerhub import ( "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) type ( diff --git a/src/go/collectors/go.d.plugin/modules/dockerhub/dockerhub.go b/src/go/collectors/go.d.plugin/modules/dockerhub/dockerhub.go index 48836a6068..5f2119c21b 100644 --- a/src/go/collectors/go.d.plugin/modules/dockerhub/dockerhub.go +++ b/src/go/collectors/go.d.plugin/modules/dockerhub/dockerhub.go @@ -6,9 +6,9 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/dockerhub/integrations/docker_hub_repository.md b/src/go/collectors/go.d.plugin/modules/dockerhub/integrations/docker_hub_repository.md index d846146743..98cf8b9105 100644 --- a/src/go/collectors/go.d.plugin/modules/dockerhub/integrations/docker_hub_repository.md +++ b/src/go/collectors/go.d.plugin/modules/dockerhub/integrations/docker_hub_repository.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/doc meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/dockerhub/metadata.yaml" sidebar_label: "Docker Hub repository" learn_status: "Published" -learn_rel_path: "Data Collection/Containers and VMs" +learn_rel_path: "Collecting Metrics/Containers and VMs" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -92,7 +92,7 @@ The configuration file name for this integration is `go.d/dockerhub.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/elasticsearch/charts.go b/src/go/collectors/go.d.plugin/modules/elasticsearch/charts.go index 4bfb40a198..1087ef65f2 100644 --- a/src/go/collectors/go.d.plugin/modules/elasticsearch/charts.go +++ b/src/go/collectors/go.d.plugin/modules/elasticsearch/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/elasticsearch/collect.go b/src/go/collectors/go.d.plugin/modules/elasticsearch/collect.go index f39c4cf560..eb3ffb351f 100644 --- a/src/go/collectors/go.d.plugin/modules/elasticsearch/collect.go +++ b/src/go/collectors/go.d.plugin/modules/elasticsearch/collect.go @@ -13,8 +13,8 @@ import ( "strings" "sync" - "github.com/netdata/go.d.plugin/pkg/stm" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/elasticsearch/elasticsearch.go b/src/go/collectors/go.d.plugin/modules/elasticsearch/elasticsearch.go index 4b29a6cc85..a1d60d8b42 100644 --- a/src/go/collectors/go.d.plugin/modules/elasticsearch/elasticsearch.go +++ b/src/go/collectors/go.d.plugin/modules/elasticsearch/elasticsearch.go @@ -8,9 +8,9 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/elasticsearch/elasticsearch_test.go b/src/go/collectors/go.d.plugin/modules/elasticsearch/elasticsearch_test.go index d4f1628cdd..e6d0ab1059 100644 --- a/src/go/collectors/go.d.plugin/modules/elasticsearch/elasticsearch_test.go +++ b/src/go/collectors/go.d.plugin/modules/elasticsearch/elasticsearch_test.go @@ -8,8 +8,8 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/elasticsearch/init.go b/src/go/collectors/go.d.plugin/modules/elasticsearch/init.go index 764c45e4a8..955d9c3a20 100644 --- a/src/go/collectors/go.d.plugin/modules/elasticsearch/init.go +++ b/src/go/collectors/go.d.plugin/modules/elasticsearch/init.go @@ -6,7 +6,7 @@ import ( "errors" "net/http" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (es *Elasticsearch) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/elasticsearch/integrations/elasticsearch.md b/src/go/collectors/go.d.plugin/modules/elasticsearch/integrations/elasticsearch.md index a75c4eac83..2519551f9d 100644 --- a/src/go/collectors/go.d.plugin/modules/elasticsearch/integrations/elasticsearch.md +++ b/src/go/collectors/go.d.plugin/modules/elasticsearch/integrations/elasticsearch.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ela meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/elasticsearch/metadata.yaml" sidebar_label: "Elasticsearch" learn_status: "Published" -learn_rel_path: "Data Collection/Search Engines" +learn_rel_path: "Collecting Metrics/Search Engines" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -194,7 +194,7 @@ The configuration file name for this integration is `go.d/elasticsearch.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/elasticsearch/integrations/opensearch.md b/src/go/collectors/go.d.plugin/modules/elasticsearch/integrations/opensearch.md index b19c15e42a..efdaeeebdd 100644 --- a/src/go/collectors/go.d.plugin/modules/elasticsearch/integrations/opensearch.md +++ b/src/go/collectors/go.d.plugin/modules/elasticsearch/integrations/opensearch.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ela meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/elasticsearch/metadata.yaml" sidebar_label: "OpenSearch" learn_status: "Published" -learn_rel_path: "Data Collection/Search Engines" +learn_rel_path: "Collecting Metrics/Search Engines" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -194,7 +194,7 @@ The configuration file name for this integration is `go.d/elasticsearch.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/energid/charts.go b/src/go/collectors/go.d.plugin/modules/energid/charts.go index 3dcc252af3..5aa57350b6 100644 --- a/src/go/collectors/go.d.plugin/modules/energid/charts.go +++ b/src/go/collectors/go.d.plugin/modules/energid/charts.go @@ -2,7 +2,7 @@ package energid -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" var charts = module.Charts{ // getblockchaininfo (blockchain processing) diff --git a/src/go/collectors/go.d.plugin/modules/energid/collect.go b/src/go/collectors/go.d.plugin/modules/energid/collect.go index 965ee4b366..9bd6c0a679 100644 --- a/src/go/collectors/go.d.plugin/modules/energid/collect.go +++ b/src/go/collectors/go.d.plugin/modules/energid/collect.go @@ -9,8 +9,8 @@ import ( "io" "net/http" - "github.com/netdata/go.d.plugin/pkg/stm" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/energid/energid.go b/src/go/collectors/go.d.plugin/modules/energid/energid.go index fcffe50d86..0a6ef10e0e 100644 --- a/src/go/collectors/go.d.plugin/modules/energid/energid.go +++ b/src/go/collectors/go.d.plugin/modules/energid/energid.go @@ -7,8 +7,8 @@ import ( "net/http" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/energid/energid_test.go b/src/go/collectors/go.d.plugin/modules/energid/energid_test.go index ab0e2f24e1..2410aade57 100644 --- a/src/go/collectors/go.d.plugin/modules/energid/energid_test.go +++ b/src/go/collectors/go.d.plugin/modules/energid/energid_test.go @@ -10,8 +10,8 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/energid/init.go b/src/go/collectors/go.d.plugin/modules/energid/init.go index 3b7b7fb9e8..a6bba11198 100644 --- a/src/go/collectors/go.d.plugin/modules/energid/init.go +++ b/src/go/collectors/go.d.plugin/modules/energid/init.go @@ -6,8 +6,8 @@ import ( "errors" "net/http" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (e Energid) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/energid/integrations/energi_core_wallet.md b/src/go/collectors/go.d.plugin/modules/energid/integrations/energi_core_wallet.md index 1215bed155..405123277d 100644 --- a/src/go/collectors/go.d.plugin/modules/energid/integrations/energi_core_wallet.md +++ b/src/go/collectors/go.d.plugin/modules/energid/integrations/energi_core_wallet.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ene meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/energid/metadata.yaml" sidebar_label: "Energi Core Wallet" learn_status: "Published" -learn_rel_path: "Data Collection/Blockchain Servers" +learn_rel_path: "Collecting Metrics/Blockchain Servers" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -94,7 +94,7 @@ The configuration file name for this integration is `go.d/energid.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/envoy/charts.go b/src/go/collectors/go.d.plugin/modules/envoy/charts.go index 36fa301ac8..0f6d71655e 100644 --- a/src/go/collectors/go.d.plugin/modules/envoy/charts.go +++ b/src/go/collectors/go.d.plugin/modules/envoy/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/prometheus/prometheus/model/labels" ) diff --git a/src/go/collectors/go.d.plugin/modules/envoy/collect.go b/src/go/collectors/go.d.plugin/modules/envoy/collect.go index 43ec1975a7..a7c74379da 100644 --- a/src/go/collectors/go.d.plugin/modules/envoy/collect.go +++ b/src/go/collectors/go.d.plugin/modules/envoy/collect.go @@ -6,7 +6,7 @@ import ( "strconv" "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" "github.com/prometheus/prometheus/model/labels" ) diff --git a/src/go/collectors/go.d.plugin/modules/envoy/envoy.go b/src/go/collectors/go.d.plugin/modules/envoy/envoy.go index de9efa13dc..1a8662e8d8 100644 --- a/src/go/collectors/go.d.plugin/modules/envoy/envoy.go +++ b/src/go/collectors/go.d.plugin/modules/envoy/envoy.go @@ -6,9 +6,9 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/envoy/envoy_test.go b/src/go/collectors/go.d.plugin/modules/envoy/envoy_test.go index 3bdd82cb1a..3ddb6f0629 100644 --- a/src/go/collectors/go.d.plugin/modules/envoy/envoy_test.go +++ b/src/go/collectors/go.d.plugin/modules/envoy/envoy_test.go @@ -8,7 +8,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/envoy/init.go b/src/go/collectors/go.d.plugin/modules/envoy/init.go index 96d73545b9..0ce89c8bc3 100644 --- a/src/go/collectors/go.d.plugin/modules/envoy/init.go +++ b/src/go/collectors/go.d.plugin/modules/envoy/init.go @@ -5,8 +5,8 @@ package envoy import ( "errors" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (e *Envoy) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/envoy/integrations/envoy.md b/src/go/collectors/go.d.plugin/modules/envoy/integrations/envoy.md index 3702f7abe3..013b1d7e52 100644 --- a/src/go/collectors/go.d.plugin/modules/envoy/integrations/envoy.md +++ b/src/go/collectors/go.d.plugin/modules/envoy/integrations/envoy.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/env meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/envoy/metadata.yaml" sidebar_label: "Envoy" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -141,7 +141,7 @@ The configuration file name for this integration is `go.d/envoy.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/example/charts.go b/src/go/collectors/go.d.plugin/modules/example/charts.go index 85604d13a3..d3973a99d6 100644 --- a/src/go/collectors/go.d.plugin/modules/example/charts.go +++ b/src/go/collectors/go.d.plugin/modules/example/charts.go @@ -4,7 +4,7 @@ package example import ( "fmt" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) var chartTemplate = module.Chart{ diff --git a/src/go/collectors/go.d.plugin/modules/example/collect.go b/src/go/collectors/go.d.plugin/modules/example/collect.go index b0a9b9d7bb..588d605dfe 100644 --- a/src/go/collectors/go.d.plugin/modules/example/collect.go +++ b/src/go/collectors/go.d.plugin/modules/example/collect.go @@ -5,7 +5,7 @@ package example import ( "fmt" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (e *Example) collect() (map[string]int64, error) { diff --git a/src/go/collectors/go.d.plugin/modules/example/example.go b/src/go/collectors/go.d.plugin/modules/example/example.go index fe24bcc3e4..258d15f145 100644 --- a/src/go/collectors/go.d.plugin/modules/example/example.go +++ b/src/go/collectors/go.d.plugin/modules/example/example.go @@ -6,7 +6,7 @@ import ( _ "embed" "math/rand" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/example/init.go b/src/go/collectors/go.d.plugin/modules/example/init.go index fdfbcd8072..6ee39ef4f4 100644 --- a/src/go/collectors/go.d.plugin/modules/example/init.go +++ b/src/go/collectors/go.d.plugin/modules/example/init.go @@ -4,7 +4,7 @@ package example import ( "errors" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (e *Example) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/filecheck/charts.go b/src/go/collectors/go.d.plugin/modules/filecheck/charts.go index c00f1fda10..7c7ada7a52 100644 --- a/src/go/collectors/go.d.plugin/modules/filecheck/charts.go +++ b/src/go/collectors/go.d.plugin/modules/filecheck/charts.go @@ -2,7 +2,7 @@ package filecheck -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" var ( fileCharts = module.Charts{ diff --git a/src/go/collectors/go.d.plugin/modules/filecheck/collect_dirs.go b/src/go/collectors/go.d.plugin/modules/filecheck/collect_dirs.go index 32861c0e02..c781ba0907 100644 --- a/src/go/collectors/go.d.plugin/modules/filecheck/collect_dirs.go +++ b/src/go/collectors/go.d.plugin/modules/filecheck/collect_dirs.go @@ -9,7 +9,7 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (fc *Filecheck) collectDirs(ms map[string]int64) { diff --git a/src/go/collectors/go.d.plugin/modules/filecheck/collect_files.go b/src/go/collectors/go.d.plugin/modules/filecheck/collect_files.go index 25568473f5..c42a41607c 100644 --- a/src/go/collectors/go.d.plugin/modules/filecheck/collect_files.go +++ b/src/go/collectors/go.d.plugin/modules/filecheck/collect_files.go @@ -9,7 +9,7 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (fc *Filecheck) collectFiles(ms map[string]int64) { diff --git a/src/go/collectors/go.d.plugin/modules/filecheck/filecheck.go b/src/go/collectors/go.d.plugin/modules/filecheck/filecheck.go index e1369bc1c3..76cdf2116a 100644 --- a/src/go/collectors/go.d.plugin/modules/filecheck/filecheck.go +++ b/src/go/collectors/go.d.plugin/modules/filecheck/filecheck.go @@ -6,8 +6,8 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/filecheck/filecheck_test.go b/src/go/collectors/go.d.plugin/modules/filecheck/filecheck_test.go index 5024f64603..6db4df7ed4 100644 --- a/src/go/collectors/go.d.plugin/modules/filecheck/filecheck_test.go +++ b/src/go/collectors/go.d.plugin/modules/filecheck/filecheck_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/filecheck/init.go b/src/go/collectors/go.d.plugin/modules/filecheck/init.go index 858e3e503b..fec5dfb62b 100644 --- a/src/go/collectors/go.d.plugin/modules/filecheck/init.go +++ b/src/go/collectors/go.d.plugin/modules/filecheck/init.go @@ -5,7 +5,7 @@ package filecheck import ( "errors" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (fc Filecheck) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/filecheck/integrations/files_and_directories.md b/src/go/collectors/go.d.plugin/modules/filecheck/integrations/files_and_directories.md index 4daf317e9b..34581342e1 100644 --- a/src/go/collectors/go.d.plugin/modules/filecheck/integrations/files_and_directories.md +++ b/src/go/collectors/go.d.plugin/modules/filecheck/integrations/files_and_directories.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/fil meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/filecheck/metadata.yaml" sidebar_label: "Files and directories" learn_status: "Published" -learn_rel_path: "Data Collection/Linux Systems" +learn_rel_path: "Collecting Metrics/Linux Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -95,7 +95,7 @@ The configuration file name for this integration is `go.d/filecheck.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/fluentd/apiclient.go b/src/go/collectors/go.d.plugin/modules/fluentd/apiclient.go index 01773976a1..1bee8148e4 100644 --- a/src/go/collectors/go.d.plugin/modules/fluentd/apiclient.go +++ b/src/go/collectors/go.d.plugin/modules/fluentd/apiclient.go @@ -10,7 +10,7 @@ import ( "net/url" "path" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const pluginsPath = "/api/plugins.json" diff --git a/src/go/collectors/go.d.plugin/modules/fluentd/charts.go b/src/go/collectors/go.d.plugin/modules/fluentd/charts.go index 24b8b21aca..3b7d0d5955 100644 --- a/src/go/collectors/go.d.plugin/modules/fluentd/charts.go +++ b/src/go/collectors/go.d.plugin/modules/fluentd/charts.go @@ -2,7 +2,7 @@ package fluentd -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( // Charts is an alias for module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/fluentd/fluentd.go b/src/go/collectors/go.d.plugin/modules/fluentd/fluentd.go index 5b627b7b44..35bb88b326 100644 --- a/src/go/collectors/go.d.plugin/modules/fluentd/fluentd.go +++ b/src/go/collectors/go.d.plugin/modules/fluentd/fluentd.go @@ -7,10 +7,10 @@ import ( "fmt" "time" - "github.com/netdata/go.d.plugin/pkg/matcher" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/fluentd/integrations/fluentd.md b/src/go/collectors/go.d.plugin/modules/fluentd/integrations/fluentd.md index fd11351eeb..b1b11a1612 100644 --- a/src/go/collectors/go.d.plugin/modules/fluentd/integrations/fluentd.md +++ b/src/go/collectors/go.d.plugin/modules/fluentd/integrations/fluentd.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/flu meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/fluentd/metadata.yaml" sidebar_label: "Fluentd" learn_status: "Published" -learn_rel_path: "Data Collection/Logs Servers" +learn_rel_path: "Collecting Metrics/Logs Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -93,7 +93,7 @@ The configuration file name for this integration is `go.d/fluentd.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/freeradius/charts.go b/src/go/collectors/go.d.plugin/modules/freeradius/charts.go index 6f84d5cf3b..18732c9440 100644 --- a/src/go/collectors/go.d.plugin/modules/freeradius/charts.go +++ b/src/go/collectors/go.d.plugin/modules/freeradius/charts.go @@ -2,7 +2,7 @@ package freeradius -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( // Charts is an alias for module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/freeradius/collect.go b/src/go/collectors/go.d.plugin/modules/freeradius/collect.go index 44cc44769d..8ec4bf46bd 100644 --- a/src/go/collectors/go.d.plugin/modules/freeradius/collect.go +++ b/src/go/collectors/go.d.plugin/modules/freeradius/collect.go @@ -3,7 +3,7 @@ package freeradius import ( - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) func (f *FreeRADIUS) collect() (map[string]int64, error) { diff --git a/src/go/collectors/go.d.plugin/modules/freeradius/freeradius.go b/src/go/collectors/go.d.plugin/modules/freeradius/freeradius.go index 5897917cf7..8f1e1cacf7 100644 --- a/src/go/collectors/go.d.plugin/modules/freeradius/freeradius.go +++ b/src/go/collectors/go.d.plugin/modules/freeradius/freeradius.go @@ -7,10 +7,10 @@ import ( "errors" "time" - "github.com/netdata/go.d.plugin/modules/freeradius/api" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/modules/freeradius/api" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/freeradius/freeradius_test.go b/src/go/collectors/go.d.plugin/modules/freeradius/freeradius_test.go index b9432ec96a..b8c57deadd 100644 --- a/src/go/collectors/go.d.plugin/modules/freeradius/freeradius_test.go +++ b/src/go/collectors/go.d.plugin/modules/freeradius/freeradius_test.go @@ -6,9 +6,9 @@ import ( "errors" "testing" - "github.com/netdata/go.d.plugin/modules/freeradius/api" + "github.com/netdata/netdata/go/go.d.plugin/modules/freeradius/api" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" ) diff --git a/src/go/collectors/go.d.plugin/modules/freeradius/integrations/freeradius.md b/src/go/collectors/go.d.plugin/modules/freeradius/integrations/freeradius.md index 014a0577ce..839a919a57 100644 --- a/src/go/collectors/go.d.plugin/modules/freeradius/integrations/freeradius.md +++ b/src/go/collectors/go.d.plugin/modules/freeradius/integrations/freeradius.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/fre meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/freeradius/metadata.yaml" sidebar_label: "FreeRADIUS" learn_status: "Published" -learn_rel_path: "Data Collection/Authentication and Authorization" +learn_rel_path: "Collecting Metrics/Authentication and Authorization" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -103,7 +103,7 @@ The configuration file name for this integration is `go.d/freeradius.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/geth/charts.go b/src/go/collectors/go.d.plugin/modules/geth/charts.go index d0058e19da..3166317397 100644 --- a/src/go/collectors/go.d.plugin/modules/geth/charts.go +++ b/src/go/collectors/go.d.plugin/modules/geth/charts.go @@ -2,7 +2,7 @@ package geth -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( Charts = module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/geth/collect.go b/src/go/collectors/go.d.plugin/modules/geth/collect.go index 446155bd59..dfdf54946a 100644 --- a/src/go/collectors/go.d.plugin/modules/geth/collect.go +++ b/src/go/collectors/go.d.plugin/modules/geth/collect.go @@ -3,8 +3,8 @@ package geth import ( - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) func (g *Geth) collect() (map[string]int64, error) { diff --git a/src/go/collectors/go.d.plugin/modules/geth/geth.go b/src/go/collectors/go.d.plugin/modules/geth/geth.go index fe6b2bd960..fd4037e7c6 100644 --- a/src/go/collectors/go.d.plugin/modules/geth/geth.go +++ b/src/go/collectors/go.d.plugin/modules/geth/geth.go @@ -7,10 +7,10 @@ import ( "errors" "time" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/geth/integrations/go-ethereum.md b/src/go/collectors/go.d.plugin/modules/geth/integrations/go-ethereum.md index d0245834cf..092f2ed2a5 100644 --- a/src/go/collectors/go.d.plugin/modules/geth/integrations/go-ethereum.md +++ b/src/go/collectors/go.d.plugin/modules/geth/integrations/go-ethereum.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/get meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/geth/metadata.yaml" sidebar_label: "Go-ethereum" learn_status: "Published" -learn_rel_path: "Data Collection/Blockchain Servers" +learn_rel_path: "Collecting Metrics/Blockchain Servers" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -103,7 +103,7 @@ The configuration file name for this integration is `go.d/geth.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/haproxy/charts.go b/src/go/collectors/go.d.plugin/modules/haproxy/charts.go index 8c5f6bef64..503094c58d 100644 --- a/src/go/collectors/go.d.plugin/modules/haproxy/charts.go +++ b/src/go/collectors/go.d.plugin/modules/haproxy/charts.go @@ -5,7 +5,7 @@ package haproxy import ( "fmt" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) var charts = module.Charts{ diff --git a/src/go/collectors/go.d.plugin/modules/haproxy/collect.go b/src/go/collectors/go.d.plugin/modules/haproxy/collect.go index 10d24a088b..203ff1ec4a 100644 --- a/src/go/collectors/go.d.plugin/modules/haproxy/collect.go +++ b/src/go/collectors/go.d.plugin/modules/haproxy/collect.go @@ -6,8 +6,8 @@ import ( "errors" "strings" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/haproxy/haproxy.go b/src/go/collectors/go.d.plugin/modules/haproxy/haproxy.go index ffc936711d..01f42d7335 100644 --- a/src/go/collectors/go.d.plugin/modules/haproxy/haproxy.go +++ b/src/go/collectors/go.d.plugin/modules/haproxy/haproxy.go @@ -6,9 +6,9 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/haproxy/haproxy_test.go b/src/go/collectors/go.d.plugin/modules/haproxy/haproxy_test.go index c881c19f37..26d0215f00 100644 --- a/src/go/collectors/go.d.plugin/modules/haproxy/haproxy_test.go +++ b/src/go/collectors/go.d.plugin/modules/haproxy/haproxy_test.go @@ -8,8 +8,8 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/haproxy/init.go b/src/go/collectors/go.d.plugin/modules/haproxy/init.go index 30e0c45604..2163b9624d 100644 --- a/src/go/collectors/go.d.plugin/modules/haproxy/init.go +++ b/src/go/collectors/go.d.plugin/modules/haproxy/init.go @@ -5,9 +5,9 @@ package haproxy import ( "errors" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/prometheus/selector" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (h Haproxy) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/haproxy/integrations/haproxy.md b/src/go/collectors/go.d.plugin/modules/haproxy/integrations/haproxy.md index d4cf4146fc..2b55763be4 100644 --- a/src/go/collectors/go.d.plugin/modules/haproxy/integrations/haproxy.md +++ b/src/go/collectors/go.d.plugin/modules/haproxy/integrations/haproxy.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/hap meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/haproxy/metadata.yaml" sidebar_label: "HAProxy" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -108,7 +108,7 @@ The configuration file name for this integration is `go.d/haproxy.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/hdfs/charts.go b/src/go/collectors/go.d.plugin/modules/hdfs/charts.go index 77e4b09c89..94af99d2f0 100644 --- a/src/go/collectors/go.d.plugin/modules/hdfs/charts.go +++ b/src/go/collectors/go.d.plugin/modules/hdfs/charts.go @@ -2,7 +2,7 @@ package hdfs -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( Charts = module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/hdfs/client.go b/src/go/collectors/go.d.plugin/modules/hdfs/client.go index bf46c5ddd7..bdeced146e 100644 --- a/src/go/collectors/go.d.plugin/modules/hdfs/client.go +++ b/src/go/collectors/go.d.plugin/modules/hdfs/client.go @@ -8,7 +8,7 @@ import ( "io" "net/http" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func newClient(httpClient *http.Client, request web.Request) *client { diff --git a/src/go/collectors/go.d.plugin/modules/hdfs/collect.go b/src/go/collectors/go.d.plugin/modules/hdfs/collect.go index 9879787cd4..c9c8dcdd38 100644 --- a/src/go/collectors/go.d.plugin/modules/hdfs/collect.go +++ b/src/go/collectors/go.d.plugin/modules/hdfs/collect.go @@ -8,7 +8,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) type ( diff --git a/src/go/collectors/go.d.plugin/modules/hdfs/hdfs.go b/src/go/collectors/go.d.plugin/modules/hdfs/hdfs.go index aa0b2efe28..563a9383d3 100644 --- a/src/go/collectors/go.d.plugin/modules/hdfs/hdfs.go +++ b/src/go/collectors/go.d.plugin/modules/hdfs/hdfs.go @@ -8,9 +8,9 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/hdfs/hdfs_test.go b/src/go/collectors/go.d.plugin/modules/hdfs/hdfs_test.go index dc5b7cf0e7..dadd123982 100644 --- a/src/go/collectors/go.d.plugin/modules/hdfs/hdfs_test.go +++ b/src/go/collectors/go.d.plugin/modules/hdfs/hdfs_test.go @@ -8,7 +8,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/hdfs/integrations/hadoop_distributed_file_system_hdfs.md b/src/go/collectors/go.d.plugin/modules/hdfs/integrations/hadoop_distributed_file_system_hdfs.md index c19268625f..99dfe06da7 100644 --- a/src/go/collectors/go.d.plugin/modules/hdfs/integrations/hadoop_distributed_file_system_hdfs.md +++ b/src/go/collectors/go.d.plugin/modules/hdfs/integrations/hadoop_distributed_file_system_hdfs.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/hdf meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/hdfs/metadata.yaml" sidebar_label: "Hadoop Distributed File System (HDFS)" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -121,7 +121,7 @@ The configuration file name for this integration is `go.d/hdfs.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/httpcheck/charts.go b/src/go/collectors/go.d.plugin/modules/httpcheck/charts.go index c0ae78c22e..efb0f874b6 100644 --- a/src/go/collectors/go.d.plugin/modules/httpcheck/charts.go +++ b/src/go/collectors/go.d.plugin/modules/httpcheck/charts.go @@ -3,7 +3,7 @@ package httpcheck import ( - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/httpcheck/collect.go b/src/go/collectors/go.d.plugin/modules/httpcheck/collect.go index 813a343d53..8d88dc02f8 100644 --- a/src/go/collectors/go.d.plugin/modules/httpcheck/collect.go +++ b/src/go/collectors/go.d.plugin/modules/httpcheck/collect.go @@ -12,8 +12,8 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/pkg/stm" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) type reqErrCode int diff --git a/src/go/collectors/go.d.plugin/modules/httpcheck/httpcheck.go b/src/go/collectors/go.d.plugin/modules/httpcheck/httpcheck.go index abb2c821e4..3cd616013e 100644 --- a/src/go/collectors/go.d.plugin/modules/httpcheck/httpcheck.go +++ b/src/go/collectors/go.d.plugin/modules/httpcheck/httpcheck.go @@ -8,9 +8,9 @@ import ( "regexp" "time" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/httpcheck/httpcheck_test.go b/src/go/collectors/go.d.plugin/modules/httpcheck/httpcheck_test.go index 9d866e0938..9a9ef3bfd4 100644 --- a/src/go/collectors/go.d.plugin/modules/httpcheck/httpcheck_test.go +++ b/src/go/collectors/go.d.plugin/modules/httpcheck/httpcheck_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/httpcheck/init.go b/src/go/collectors/go.d.plugin/modules/httpcheck/init.go index f5b31ad630..a7f7081918 100644 --- a/src/go/collectors/go.d.plugin/modules/httpcheck/init.go +++ b/src/go/collectors/go.d.plugin/modules/httpcheck/init.go @@ -8,9 +8,9 @@ import ( "net/http" "regexp" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/matcher" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) type headerMatch struct { diff --git a/src/go/collectors/go.d.plugin/modules/httpcheck/integrations/http_endpoints.md b/src/go/collectors/go.d.plugin/modules/httpcheck/integrations/http_endpoints.md index e436828a9c..eef4d48b05 100644 --- a/src/go/collectors/go.d.plugin/modules/httpcheck/integrations/http_endpoints.md +++ b/src/go/collectors/go.d.plugin/modules/httpcheck/integrations/http_endpoints.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/htt meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/httpcheck/metadata.yaml" sidebar_label: "HTTP Endpoints" learn_status: "Published" -learn_rel_path: "Data Collection/Synthetic Checks" +learn_rel_path: "Collecting Metrics/Synthetic Checks" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -94,7 +94,7 @@ The configuration file name for this integration is `go.d/httpcheck.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/init.go b/src/go/collectors/go.d.plugin/modules/init.go index 9e44cf98a5..c16959e35d 100644 --- a/src/go/collectors/go.d.plugin/modules/init.go +++ b/src/go/collectors/go.d.plugin/modules/init.go @@ -3,84 +3,84 @@ package modules import ( - _ "github.com/netdata/go.d.plugin/modules/activemq" - _ "github.com/netdata/go.d.plugin/modules/apache" - _ "github.com/netdata/go.d.plugin/modules/bind" - _ "github.com/netdata/go.d.plugin/modules/cassandra" - _ "github.com/netdata/go.d.plugin/modules/chrony" - _ "github.com/netdata/go.d.plugin/modules/cockroachdb" - _ "github.com/netdata/go.d.plugin/modules/consul" - _ "github.com/netdata/go.d.plugin/modules/coredns" - _ "github.com/netdata/go.d.plugin/modules/couchbase" - _ "github.com/netdata/go.d.plugin/modules/couchdb" - _ "github.com/netdata/go.d.plugin/modules/dnsdist" - _ "github.com/netdata/go.d.plugin/modules/dnsmasq" - _ "github.com/netdata/go.d.plugin/modules/dnsmasq_dhcp" - _ "github.com/netdata/go.d.plugin/modules/dnsquery" - _ "github.com/netdata/go.d.plugin/modules/docker" - _ "github.com/netdata/go.d.plugin/modules/docker_engine" - _ "github.com/netdata/go.d.plugin/modules/dockerhub" - _ "github.com/netdata/go.d.plugin/modules/elasticsearch" - _ "github.com/netdata/go.d.plugin/modules/energid" - _ "github.com/netdata/go.d.plugin/modules/envoy" - _ "github.com/netdata/go.d.plugin/modules/example" - _ "github.com/netdata/go.d.plugin/modules/filecheck" - _ "github.com/netdata/go.d.plugin/modules/fluentd" - _ "github.com/netdata/go.d.plugin/modules/freeradius" - _ "github.com/netdata/go.d.plugin/modules/geth" - _ "github.com/netdata/go.d.plugin/modules/haproxy" - _ "github.com/netdata/go.d.plugin/modules/hdfs" - _ "github.com/netdata/go.d.plugin/modules/httpcheck" - _ "github.com/netdata/go.d.plugin/modules/isc_dhcpd" - _ "github.com/netdata/go.d.plugin/modules/k8s_kubelet" - _ "github.com/netdata/go.d.plugin/modules/k8s_kubeproxy" - _ "github.com/netdata/go.d.plugin/modules/k8s_state" - _ "github.com/netdata/go.d.plugin/modules/lighttpd" - _ "github.com/netdata/go.d.plugin/modules/logind" - _ "github.com/netdata/go.d.plugin/modules/logstash" - _ "github.com/netdata/go.d.plugin/modules/mongodb" - _ "github.com/netdata/go.d.plugin/modules/mysql" - _ "github.com/netdata/go.d.plugin/modules/nginx" - _ "github.com/netdata/go.d.plugin/modules/nginxplus" - _ "github.com/netdata/go.d.plugin/modules/nginxvts" - _ "github.com/netdata/go.d.plugin/modules/ntpd" - _ "github.com/netdata/go.d.plugin/modules/nvidia_smi" - _ "github.com/netdata/go.d.plugin/modules/nvme" - _ "github.com/netdata/go.d.plugin/modules/openvpn" - _ "github.com/netdata/go.d.plugin/modules/openvpn_status_log" - _ "github.com/netdata/go.d.plugin/modules/pgbouncer" - _ "github.com/netdata/go.d.plugin/modules/phpdaemon" - _ "github.com/netdata/go.d.plugin/modules/phpfpm" - _ "github.com/netdata/go.d.plugin/modules/pihole" - _ "github.com/netdata/go.d.plugin/modules/pika" - _ "github.com/netdata/go.d.plugin/modules/ping" - _ "github.com/netdata/go.d.plugin/modules/portcheck" - _ "github.com/netdata/go.d.plugin/modules/postgres" - _ "github.com/netdata/go.d.plugin/modules/powerdns" - _ "github.com/netdata/go.d.plugin/modules/powerdns_recursor" - _ "github.com/netdata/go.d.plugin/modules/prometheus" - _ "github.com/netdata/go.d.plugin/modules/proxysql" - _ "github.com/netdata/go.d.plugin/modules/pulsar" - _ "github.com/netdata/go.d.plugin/modules/rabbitmq" - _ "github.com/netdata/go.d.plugin/modules/redis" - _ "github.com/netdata/go.d.plugin/modules/scaleio" - _ "github.com/netdata/go.d.plugin/modules/snmp" - _ "github.com/netdata/go.d.plugin/modules/solr" - _ "github.com/netdata/go.d.plugin/modules/springboot2" - _ "github.com/netdata/go.d.plugin/modules/squidlog" - _ "github.com/netdata/go.d.plugin/modules/supervisord" - _ "github.com/netdata/go.d.plugin/modules/systemdunits" - _ "github.com/netdata/go.d.plugin/modules/tengine" - _ "github.com/netdata/go.d.plugin/modules/traefik" - _ "github.com/netdata/go.d.plugin/modules/unbound" - _ "github.com/netdata/go.d.plugin/modules/upsd" - _ "github.com/netdata/go.d.plugin/modules/vcsa" - _ "github.com/netdata/go.d.plugin/modules/vernemq" - _ "github.com/netdata/go.d.plugin/modules/vsphere" - _ "github.com/netdata/go.d.plugin/modules/weblog" - _ "github.com/netdata/go.d.plugin/modules/whoisquery" - _ "github.com/netdata/go.d.plugin/modules/windows" - _ "github.com/netdata/go.d.plugin/modules/wireguard" - _ "github.com/netdata/go.d.plugin/modules/x509check" - _ "github.com/netdata/go.d.plugin/modules/zookeeper" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/activemq" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/apache" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/bind" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/cassandra" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/chrony" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/cockroachdb" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/consul" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/coredns" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/couchbase" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/couchdb" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/dnsdist" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/dnsmasq" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/dnsmasq_dhcp" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/dnsquery" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/docker" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/docker_engine" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/dockerhub" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/elasticsearch" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/energid" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/envoy" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/example" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/filecheck" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/fluentd" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/freeradius" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/geth" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/haproxy" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/hdfs" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/httpcheck" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/isc_dhcpd" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/k8s_kubelet" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/k8s_kubeproxy" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/k8s_state" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/lighttpd" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/logind" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/logstash" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/mongodb" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/mysql" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/nginx" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/nginxplus" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/nginxvts" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/ntpd" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/nvidia_smi" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/nvme" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/openvpn" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/openvpn_status_log" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/pgbouncer" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/phpdaemon" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/phpfpm" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/pihole" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/pika" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/ping" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/portcheck" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/postgres" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/powerdns" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/powerdns_recursor" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/prometheus" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/proxysql" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/pulsar" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/rabbitmq" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/redis" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/snmp" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/solr" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/springboot2" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/squidlog" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/supervisord" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/systemdunits" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/tengine" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/traefik" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/unbound" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/upsd" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/vcsa" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/vernemq" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/weblog" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/whoisquery" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/windows" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/wireguard" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/x509check" + _ "github.com/netdata/netdata/go/go.d.plugin/modules/zookeeper" ) diff --git a/src/go/collectors/go.d.plugin/modules/isc_dhcpd/charts.go b/src/go/collectors/go.d.plugin/modules/isc_dhcpd/charts.go index 07d8ccf906..4763a8ab11 100644 --- a/src/go/collectors/go.d.plugin/modules/isc_dhcpd/charts.go +++ b/src/go/collectors/go.d.plugin/modules/isc_dhcpd/charts.go @@ -3,7 +3,7 @@ package isc_dhcpd import ( - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) var activeLeasesTotalChart = module.Chart{ diff --git a/src/go/collectors/go.d.plugin/modules/isc_dhcpd/init.go b/src/go/collectors/go.d.plugin/modules/isc_dhcpd/init.go index 847a4590b1..56e45a46e0 100644 --- a/src/go/collectors/go.d.plugin/modules/isc_dhcpd/init.go +++ b/src/go/collectors/go.d.plugin/modules/isc_dhcpd/init.go @@ -6,8 +6,8 @@ import ( "errors" "fmt" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/iprange" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/iprange" ) type ipPool struct { diff --git a/src/go/collectors/go.d.plugin/modules/isc_dhcpd/integrations/isc_dhcp.md b/src/go/collectors/go.d.plugin/modules/isc_dhcpd/integrations/isc_dhcp.md index 563ab0203a..da258f27cf 100644 --- a/src/go/collectors/go.d.plugin/modules/isc_dhcpd/integrations/isc_dhcp.md +++ b/src/go/collectors/go.d.plugin/modules/isc_dhcpd/integrations/isc_dhcp.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/isc meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/isc_dhcpd/metadata.yaml" sidebar_label: "ISC DHCP" learn_status: "Published" -learn_rel_path: "Data Collection/DNS and DHCP Servers" +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -89,7 +89,7 @@ The configuration file name for this integration is `go.d/isc_dhcpd.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/isc_dhcpd/isc_dhcpd.go b/src/go/collectors/go.d.plugin/modules/isc_dhcpd/isc_dhcpd.go index e1f4e5764c..e6b9e98505 100644 --- a/src/go/collectors/go.d.plugin/modules/isc_dhcpd/isc_dhcpd.go +++ b/src/go/collectors/go.d.plugin/modules/isc_dhcpd/isc_dhcpd.go @@ -6,7 +6,7 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/isc_dhcpd/isc_dhcpd_test.go b/src/go/collectors/go.d.plugin/modules/isc_dhcpd/isc_dhcpd_test.go index 72980e4694..89f2e4f084 100644 --- a/src/go/collectors/go.d.plugin/modules/isc_dhcpd/isc_dhcpd_test.go +++ b/src/go/collectors/go.d.plugin/modules/isc_dhcpd/isc_dhcpd_test.go @@ -5,7 +5,7 @@ package isc_dhcpd import ( "testing" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/k8s_kubelet/charts.go b/src/go/collectors/go.d.plugin/modules/k8s_kubelet/charts.go index 6c80376fcd..564f7be581 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_kubelet/charts.go +++ b/src/go/collectors/go.d.plugin/modules/k8s_kubelet/charts.go @@ -2,7 +2,7 @@ package k8s_kubelet -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( // Charts is an alias for module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/k8s_kubelet/collect.go b/src/go/collectors/go.d.plugin/modules/k8s_kubelet/collect.go index 6aad42715d..350c0bf45b 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_kubelet/collect.go +++ b/src/go/collectors/go.d.plugin/modules/k8s_kubelet/collect.go @@ -5,11 +5,11 @@ package k8s_kubelet import ( "math" - mtx "github.com/netdata/go.d.plugin/pkg/metrics" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/stm" + mtx "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (k *Kubelet) collect() (map[string]int64, error) { diff --git a/src/go/collectors/go.d.plugin/modules/k8s_kubelet/integrations/kubelet.md b/src/go/collectors/go.d.plugin/modules/k8s_kubelet/integrations/kubelet.md index fdd1a6329f..64a3dd452e 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_kubelet/integrations/kubelet.md +++ b/src/go/collectors/go.d.plugin/modules/k8s_kubelet/integrations/kubelet.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/k8s meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/k8s_kubelet/metadata.yaml" sidebar_label: "Kubelet" learn_status: "Published" -learn_rel_path: "Data Collection/Kubernetes" +learn_rel_path: "Collecting Metrics/Kubernetes" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -125,7 +125,7 @@ The configuration file name for this integration is `go.d/k8s_kubelet.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/k8s_kubelet/kubelet.go b/src/go/collectors/go.d.plugin/modules/k8s_kubelet/kubelet.go index 7f62c9f304..33992289a7 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_kubelet/kubelet.go +++ b/src/go/collectors/go.d.plugin/modules/k8s_kubelet/kubelet.go @@ -7,10 +7,10 @@ import ( "os" "time" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/k8s_kubelet/metrics.go b/src/go/collectors/go.d.plugin/modules/k8s_kubelet/metrics.go index 9ccd84d1d1..15867b975b 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_kubelet/metrics.go +++ b/src/go/collectors/go.d.plugin/modules/k8s_kubelet/metrics.go @@ -3,7 +3,7 @@ package k8s_kubelet import ( - mtx "github.com/netdata/go.d.plugin/pkg/metrics" + mtx "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics" ) func newMetrics() *metrics { diff --git a/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/charts.go b/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/charts.go index 47cbcbecd2..b00097b3f6 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/charts.go +++ b/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/charts.go @@ -2,7 +2,7 @@ package k8s_kubeproxy -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( // Charts is an alias for module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/collect.go b/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/collect.go index 14f838ff05..625713f10d 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/collect.go +++ b/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/collect.go @@ -5,11 +5,11 @@ package k8s_kubeproxy import ( "math" - mtx "github.com/netdata/go.d.plugin/pkg/metrics" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/stm" + mtx "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (kp *KubeProxy) collect() (map[string]int64, error) { diff --git a/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/integrations/kubeproxy.md b/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/integrations/kubeproxy.md index c90013f97f..f65782ebf0 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/integrations/kubeproxy.md +++ b/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/integrations/kubeproxy.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/k8s meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/k8s_kubeproxy/metadata.yaml" sidebar_label: "Kubeproxy" learn_status: "Published" -learn_rel_path: "Data Collection/Kubernetes" +learn_rel_path: "Collecting Metrics/Kubernetes" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -92,7 +92,7 @@ The configuration file name for this integration is `go.d/k8s_kubeproxy.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/kubeproxy.go b/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/kubeproxy.go index a681619c44..94cc9ff87e 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/kubeproxy.go +++ b/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/kubeproxy.go @@ -6,10 +6,10 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/metrics.go b/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/metrics.go index 500ebf1a46..1cc58f0df2 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/metrics.go +++ b/src/go/collectors/go.d.plugin/modules/k8s_kubeproxy/metrics.go @@ -3,7 +3,7 @@ package k8s_kubeproxy import ( - mtx "github.com/netdata/go.d.plugin/pkg/metrics" + mtx "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics" ) func newMetrics() *metrics { diff --git a/src/go/collectors/go.d.plugin/modules/k8s_state/charts.go b/src/go/collectors/go.d.plugin/modules/k8s_state/charts.go index 5380a7bcf0..0cec12512b 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_state/charts.go +++ b/src/go/collectors/go.d.plugin/modules/k8s_state/charts.go @@ -7,7 +7,7 @@ import ( "regexp" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) // NETDATA_CHART_PRIO_CGROUPS_CONTAINERS 40000 diff --git a/src/go/collectors/go.d.plugin/modules/k8s_state/collect.go b/src/go/collectors/go.d.plugin/modules/k8s_state/collect.go index baf853867e..033d330ce4 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_state/collect.go +++ b/src/go/collectors/go.d.plugin/modules/k8s_state/collect.go @@ -8,7 +8,7 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" corev1 "k8s.io/api/core/v1" ) diff --git a/src/go/collectors/go.d.plugin/modules/k8s_state/discover_kubernetes.go b/src/go/collectors/go.d.plugin/modules/k8s_state/discover_kubernetes.go index a3cf90d609..a4aeee9745 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_state/discover_kubernetes.go +++ b/src/go/collectors/go.d.plugin/modules/k8s_state/discover_kubernetes.go @@ -8,7 +8,7 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/logger" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/src/go/collectors/go.d.plugin/modules/k8s_state/discover_node.go b/src/go/collectors/go.d.plugin/modules/k8s_state/discover_node.go index f8030bfe54..085a12e566 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_state/discover_node.go +++ b/src/go/collectors/go.d.plugin/modules/k8s_state/discover_node.go @@ -5,7 +5,7 @@ package k8s_state import ( "context" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/logger" "k8s.io/client-go/tools/cache" "k8s.io/client-go/util/workqueue" diff --git a/src/go/collectors/go.d.plugin/modules/k8s_state/discover_pod.go b/src/go/collectors/go.d.plugin/modules/k8s_state/discover_pod.go index aa44795f3c..da33a5eaa4 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_state/discover_pod.go +++ b/src/go/collectors/go.d.plugin/modules/k8s_state/discover_pod.go @@ -5,7 +5,7 @@ package k8s_state import ( "context" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/logger" "k8s.io/client-go/tools/cache" "k8s.io/client-go/util/workqueue" diff --git a/src/go/collectors/go.d.plugin/modules/k8s_state/integrations/kubernetes_cluster_state.md b/src/go/collectors/go.d.plugin/modules/k8s_state/integrations/kubernetes_cluster_state.md index ad1acd511c..9f3ac6681d 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_state/integrations/kubernetes_cluster_state.md +++ b/src/go/collectors/go.d.plugin/modules/k8s_state/integrations/kubernetes_cluster_state.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/k8s meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/k8s_state/metadata.yaml" sidebar_label: "Kubernetes Cluster State" learn_status: "Published" -learn_rel_path: "Data Collection/Kubernetes" +learn_rel_path: "Collecting Metrics/Kubernetes" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -172,7 +172,7 @@ The configuration file name for this integration is `go.d/k8s_state.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/k8s_state/kube_state.go b/src/go/collectors/go.d.plugin/modules/k8s_state/kube_state.go index 3a3046e47d..a784f68fbd 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_state/kube_state.go +++ b/src/go/collectors/go.d.plugin/modules/k8s_state/kube_state.go @@ -8,7 +8,7 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "k8s.io/client-go/kubernetes" ) diff --git a/src/go/collectors/go.d.plugin/modules/k8s_state/kube_state_test.go b/src/go/collectors/go.d.plugin/modules/k8s_state/kube_state_test.go index 451028532b..1aa68f95c8 100644 --- a/src/go/collectors/go.d.plugin/modules/k8s_state/kube_state_test.go +++ b/src/go/collectors/go.d.plugin/modules/k8s_state/kube_state_test.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/lighttpd/apiclient.go b/src/go/collectors/go.d.plugin/modules/lighttpd/apiclient.go index 5e65f1f4d7..2d4bf0fc7b 100644 --- a/src/go/collectors/go.d.plugin/modules/lighttpd/apiclient.go +++ b/src/go/collectors/go.d.plugin/modules/lighttpd/apiclient.go @@ -10,7 +10,7 @@ import ( "strconv" "strings" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/lighttpd/charts.go b/src/go/collectors/go.d.plugin/modules/lighttpd/charts.go index bacea70a17..293e574147 100644 --- a/src/go/collectors/go.d.plugin/modules/lighttpd/charts.go +++ b/src/go/collectors/go.d.plugin/modules/lighttpd/charts.go @@ -2,7 +2,7 @@ package lighttpd -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( // Charts is an alias for module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/lighttpd/collect.go b/src/go/collectors/go.d.plugin/modules/lighttpd/collect.go index 609a701059..d6a0f1b85e 100644 --- a/src/go/collectors/go.d.plugin/modules/lighttpd/collect.go +++ b/src/go/collectors/go.d.plugin/modules/lighttpd/collect.go @@ -5,7 +5,7 @@ package lighttpd import ( "fmt" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) func (l *Lighttpd) collect() (map[string]int64, error) { diff --git a/src/go/collectors/go.d.plugin/modules/lighttpd/integrations/lighttpd.md b/src/go/collectors/go.d.plugin/modules/lighttpd/integrations/lighttpd.md index 091010ebbc..523246e61c 100644 --- a/src/go/collectors/go.d.plugin/modules/lighttpd/integrations/lighttpd.md +++ b/src/go/collectors/go.d.plugin/modules/lighttpd/integrations/lighttpd.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/lig meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/lighttpd/metadata.yaml" sidebar_label: "Lighttpd" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -102,7 +102,7 @@ The configuration file name for this integration is `go.d/lighttpd.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/lighttpd/lighttpd.go b/src/go/collectors/go.d.plugin/modules/lighttpd/lighttpd.go index 2f98a96bf9..9dfd7262be 100644 --- a/src/go/collectors/go.d.plugin/modules/lighttpd/lighttpd.go +++ b/src/go/collectors/go.d.plugin/modules/lighttpd/lighttpd.go @@ -7,9 +7,9 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/lighttpd/lighttpd_test.go b/src/go/collectors/go.d.plugin/modules/lighttpd/lighttpd_test.go index e6a7b016e5..991d485b00 100644 --- a/src/go/collectors/go.d.plugin/modules/lighttpd/lighttpd_test.go +++ b/src/go/collectors/go.d.plugin/modules/lighttpd/lighttpd_test.go @@ -8,7 +8,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/logind/charts.go b/src/go/collectors/go.d.plugin/modules/logind/charts.go index a7ba42ff15..91bc0f202b 100644 --- a/src/go/collectors/go.d.plugin/modules/logind/charts.go +++ b/src/go/collectors/go.d.plugin/modules/logind/charts.go @@ -5,7 +5,7 @@ package logind -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" const ( prioSessions = module.Priority + iota diff --git a/src/go/collectors/go.d.plugin/modules/logind/integrations/systemd-logind_users.md b/src/go/collectors/go.d.plugin/modules/logind/integrations/systemd-logind_users.md index a22a42a695..6b2730ee39 100644 --- a/src/go/collectors/go.d.plugin/modules/logind/integrations/systemd-logind_users.md +++ b/src/go/collectors/go.d.plugin/modules/logind/integrations/systemd-logind_users.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/log meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/logind/metadata.yaml" sidebar_label: "systemd-logind users" learn_status: "Published" -learn_rel_path: "Data Collection/Systemd" +learn_rel_path: "Collecting Metrics/Systemd" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -90,7 +90,7 @@ The configuration file name for this integration is `go.d/logind.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/logind/logind.go b/src/go/collectors/go.d.plugin/modules/logind/logind.go index 456217e9f6..079de9995a 100644 --- a/src/go/collectors/go.d.plugin/modules/logind/logind.go +++ b/src/go/collectors/go.d.plugin/modules/logind/logind.go @@ -9,8 +9,8 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/logstash/charts.go b/src/go/collectors/go.d.plugin/modules/logstash/charts.go index c6173e3cae..555a7e3e7a 100644 --- a/src/go/collectors/go.d.plugin/modules/logstash/charts.go +++ b/src/go/collectors/go.d.plugin/modules/logstash/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/logstash/collect.go b/src/go/collectors/go.d.plugin/modules/logstash/collect.go index 144113a487..3eceb9bf61 100644 --- a/src/go/collectors/go.d.plugin/modules/logstash/collect.go +++ b/src/go/collectors/go.d.plugin/modules/logstash/collect.go @@ -8,8 +8,8 @@ import ( "io" "net/http" - "github.com/netdata/go.d.plugin/pkg/stm" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const urlPathNodeStatsAPI = "/_node/stats" diff --git a/src/go/collectors/go.d.plugin/modules/logstash/integrations/logstash.md b/src/go/collectors/go.d.plugin/modules/logstash/integrations/logstash.md index 7497b842cc..e467472ba9 100644 --- a/src/go/collectors/go.d.plugin/modules/logstash/integrations/logstash.md +++ b/src/go/collectors/go.d.plugin/modules/logstash/integrations/logstash.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/log meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/logstash/metadata.yaml" sidebar_label: "Logstash" learn_status: "Published" -learn_rel_path: "Data Collection/Logs Servers" +learn_rel_path: "Collecting Metrics/Logs Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -115,7 +115,7 @@ The configuration file name for this integration is `go.d/logstatsh.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/logstash/logstash.go b/src/go/collectors/go.d.plugin/modules/logstash/logstash.go index 7282672940..2dd1d5b033 100644 --- a/src/go/collectors/go.d.plugin/modules/logstash/logstash.go +++ b/src/go/collectors/go.d.plugin/modules/logstash/logstash.go @@ -7,8 +7,8 @@ import ( "net/http" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/logstash/logstash_test.go b/src/go/collectors/go.d.plugin/modules/logstash/logstash_test.go index 2b5fd32d5d..cfd39c29fb 100644 --- a/src/go/collectors/go.d.plugin/modules/logstash/logstash_test.go +++ b/src/go/collectors/go.d.plugin/modules/logstash/logstash_test.go @@ -8,7 +8,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/mongodb/charts.go b/src/go/collectors/go.d.plugin/modules/mongodb/charts.go index 9852541d42..f1b9c1a07b 100644 --- a/src/go/collectors/go.d.plugin/modules/mongodb/charts.go +++ b/src/go/collectors/go.d.plugin/modules/mongodb/charts.go @@ -3,7 +3,7 @@ package mongo import ( - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/mongodb/collect_dbstats.go b/src/go/collectors/go.d.plugin/modules/mongodb/collect_dbstats.go index bd08ba9a23..edd7077e1b 100644 --- a/src/go/collectors/go.d.plugin/modules/mongodb/collect_dbstats.go +++ b/src/go/collectors/go.d.plugin/modules/mongodb/collect_dbstats.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (m *Mongo) collectDbStats(mx map[string]int64) error { diff --git a/src/go/collectors/go.d.plugin/modules/mongodb/collect_replsetgetstatus.go b/src/go/collectors/go.d.plugin/modules/mongodb/collect_replsetgetstatus.go index d94c802083..235e8900e7 100644 --- a/src/go/collectors/go.d.plugin/modules/mongodb/collect_replsetgetstatus.go +++ b/src/go/collectors/go.d.plugin/modules/mongodb/collect_replsetgetstatus.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) // https://www.mongodb.com/docs/manual/reference/replica-states/#replica-set-member-states diff --git a/src/go/collectors/go.d.plugin/modules/mongodb/collect_serverstatus.go b/src/go/collectors/go.d.plugin/modules/mongodb/collect_serverstatus.go index 738e12392f..33fd86b769 100644 --- a/src/go/collectors/go.d.plugin/modules/mongodb/collect_serverstatus.go +++ b/src/go/collectors/go.d.plugin/modules/mongodb/collect_serverstatus.go @@ -6,8 +6,8 @@ import ( "fmt" "reflect" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) // collectServerStatus creates the map[string]int64 for the available dims. diff --git a/src/go/collectors/go.d.plugin/modules/mongodb/collect_sharding.go b/src/go/collectors/go.d.plugin/modules/mongodb/collect_sharding.go index c2da45c639..175004d34b 100644 --- a/src/go/collectors/go.d.plugin/modules/mongodb/collect_sharding.go +++ b/src/go/collectors/go.d.plugin/modules/mongodb/collect_sharding.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (m *Mongo) collectSharding(mx map[string]int64) error { diff --git a/src/go/collectors/go.d.plugin/modules/mongodb/integrations/mongodb.md b/src/go/collectors/go.d.plugin/modules/mongodb/integrations/mongodb.md index c60bafe7ca..83923d6819 100644 --- a/src/go/collectors/go.d.plugin/modules/mongodb/integrations/mongodb.md +++ b/src/go/collectors/go.d.plugin/modules/mongodb/integrations/mongodb.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/mon meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/mongodb/metadata.yaml" sidebar_label: "MongoDB" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -249,7 +249,7 @@ The configuration file name for this integration is `go.d/mongodb.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/mongodb/mongodb.go b/src/go/collectors/go.d.plugin/modules/mongodb/mongodb.go index 522acbaa0d..1b2e046ba3 100644 --- a/src/go/collectors/go.d.plugin/modules/mongodb/mongodb.go +++ b/src/go/collectors/go.d.plugin/modules/mongodb/mongodb.go @@ -7,8 +7,8 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/mongodb/mongodb_test.go b/src/go/collectors/go.d.plugin/modules/mongodb/mongodb_test.go index 37da851edb..b78b8eae7c 100644 --- a/src/go/collectors/go.d.plugin/modules/mongodb/mongodb_test.go +++ b/src/go/collectors/go.d.plugin/modules/mongodb/mongodb_test.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/netdata/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" ) var ( diff --git a/src/go/collectors/go.d.plugin/modules/mysql/charts.go b/src/go/collectors/go.d.plugin/modules/mysql/charts.go index c5d017ca47..054e4e01d5 100644 --- a/src/go/collectors/go.d.plugin/modules/mysql/charts.go +++ b/src/go/collectors/go.d.plugin/modules/mysql/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/mysql/integrations/mariadb.md b/src/go/collectors/go.d.plugin/modules/mysql/integrations/mariadb.md index 2005779e1d..1bac85d9d2 100644 --- a/src/go/collectors/go.d.plugin/modules/mysql/integrations/mariadb.md +++ b/src/go/collectors/go.d.plugin/modules/mysql/integrations/mariadb.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/mys meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/mysql/metadata.yaml" sidebar_label: "MariaDB" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -238,7 +238,7 @@ The configuration file name for this integration is `go.d/mysql.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/mysql/integrations/mysql.md b/src/go/collectors/go.d.plugin/modules/mysql/integrations/mysql.md index 9710326db1..f8461f2627 100644 --- a/src/go/collectors/go.d.plugin/modules/mysql/integrations/mysql.md +++ b/src/go/collectors/go.d.plugin/modules/mysql/integrations/mysql.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/mys meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/mysql/metadata.yaml" sidebar_label: "MySQL" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -238,7 +238,7 @@ The configuration file name for this integration is `go.d/mysql.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/mysql/integrations/percona_mysql.md b/src/go/collectors/go.d.plugin/modules/mysql/integrations/percona_mysql.md index 4539290939..7b10597a7c 100644 --- a/src/go/collectors/go.d.plugin/modules/mysql/integrations/percona_mysql.md +++ b/src/go/collectors/go.d.plugin/modules/mysql/integrations/percona_mysql.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/mys meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/mysql/metadata.yaml" sidebar_label: "Percona MySQL" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -238,7 +238,7 @@ The configuration file name for this integration is `go.d/mysql.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/mysql/mysql.go b/src/go/collectors/go.d.plugin/modules/mysql/mysql.go index c7016098f4..043f6426f6 100644 --- a/src/go/collectors/go.d.plugin/modules/mysql/mysql.go +++ b/src/go/collectors/go.d.plugin/modules/mysql/mysql.go @@ -13,8 +13,8 @@ import ( "github.com/go-sql-driver/mysql" _ "github.com/go-sql-driver/mysql" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/mysql/mysql_test.go b/src/go/collectors/go.d.plugin/modules/mysql/mysql_test.go index 283b137702..cfd5ac7868 100644 --- a/src/go/collectors/go.d.plugin/modules/mysql/mysql_test.go +++ b/src/go/collectors/go.d.plugin/modules/mysql/mysql_test.go @@ -12,7 +12,7 @@ import ( "strings" "testing" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/DATA-DOG/go-sqlmock" "github.com/blang/semver/v4" diff --git a/src/go/collectors/go.d.plugin/modules/nginx/apiclient.go b/src/go/collectors/go.d.plugin/modules/nginx/apiclient.go index 0e3d09e037..8e1003b44e 100644 --- a/src/go/collectors/go.d.plugin/modules/nginx/apiclient.go +++ b/src/go/collectors/go.d.plugin/modules/nginx/apiclient.go @@ -11,7 +11,7 @@ import ( "strconv" "strings" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/nginx/charts.go b/src/go/collectors/go.d.plugin/modules/nginx/charts.go index b1e76996f4..95f9d8aaf0 100644 --- a/src/go/collectors/go.d.plugin/modules/nginx/charts.go +++ b/src/go/collectors/go.d.plugin/modules/nginx/charts.go @@ -2,7 +2,7 @@ package nginx -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( // Charts is an alias for module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/nginx/collect.go b/src/go/collectors/go.d.plugin/modules/nginx/collect.go index 351317393b..533f988087 100644 --- a/src/go/collectors/go.d.plugin/modules/nginx/collect.go +++ b/src/go/collectors/go.d.plugin/modules/nginx/collect.go @@ -3,7 +3,7 @@ package nginx import ( - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) func (n *Nginx) collect() (map[string]int64, error) { diff --git a/src/go/collectors/go.d.plugin/modules/nginx/integrations/nginx.md b/src/go/collectors/go.d.plugin/modules/nginx/integrations/nginx.md index 779cfee04d..633abae326 100644 --- a/src/go/collectors/go.d.plugin/modules/nginx/integrations/nginx.md +++ b/src/go/collectors/go.d.plugin/modules/nginx/integrations/nginx.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ngi meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/nginx/metadata.yaml" sidebar_label: "NGINX" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -103,7 +103,7 @@ The configuration file name for this integration is `go.d/nginx.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/nginx/nginx.go b/src/go/collectors/go.d.plugin/modules/nginx/nginx.go index 9acf1e72b3..38f202faf8 100644 --- a/src/go/collectors/go.d.plugin/modules/nginx/nginx.go +++ b/src/go/collectors/go.d.plugin/modules/nginx/nginx.go @@ -6,9 +6,9 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/nginx/nginx_test.go b/src/go/collectors/go.d.plugin/modules/nginx/nginx_test.go index ef115482ed..db490d4320 100644 --- a/src/go/collectors/go.d.plugin/modules/nginx/nginx_test.go +++ b/src/go/collectors/go.d.plugin/modules/nginx/nginx_test.go @@ -8,7 +8,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/nginxplus/charts.go b/src/go/collectors/go.d.plugin/modules/nginxplus/charts.go index 1195b930c6..c50390984f 100644 --- a/src/go/collectors/go.d.plugin/modules/nginxplus/charts.go +++ b/src/go/collectors/go.d.plugin/modules/nginxplus/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/nginxplus/integrations/nginx_plus.md b/src/go/collectors/go.d.plugin/modules/nginxplus/integrations/nginx_plus.md index 44dad3051c..b814a355b1 100644 --- a/src/go/collectors/go.d.plugin/modules/nginxplus/integrations/nginx_plus.md +++ b/src/go/collectors/go.d.plugin/modules/nginxplus/integrations/nginx_plus.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ngi meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/nginxplus/metadata.yaml" sidebar_label: "NGINX Plus" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -280,7 +280,7 @@ The configuration file name for this integration is `go.d/nginxplus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/nginxplus/nginx_http_api_query.go b/src/go/collectors/go.d.plugin/modules/nginxplus/nginx_http_api_query.go index 48c31d0eaf..b05ce1d7bf 100644 --- a/src/go/collectors/go.d.plugin/modules/nginxplus/nginx_http_api_query.go +++ b/src/go/collectors/go.d.plugin/modules/nginxplus/nginx_http_api_query.go @@ -10,7 +10,7 @@ import ( "net/http" "sync" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/nginxplus/nginxplus.go b/src/go/collectors/go.d.plugin/modules/nginxplus/nginxplus.go index ba82242f89..94de8be8b8 100644 --- a/src/go/collectors/go.d.plugin/modules/nginxplus/nginxplus.go +++ b/src/go/collectors/go.d.plugin/modules/nginxplus/nginxplus.go @@ -7,8 +7,8 @@ import ( "net/http" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/nginxplus/nginxplus_test.go b/src/go/collectors/go.d.plugin/modules/nginxplus/nginxplus_test.go index 7bbe895577..9fa2dc804e 100644 --- a/src/go/collectors/go.d.plugin/modules/nginxplus/nginxplus_test.go +++ b/src/go/collectors/go.d.plugin/modules/nginxplus/nginxplus_test.go @@ -9,7 +9,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/nginxvts/charts.go b/src/go/collectors/go.d.plugin/modules/nginxvts/charts.go index 367a534e66..6fc859ed55 100644 --- a/src/go/collectors/go.d.plugin/modules/nginxvts/charts.go +++ b/src/go/collectors/go.d.plugin/modules/nginxvts/charts.go @@ -2,7 +2,7 @@ package nginxvts -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" var mainCharts = module.Charts{ { diff --git a/src/go/collectors/go.d.plugin/modules/nginxvts/collect.go b/src/go/collectors/go.d.plugin/modules/nginxvts/collect.go index c3613e7abd..c4c3896822 100644 --- a/src/go/collectors/go.d.plugin/modules/nginxvts/collect.go +++ b/src/go/collectors/go.d.plugin/modules/nginxvts/collect.go @@ -8,8 +8,8 @@ import ( "io" "net/http" - "github.com/netdata/go.d.plugin/pkg/stm" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (vts *NginxVTS) collect() (map[string]int64, error) { diff --git a/src/go/collectors/go.d.plugin/modules/nginxvts/init.go b/src/go/collectors/go.d.plugin/modules/nginxvts/init.go index 7ebf049abb..373d103a14 100644 --- a/src/go/collectors/go.d.plugin/modules/nginxvts/init.go +++ b/src/go/collectors/go.d.plugin/modules/nginxvts/init.go @@ -6,8 +6,8 @@ import ( "errors" "net/http" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (vts NginxVTS) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/nginxvts/integrations/nginx_vts.md b/src/go/collectors/go.d.plugin/modules/nginxvts/integrations/nginx_vts.md index 7415d0adb5..ec88554a7f 100644 --- a/src/go/collectors/go.d.plugin/modules/nginxvts/integrations/nginx_vts.md +++ b/src/go/collectors/go.d.plugin/modules/nginxvts/integrations/nginx_vts.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ngi meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/nginxvts/metadata.yaml" sidebar_label: "NGINX VTS" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -103,7 +103,7 @@ The configuration file name for this integration is `go.d/nginxvts.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/nginxvts/nginxvts.go b/src/go/collectors/go.d.plugin/modules/nginxvts/nginxvts.go index 1cc3a60141..4289078dd6 100644 --- a/src/go/collectors/go.d.plugin/modules/nginxvts/nginxvts.go +++ b/src/go/collectors/go.d.plugin/modules/nginxvts/nginxvts.go @@ -7,8 +7,8 @@ import ( "net/http" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/nginxvts/nginxvts_test.go b/src/go/collectors/go.d.plugin/modules/nginxvts/nginxvts_test.go index ef204ad756..12b2d0fbf7 100644 --- a/src/go/collectors/go.d.plugin/modules/nginxvts/nginxvts_test.go +++ b/src/go/collectors/go.d.plugin/modules/nginxvts/nginxvts_test.go @@ -8,9 +8,9 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/ntpd/charts.go b/src/go/collectors/go.d.plugin/modules/ntpd/charts.go index dc9d183d04..5726d05a3a 100644 --- a/src/go/collectors/go.d.plugin/modules/ntpd/charts.go +++ b/src/go/collectors/go.d.plugin/modules/ntpd/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/ntpd/integrations/ntpd.md b/src/go/collectors/go.d.plugin/modules/ntpd/integrations/ntpd.md index be765ae189..9bdba2fcd1 100644 --- a/src/go/collectors/go.d.plugin/modules/ntpd/integrations/ntpd.md +++ b/src/go/collectors/go.d.plugin/modules/ntpd/integrations/ntpd.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ntp meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/ntpd/metadata.yaml" sidebar_label: "NTPd" learn_status: "Published" -learn_rel_path: "Data Collection/System Clock and NTP" +learn_rel_path: "Collecting Metrics/System Clock and NTP" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -123,7 +123,7 @@ The configuration file name for this integration is `go.d/ntpd.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/ntpd/ntpd.go b/src/go/collectors/go.d.plugin/modules/ntpd/ntpd.go index 8bbc0ba4f3..2a768a7375 100644 --- a/src/go/collectors/go.d.plugin/modules/ntpd/ntpd.go +++ b/src/go/collectors/go.d.plugin/modules/ntpd/ntpd.go @@ -6,9 +6,9 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/iprange" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/iprange" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/nvidia_smi/charts.go b/src/go/collectors/go.d.plugin/modules/nvidia_smi/charts.go index f8017f82f3..4ffdb47b14 100644 --- a/src/go/collectors/go.d.plugin/modules/nvidia_smi/charts.go +++ b/src/go/collectors/go.d.plugin/modules/nvidia_smi/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/nvidia_smi/exec.go b/src/go/collectors/go.d.plugin/modules/nvidia_smi/exec.go index 93e23057b5..bffa2a9c45 100644 --- a/src/go/collectors/go.d.plugin/modules/nvidia_smi/exec.go +++ b/src/go/collectors/go.d.plugin/modules/nvidia_smi/exec.go @@ -10,7 +10,7 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/logger" ) func newNvidiaSMIExec(path string, cfg Config, log *logger.Logger) (*nvidiaSMIExec, error) { diff --git a/src/go/collectors/go.d.plugin/modules/nvidia_smi/integrations/nvidia_gpu.md b/src/go/collectors/go.d.plugin/modules/nvidia_smi/integrations/nvidia_gpu.md index 0b49d21d24..66aabfbe28 100644 --- a/src/go/collectors/go.d.plugin/modules/nvidia_smi/integrations/nvidia_gpu.md +++ b/src/go/collectors/go.d.plugin/modules/nvidia_smi/integrations/nvidia_gpu.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/nvi meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/nvidia_smi/metadata.yaml" sidebar_label: "Nvidia GPU" learn_status: "Published" -learn_rel_path: "Data Collection/Hardware Devices and Sensors" +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -133,7 +133,7 @@ The configuration file name for this integration is `go.d/nvidia_smi.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/nvidia_smi/nvidia_smi.go b/src/go/collectors/go.d.plugin/modules/nvidia_smi/nvidia_smi.go index 1370b43356..9272fd0849 100644 --- a/src/go/collectors/go.d.plugin/modules/nvidia_smi/nvidia_smi.go +++ b/src/go/collectors/go.d.plugin/modules/nvidia_smi/nvidia_smi.go @@ -6,8 +6,8 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/nvme/charts.go b/src/go/collectors/go.d.plugin/modules/nvme/charts.go index 9218c27a19..8404d2dcce 100644 --- a/src/go/collectors/go.d.plugin/modules/nvme/charts.go +++ b/src/go/collectors/go.d.plugin/modules/nvme/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/nvme/integrations/nvme_devices.md b/src/go/collectors/go.d.plugin/modules/nvme/integrations/nvme_devices.md index ce55310e6c..290795e6af 100644 --- a/src/go/collectors/go.d.plugin/modules/nvme/integrations/nvme_devices.md +++ b/src/go/collectors/go.d.plugin/modules/nvme/integrations/nvme_devices.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/nvm meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/nvme/metadata.yaml" sidebar_label: "NVMe devices" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -124,7 +124,7 @@ The configuration file name for this integration is `go.d/nvme.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/nvme/nvme.go b/src/go/collectors/go.d.plugin/modules/nvme/nvme.go index d8f86869a6..e4ad315ebf 100644 --- a/src/go/collectors/go.d.plugin/modules/nvme/nvme.go +++ b/src/go/collectors/go.d.plugin/modules/nvme/nvme.go @@ -6,8 +6,8 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/openvpn/charts.go b/src/go/collectors/go.d.plugin/modules/openvpn/charts.go index 4228d5df62..435c2151a1 100644 --- a/src/go/collectors/go.d.plugin/modules/openvpn/charts.go +++ b/src/go/collectors/go.d.plugin/modules/openvpn/charts.go @@ -2,7 +2,7 @@ package openvpn -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( // Charts is an alias for module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/openvpn/client/client.go b/src/go/collectors/go.d.plugin/modules/openvpn/client/client.go index 12309de09b..ddbfdeafb8 100644 --- a/src/go/collectors/go.d.plugin/modules/openvpn/client/client.go +++ b/src/go/collectors/go.d.plugin/modules/openvpn/client/client.go @@ -8,7 +8,7 @@ import ( "strconv" "strings" - "github.com/netdata/go.d.plugin/pkg/socket" + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket" ) var ( diff --git a/src/go/collectors/go.d.plugin/modules/openvpn/client/client_test.go b/src/go/collectors/go.d.plugin/modules/openvpn/client/client_test.go index 685d77c274..c10673ed54 100644 --- a/src/go/collectors/go.d.plugin/modules/openvpn/client/client_test.go +++ b/src/go/collectors/go.d.plugin/modules/openvpn/client/client_test.go @@ -10,7 +10,7 @@ import ( "strings" "testing" - "github.com/netdata/go.d.plugin/pkg/socket" + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket" "github.com/stretchr/testify/assert" ) diff --git a/src/go/collectors/go.d.plugin/modules/openvpn/integrations/openvpn.md b/src/go/collectors/go.d.plugin/modules/openvpn/integrations/openvpn.md index 9b32bc277b..ad3ec7c4dd 100644 --- a/src/go/collectors/go.d.plugin/modules/openvpn/integrations/openvpn.md +++ b/src/go/collectors/go.d.plugin/modules/openvpn/integrations/openvpn.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ope meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/openvpn/metadata.yaml" sidebar_label: "OpenVPN" learn_status: "Published" -learn_rel_path: "Data Collection/VPNs" +learn_rel_path: "Collecting Metrics/VPNs" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -116,7 +116,7 @@ The configuration file name for this integration is `go.d/openvpn.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/openvpn/openvpn.go b/src/go/collectors/go.d.plugin/modules/openvpn/openvpn.go index 0a6ccbb81b..a7a387cef1 100644 --- a/src/go/collectors/go.d.plugin/modules/openvpn/openvpn.go +++ b/src/go/collectors/go.d.plugin/modules/openvpn/openvpn.go @@ -6,12 +6,12 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/modules/openvpn/client" - "github.com/netdata/go.d.plugin/pkg/matcher" - "github.com/netdata/go.d.plugin/pkg/socket" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/modules/openvpn/client" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/openvpn/openvpn_test.go b/src/go/collectors/go.d.plugin/modules/openvpn/openvpn_test.go index 02fa1a602c..5ac0f28b98 100644 --- a/src/go/collectors/go.d.plugin/modules/openvpn/openvpn_test.go +++ b/src/go/collectors/go.d.plugin/modules/openvpn/openvpn_test.go @@ -5,10 +5,10 @@ package openvpn import ( "testing" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/modules/openvpn/client" - "github.com/netdata/go.d.plugin/pkg/matcher" - "github.com/netdata/go.d.plugin/pkg/socket" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/modules/openvpn/client" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/openvpn_status_log/charts.go b/src/go/collectors/go.d.plugin/modules/openvpn_status_log/charts.go index da7d58aaf8..cb8d7c89b4 100644 --- a/src/go/collectors/go.d.plugin/modules/openvpn_status_log/charts.go +++ b/src/go/collectors/go.d.plugin/modules/openvpn_status_log/charts.go @@ -5,7 +5,7 @@ package openvpn_status_log import ( "fmt" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) var charts = module.Charts{ diff --git a/src/go/collectors/go.d.plugin/modules/openvpn_status_log/init.go b/src/go/collectors/go.d.plugin/modules/openvpn_status_log/init.go index 9bd34a5105..3510f09f1b 100644 --- a/src/go/collectors/go.d.plugin/modules/openvpn_status_log/init.go +++ b/src/go/collectors/go.d.plugin/modules/openvpn_status_log/init.go @@ -4,7 +4,7 @@ package openvpn_status_log import ( "errors" - "github.com/netdata/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" ) func (o OpenVPNStatusLog) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/openvpn_status_log/integrations/openvpn_status_log.md b/src/go/collectors/go.d.plugin/modules/openvpn_status_log/integrations/openvpn_status_log.md index e7cb58658c..0a6e6903cf 100644 --- a/src/go/collectors/go.d.plugin/modules/openvpn_status_log/integrations/openvpn_status_log.md +++ b/src/go/collectors/go.d.plugin/modules/openvpn_status_log/integrations/openvpn_status_log.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ope meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/openvpn_status_log/metadata.yaml" sidebar_label: "OpenVPN status log" learn_status: "Published" -learn_rel_path: "Data Collection/VPNs" +learn_rel_path: "Collecting Metrics/VPNs" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -107,7 +107,7 @@ The configuration file name for this integration is `go.d/openvpn_status_log.con You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/openvpn_status_log/openvpn.go b/src/go/collectors/go.d.plugin/modules/openvpn_status_log/openvpn.go index dc9e7340b3..a4972296a2 100644 --- a/src/go/collectors/go.d.plugin/modules/openvpn_status_log/openvpn.go +++ b/src/go/collectors/go.d.plugin/modules/openvpn_status_log/openvpn.go @@ -5,8 +5,8 @@ package openvpn_status_log import ( _ "embed" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/openvpn_status_log/openvpn_test.go b/src/go/collectors/go.d.plugin/modules/openvpn_status_log/openvpn_test.go index d54d278248..051df4dd84 100644 --- a/src/go/collectors/go.d.plugin/modules/openvpn_status_log/openvpn_test.go +++ b/src/go/collectors/go.d.plugin/modules/openvpn_status_log/openvpn_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/netdata/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/pgbouncer/charts.go b/src/go/collectors/go.d.plugin/modules/pgbouncer/charts.go index 6a4277244d..bd94f0fd5c 100644 --- a/src/go/collectors/go.d.plugin/modules/pgbouncer/charts.go +++ b/src/go/collectors/go.d.plugin/modules/pgbouncer/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/pgbouncer/integrations/pgbouncer.md b/src/go/collectors/go.d.plugin/modules/pgbouncer/integrations/pgbouncer.md index fceca13dfb..f411c4d8a8 100644 --- a/src/go/collectors/go.d.plugin/modules/pgbouncer/integrations/pgbouncer.md +++ b/src/go/collectors/go.d.plugin/modules/pgbouncer/integrations/pgbouncer.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pgb meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/pgbouncer/metadata.yaml" sidebar_label: "PgBouncer" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -151,7 +151,7 @@ The configuration file name for this integration is `go.d/pgbouncer.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/pgbouncer/pgbouncer.go b/src/go/collectors/go.d.plugin/modules/pgbouncer/pgbouncer.go index ebb11327b1..512a599858 100644 --- a/src/go/collectors/go.d.plugin/modules/pgbouncer/pgbouncer.go +++ b/src/go/collectors/go.d.plugin/modules/pgbouncer/pgbouncer.go @@ -7,8 +7,8 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/blang/semver/v4" _ "github.com/jackc/pgx/v4/stdlib" diff --git a/src/go/collectors/go.d.plugin/modules/phpdaemon/charts.go b/src/go/collectors/go.d.plugin/modules/phpdaemon/charts.go index c821208a2a..8d414b1a5f 100644 --- a/src/go/collectors/go.d.plugin/modules/phpdaemon/charts.go +++ b/src/go/collectors/go.d.plugin/modules/phpdaemon/charts.go @@ -2,7 +2,7 @@ package phpdaemon -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( // Charts is an alias for module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/phpdaemon/client.go b/src/go/collectors/go.d.plugin/modules/phpdaemon/client.go index 11b44524d6..7a8c5969f3 100644 --- a/src/go/collectors/go.d.plugin/modules/phpdaemon/client.go +++ b/src/go/collectors/go.d.plugin/modules/phpdaemon/client.go @@ -8,7 +8,7 @@ import ( "io" "net/http" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) type decodeFunc func(dst interface{}, reader io.Reader) error diff --git a/src/go/collectors/go.d.plugin/modules/phpdaemon/collect.go b/src/go/collectors/go.d.plugin/modules/phpdaemon/collect.go index c31c10c8b3..901c126841 100644 --- a/src/go/collectors/go.d.plugin/modules/phpdaemon/collect.go +++ b/src/go/collectors/go.d.plugin/modules/phpdaemon/collect.go @@ -2,7 +2,7 @@ package phpdaemon -import "github.com/netdata/go.d.plugin/pkg/stm" +import "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" func (p *PHPDaemon) collect() (map[string]int64, error) { s, err := p.client.queryFullStatus() diff --git a/src/go/collectors/go.d.plugin/modules/phpdaemon/integrations/phpdaemon.md b/src/go/collectors/go.d.plugin/modules/phpdaemon/integrations/phpdaemon.md index 6f2ee1cb12..e640b98be1 100644 --- a/src/go/collectors/go.d.plugin/modules/phpdaemon/integrations/phpdaemon.md +++ b/src/go/collectors/go.d.plugin/modules/phpdaemon/integrations/phpdaemon.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/php meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/phpdaemon/metadata.yaml" sidebar_label: "phpDaemon" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -165,7 +165,7 @@ The configuration file name for this integration is `go.d/phpdaemon.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/phpdaemon/phpdaemon.go b/src/go/collectors/go.d.plugin/modules/phpdaemon/phpdaemon.go index 506892cfe0..74218c6bf0 100644 --- a/src/go/collectors/go.d.plugin/modules/phpdaemon/phpdaemon.go +++ b/src/go/collectors/go.d.plugin/modules/phpdaemon/phpdaemon.go @@ -6,9 +6,9 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/phpdaemon/phpdaemon_test.go b/src/go/collectors/go.d.plugin/modules/phpdaemon/phpdaemon_test.go index 0634e6ec48..9de0fa50eb 100644 --- a/src/go/collectors/go.d.plugin/modules/phpdaemon/phpdaemon_test.go +++ b/src/go/collectors/go.d.plugin/modules/phpdaemon/phpdaemon_test.go @@ -8,7 +8,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/phpfpm/charts.go b/src/go/collectors/go.d.plugin/modules/phpfpm/charts.go index bf264ae9f9..6b69d4c784 100644 --- a/src/go/collectors/go.d.plugin/modules/phpfpm/charts.go +++ b/src/go/collectors/go.d.plugin/modules/phpfpm/charts.go @@ -2,7 +2,7 @@ package phpfpm -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( // Charts is an alias for module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/phpfpm/client.go b/src/go/collectors/go.d.plugin/modules/phpfpm/client.go index aa3eb63681..a5f1120ec2 100644 --- a/src/go/collectors/go.d.plugin/modules/phpfpm/client.go +++ b/src/go/collectors/go.d.plugin/modules/phpfpm/client.go @@ -11,7 +11,7 @@ import ( "strconv" "time" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" fcgiclient "github.com/tomasen/fcgi_client" ) diff --git a/src/go/collectors/go.d.plugin/modules/phpfpm/collect.go b/src/go/collectors/go.d.plugin/modules/phpfpm/collect.go index c1bc877a86..f720252a88 100644 --- a/src/go/collectors/go.d.plugin/modules/phpfpm/collect.go +++ b/src/go/collectors/go.d.plugin/modules/phpfpm/collect.go @@ -5,7 +5,7 @@ package phpfpm import ( "math" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) func (p *Phpfpm) collect() (map[string]int64, error) { diff --git a/src/go/collectors/go.d.plugin/modules/phpfpm/init.go b/src/go/collectors/go.d.plugin/modules/phpfpm/init.go index 0e764cbe03..cd4517b25c 100644 --- a/src/go/collectors/go.d.plugin/modules/phpfpm/init.go +++ b/src/go/collectors/go.d.plugin/modules/phpfpm/init.go @@ -7,7 +7,7 @@ import ( "fmt" "os" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (p Phpfpm) initClient() (client, error) { diff --git a/src/go/collectors/go.d.plugin/modules/phpfpm/integrations/php-fpm.md b/src/go/collectors/go.d.plugin/modules/phpfpm/integrations/php-fpm.md index 3fbae97193..3a05c39422 100644 --- a/src/go/collectors/go.d.plugin/modules/phpfpm/integrations/php-fpm.md +++ b/src/go/collectors/go.d.plugin/modules/phpfpm/integrations/php-fpm.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/php meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/phpfpm/metadata.yaml" sidebar_label: "PHP-FPM" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/phpfpm.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/phpfpm/phpfpm.go b/src/go/collectors/go.d.plugin/modules/phpfpm/phpfpm.go index a618279291..59762c9990 100644 --- a/src/go/collectors/go.d.plugin/modules/phpfpm/phpfpm.go +++ b/src/go/collectors/go.d.plugin/modules/phpfpm/phpfpm.go @@ -6,9 +6,9 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/phpfpm/phpfpm_test.go b/src/go/collectors/go.d.plugin/modules/phpfpm/phpfpm_test.go index 5b9ecd2365..baaec62fb2 100644 --- a/src/go/collectors/go.d.plugin/modules/phpfpm/phpfpm_test.go +++ b/src/go/collectors/go.d.plugin/modules/phpfpm/phpfpm_test.go @@ -8,7 +8,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/pihole/charts.go b/src/go/collectors/go.d.plugin/modules/pihole/charts.go index 3a340bc07d..d8e0bd00aa 100644 --- a/src/go/collectors/go.d.plugin/modules/pihole/charts.go +++ b/src/go/collectors/go.d.plugin/modules/pihole/charts.go @@ -3,7 +3,7 @@ package pihole import ( - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/pihole/collect.go b/src/go/collectors/go.d.plugin/modules/pihole/collect.go index f8a3d760da..ab0e48ff05 100644 --- a/src/go/collectors/go.d.plugin/modules/pihole/collect.go +++ b/src/go/collectors/go.d.plugin/modules/pihole/collect.go @@ -12,7 +12,7 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const wantAPIVersion = 3 diff --git a/src/go/collectors/go.d.plugin/modules/pihole/init.go b/src/go/collectors/go.d.plugin/modules/pihole/init.go index a6dc2f42db..982849452d 100644 --- a/src/go/collectors/go.d.plugin/modules/pihole/init.go +++ b/src/go/collectors/go.d.plugin/modules/pihole/init.go @@ -10,7 +10,7 @@ import ( "os" "strings" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (p *Pihole) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/pihole/integrations/pi-hole.md b/src/go/collectors/go.d.plugin/modules/pihole/integrations/pi-hole.md index 2ee2eb1a0b..4a962cab5a 100644 --- a/src/go/collectors/go.d.plugin/modules/pihole/integrations/pi-hole.md +++ b/src/go/collectors/go.d.plugin/modules/pihole/integrations/pi-hole.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pih meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/pihole/metadata.yaml" sidebar_label: "Pi-hole" learn_status: "Published" -learn_rel_path: "Data Collection/DNS and DHCP Servers" +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -104,7 +104,7 @@ The configuration file name for this integration is `go.d/pihole.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/pihole/pihole.go b/src/go/collectors/go.d.plugin/modules/pihole/pihole.go index 6aba5cad02..080700e07b 100644 --- a/src/go/collectors/go.d.plugin/modules/pihole/pihole.go +++ b/src/go/collectors/go.d.plugin/modules/pihole/pihole.go @@ -8,9 +8,9 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/pihole/pihole_test.go b/src/go/collectors/go.d.plugin/modules/pihole/pihole_test.go index 08ad244a79..f00c3daa21 100644 --- a/src/go/collectors/go.d.plugin/modules/pihole/pihole_test.go +++ b/src/go/collectors/go.d.plugin/modules/pihole/pihole_test.go @@ -9,7 +9,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/pika/charts.go b/src/go/collectors/go.d.plugin/modules/pika/charts.go index 16041c112c..cdaa68f6e3 100644 --- a/src/go/collectors/go.d.plugin/modules/pika/charts.go +++ b/src/go/collectors/go.d.plugin/modules/pika/charts.go @@ -2,7 +2,7 @@ package pika -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" var pikaCharts = module.Charts{ chartConnections.Copy(), diff --git a/src/go/collectors/go.d.plugin/modules/pika/collect_info.go b/src/go/collectors/go.d.plugin/modules/pika/collect_info.go index c7043c816b..2dc68f529e 100644 --- a/src/go/collectors/go.d.plugin/modules/pika/collect_info.go +++ b/src/go/collectors/go.d.plugin/modules/pika/collect_info.go @@ -8,7 +8,7 @@ import ( "strconv" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) // https://github.com/Qihoo360/pika/blob/master/src/pika_admin.cc diff --git a/src/go/collectors/go.d.plugin/modules/pika/init.go b/src/go/collectors/go.d.plugin/modules/pika/init.go index 2ad3ae8ec5..e6b3dda884 100644 --- a/src/go/collectors/go.d.plugin/modules/pika/init.go +++ b/src/go/collectors/go.d.plugin/modules/pika/init.go @@ -5,8 +5,8 @@ package pika import ( "errors" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" "github.com/go-redis/redis/v8" ) diff --git a/src/go/collectors/go.d.plugin/modules/pika/integrations/pika.md b/src/go/collectors/go.d.plugin/modules/pika/integrations/pika.md index e19331f9f9..84c3309243 100644 --- a/src/go/collectors/go.d.plugin/modules/pika/integrations/pika.md +++ b/src/go/collectors/go.d.plugin/modules/pika/integrations/pika.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pik meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/pika/metadata.yaml" sidebar_label: "Pika" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -112,7 +112,7 @@ The configuration file name for this integration is `go.d/pika.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/pika/pika.go b/src/go/collectors/go.d.plugin/modules/pika/pika.go index a14a441136..5369f582c9 100644 --- a/src/go/collectors/go.d.plugin/modules/pika/pika.go +++ b/src/go/collectors/go.d.plugin/modules/pika/pika.go @@ -7,9 +7,9 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/blang/semver/v4" "github.com/go-redis/redis/v8" diff --git a/src/go/collectors/go.d.plugin/modules/pika/pika_test.go b/src/go/collectors/go.d.plugin/modules/pika/pika_test.go index a564a54ce8..add6f0af83 100644 --- a/src/go/collectors/go.d.plugin/modules/pika/pika_test.go +++ b/src/go/collectors/go.d.plugin/modules/pika/pika_test.go @@ -8,7 +8,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" "github.com/go-redis/redis/v8" "github.com/stretchr/testify/assert" diff --git a/src/go/collectors/go.d.plugin/modules/ping/charts.go b/src/go/collectors/go.d.plugin/modules/ping/charts.go index 27bcfcf82d..e117a18d51 100644 --- a/src/go/collectors/go.d.plugin/modules/ping/charts.go +++ b/src/go/collectors/go.d.plugin/modules/ping/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/ping/integrations/ping.md b/src/go/collectors/go.d.plugin/modules/ping/integrations/ping.md index 6a3bf820a4..b9463c16e2 100644 --- a/src/go/collectors/go.d.plugin/modules/ping/integrations/ping.md +++ b/src/go/collectors/go.d.plugin/modules/ping/integrations/ping.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pin meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/ping/metadata.yaml" sidebar_label: "Ping" learn_status: "Published" -learn_rel_path: "Data Collection/Synthetic Checks" +learn_rel_path: "Collecting Metrics/Synthetic Checks" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -120,7 +120,7 @@ The configuration file name for this integration is `go.d/ping.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/ping/ping.go b/src/go/collectors/go.d.plugin/modules/ping/ping.go index 7aa402985f..d1416dc29b 100644 --- a/src/go/collectors/go.d.plugin/modules/ping/ping.go +++ b/src/go/collectors/go.d.plugin/modules/ping/ping.go @@ -6,9 +6,9 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/logger" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" probing "github.com/prometheus-community/pro-bing" ) diff --git a/src/go/collectors/go.d.plugin/modules/ping/ping_test.go b/src/go/collectors/go.d.plugin/modules/ping/ping_test.go index 57958d5574..725aef91fc 100644 --- a/src/go/collectors/go.d.plugin/modules/ping/ping_test.go +++ b/src/go/collectors/go.d.plugin/modules/ping/ping_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/logger" probing "github.com/prometheus-community/pro-bing" "github.com/stretchr/testify/assert" diff --git a/src/go/collectors/go.d.plugin/modules/ping/prober.go b/src/go/collectors/go.d.plugin/modules/ping/prober.go index bd7c8cfbfd..e0d9925b4e 100644 --- a/src/go/collectors/go.d.plugin/modules/ping/prober.go +++ b/src/go/collectors/go.d.plugin/modules/ping/prober.go @@ -8,7 +8,7 @@ import ( "net" "time" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/logger" probing "github.com/prometheus-community/pro-bing" ) diff --git a/src/go/collectors/go.d.plugin/modules/portcheck/charts.go b/src/go/collectors/go.d.plugin/modules/portcheck/charts.go index b4e9b0977a..6b88f7a8f7 100644 --- a/src/go/collectors/go.d.plugin/modules/portcheck/charts.go +++ b/src/go/collectors/go.d.plugin/modules/portcheck/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strconv" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/portcheck/init.go b/src/go/collectors/go.d.plugin/modules/portcheck/init.go index d5c2ebb557..9c9a7e3fc7 100644 --- a/src/go/collectors/go.d.plugin/modules/portcheck/init.go +++ b/src/go/collectors/go.d.plugin/modules/portcheck/init.go @@ -5,7 +5,7 @@ package portcheck import ( "errors" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (pc *PortCheck) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/portcheck/integrations/tcp_endpoints.md b/src/go/collectors/go.d.plugin/modules/portcheck/integrations/tcp_endpoints.md index f14aac41c3..07603c9125 100644 --- a/src/go/collectors/go.d.plugin/modules/portcheck/integrations/tcp_endpoints.md +++ b/src/go/collectors/go.d.plugin/modules/portcheck/integrations/tcp_endpoints.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/por meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/portcheck/metadata.yaml" sidebar_label: "TCP Endpoints" learn_status: "Published" -learn_rel_path: "Data Collection/Synthetic Checks" +learn_rel_path: "Collecting Metrics/Synthetic Checks" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -101,7 +101,7 @@ The configuration file name for this integration is `go.d/portcheck.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/portcheck/portcheck.go b/src/go/collectors/go.d.plugin/modules/portcheck/portcheck.go index c7e2c0b9dc..c018a852fd 100644 --- a/src/go/collectors/go.d.plugin/modules/portcheck/portcheck.go +++ b/src/go/collectors/go.d.plugin/modules/portcheck/portcheck.go @@ -7,8 +7,8 @@ import ( "net" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/portcheck/portcheck_test.go b/src/go/collectors/go.d.plugin/modules/portcheck/portcheck_test.go index 2e242cbbbb..ab1665db53 100644 --- a/src/go/collectors/go.d.plugin/modules/portcheck/portcheck_test.go +++ b/src/go/collectors/go.d.plugin/modules/portcheck/portcheck_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/postgres/charts.go b/src/go/collectors/go.d.plugin/modules/postgres/charts.go index 02904fcf1b..8003ab9f83 100644 --- a/src/go/collectors/go.d.plugin/modules/postgres/charts.go +++ b/src/go/collectors/go.d.plugin/modules/postgres/charts.go @@ -7,7 +7,7 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/postgres/do_query_replication.go b/src/go/collectors/go.d.plugin/modules/postgres/do_query_replication.go index e92aa10df7..22ff47003e 100644 --- a/src/go/collectors/go.d.plugin/modules/postgres/do_query_replication.go +++ b/src/go/collectors/go.d.plugin/modules/postgres/do_query_replication.go @@ -36,7 +36,7 @@ func (p *Postgres) doQueryReplStandbyAppWALDelta() error { app = value p.getReplAppMetrics(app).updated = true default: - // TODO: delta calculation was changed in https://github.com/netdata/go.d.plugin/pull/1039 + // TODO: delta calculation was changed in https://github.com/netdata/netdata/go/go.d.plugin/pull/1039 // - 'replay_delta' (probably other deltas too?) can be negative // - Also, WAL delta != WAL lag after that PR v := parseInt(value) diff --git a/src/go/collectors/go.d.plugin/modules/postgres/init.go b/src/go/collectors/go.d.plugin/modules/postgres/init.go index 3b324c07e5..315a876a79 100644 --- a/src/go/collectors/go.d.plugin/modules/postgres/init.go +++ b/src/go/collectors/go.d.plugin/modules/postgres/init.go @@ -5,7 +5,7 @@ package postgres import ( "errors" - "github.com/netdata/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" ) func (p *Postgres) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/postgres/integrations/postgresql.md b/src/go/collectors/go.d.plugin/modules/postgres/integrations/postgresql.md index c80595bd96..2d6b8ca926 100644 --- a/src/go/collectors/go.d.plugin/modules/postgres/integrations/postgresql.md +++ b/src/go/collectors/go.d.plugin/modules/postgres/integrations/postgresql.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pos meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/postgres/metadata.yaml" sidebar_label: "PostgreSQL" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -280,7 +280,7 @@ The configuration file name for this integration is `go.d/postgres.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/postgres/metrics.go b/src/go/collectors/go.d.plugin/modules/postgres/metrics.go index b071e1694e..b60fbdf8ae 100644 --- a/src/go/collectors/go.d.plugin/modules/postgres/metrics.go +++ b/src/go/collectors/go.d.plugin/modules/postgres/metrics.go @@ -2,7 +2,7 @@ package postgres -import "github.com/netdata/go.d.plugin/pkg/metrics" +import "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics" type pgMetrics struct { srvMetrics diff --git a/src/go/collectors/go.d.plugin/modules/postgres/postgres.go b/src/go/collectors/go.d.plugin/modules/postgres/postgres.go index a1dabf9d39..b7a2ad0e52 100644 --- a/src/go/collectors/go.d.plugin/modules/postgres/postgres.go +++ b/src/go/collectors/go.d.plugin/modules/postgres/postgres.go @@ -8,10 +8,10 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/matcher" - "github.com/netdata/go.d.plugin/pkg/metrics" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/jackc/pgx/v4/stdlib" _ "github.com/jackc/pgx/v4/stdlib" diff --git a/src/go/collectors/go.d.plugin/modules/postgres/postgres_test.go b/src/go/collectors/go.d.plugin/modules/postgres/postgres_test.go index a41c112355..9fb30fccf4 100644 --- a/src/go/collectors/go.d.plugin/modules/postgres/postgres_test.go +++ b/src/go/collectors/go.d.plugin/modules/postgres/postgres_test.go @@ -12,7 +12,7 @@ import ( "strings" "testing" - "github.com/netdata/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" "github.com/DATA-DOG/go-sqlmock" "github.com/stretchr/testify/assert" diff --git a/src/go/collectors/go.d.plugin/modules/powerdns/authoritativens.go b/src/go/collectors/go.d.plugin/modules/powerdns/authoritativens.go index 07b7fdbcfe..53073bd150 100644 --- a/src/go/collectors/go.d.plugin/modules/powerdns/authoritativens.go +++ b/src/go/collectors/go.d.plugin/modules/powerdns/authoritativens.go @@ -7,8 +7,8 @@ import ( "net/http" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/powerdns/authoritativens_test.go b/src/go/collectors/go.d.plugin/modules/powerdns/authoritativens_test.go index 71e5c6dc4d..e4eb40e502 100644 --- a/src/go/collectors/go.d.plugin/modules/powerdns/authoritativens_test.go +++ b/src/go/collectors/go.d.plugin/modules/powerdns/authoritativens_test.go @@ -8,8 +8,8 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/powerdns/charts.go b/src/go/collectors/go.d.plugin/modules/powerdns/charts.go index aa61149e69..119ca4a2e1 100644 --- a/src/go/collectors/go.d.plugin/modules/powerdns/charts.go +++ b/src/go/collectors/go.d.plugin/modules/powerdns/charts.go @@ -2,7 +2,7 @@ package powerdns -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" var charts = module.Charts{ { diff --git a/src/go/collectors/go.d.plugin/modules/powerdns/collect.go b/src/go/collectors/go.d.plugin/modules/powerdns/collect.go index 7a184d9160..359d419803 100644 --- a/src/go/collectors/go.d.plugin/modules/powerdns/collect.go +++ b/src/go/collectors/go.d.plugin/modules/powerdns/collect.go @@ -10,7 +10,7 @@ import ( "net/http" "strconv" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/powerdns/init.go b/src/go/collectors/go.d.plugin/modules/powerdns/init.go index a577db7732..239caacb8d 100644 --- a/src/go/collectors/go.d.plugin/modules/powerdns/init.go +++ b/src/go/collectors/go.d.plugin/modules/powerdns/init.go @@ -6,8 +6,8 @@ import ( "errors" "net/http" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (ns AuthoritativeNS) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/powerdns/integrations/powerdns_authoritative_server.md b/src/go/collectors/go.d.plugin/modules/powerdns/integrations/powerdns_authoritative_server.md index 4c776193a5..c2134a69a9 100644 --- a/src/go/collectors/go.d.plugin/modules/powerdns/integrations/powerdns_authoritative_server.md +++ b/src/go/collectors/go.d.plugin/modules/powerdns/integrations/powerdns_authoritative_server.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pow meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/powerdns/metadata.yaml" sidebar_label: "PowerDNS Authoritative Server" learn_status: "Published" -learn_rel_path: "Data Collection/DNS and DHCP Servers" +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -105,7 +105,7 @@ The configuration file name for this integration is `go.d/powerdns.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/powerdns_recursor/charts.go b/src/go/collectors/go.d.plugin/modules/powerdns_recursor/charts.go index 904d807a14..d0bd7c36e0 100644 --- a/src/go/collectors/go.d.plugin/modules/powerdns_recursor/charts.go +++ b/src/go/collectors/go.d.plugin/modules/powerdns_recursor/charts.go @@ -2,7 +2,7 @@ package powerdns_recursor -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" var charts = module.Charts{ { diff --git a/src/go/collectors/go.d.plugin/modules/powerdns_recursor/collect.go b/src/go/collectors/go.d.plugin/modules/powerdns_recursor/collect.go index a25dab1f56..ec2e99c907 100644 --- a/src/go/collectors/go.d.plugin/modules/powerdns_recursor/collect.go +++ b/src/go/collectors/go.d.plugin/modules/powerdns_recursor/collect.go @@ -10,7 +10,7 @@ import ( "net/http" "strconv" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/powerdns_recursor/init.go b/src/go/collectors/go.d.plugin/modules/powerdns_recursor/init.go index aa74eec2fe..accb50c986 100644 --- a/src/go/collectors/go.d.plugin/modules/powerdns_recursor/init.go +++ b/src/go/collectors/go.d.plugin/modules/powerdns_recursor/init.go @@ -6,8 +6,8 @@ import ( "errors" "net/http" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (r Recursor) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/powerdns_recursor/integrations/powerdns_recursor.md b/src/go/collectors/go.d.plugin/modules/powerdns_recursor/integrations/powerdns_recursor.md index 3e23b649f8..d46258c7cf 100644 --- a/src/go/collectors/go.d.plugin/modules/powerdns_recursor/integrations/powerdns_recursor.md +++ b/src/go/collectors/go.d.plugin/modules/powerdns_recursor/integrations/powerdns_recursor.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pow meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/powerdns_recursor/metadata.yaml" sidebar_label: "PowerDNS Recursor" learn_status: "Published" -learn_rel_path: "Data Collection/DNS and DHCP Servers" +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -108,7 +108,7 @@ The configuration file name for this integration is `go.d/powerdns_recursor.conf You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/powerdns_recursor/recursor.go b/src/go/collectors/go.d.plugin/modules/powerdns_recursor/recursor.go index cd052ba6d4..e502b19675 100644 --- a/src/go/collectors/go.d.plugin/modules/powerdns_recursor/recursor.go +++ b/src/go/collectors/go.d.plugin/modules/powerdns_recursor/recursor.go @@ -7,8 +7,8 @@ import ( "net/http" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/powerdns_recursor/recursor_test.go b/src/go/collectors/go.d.plugin/modules/powerdns_recursor/recursor_test.go index 4ef3c2d086..61d8138442 100644 --- a/src/go/collectors/go.d.plugin/modules/powerdns_recursor/recursor_test.go +++ b/src/go/collectors/go.d.plugin/modules/powerdns_recursor/recursor_test.go @@ -8,8 +8,8 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/cache.go b/src/go/collectors/go.d.plugin/modules/prometheus/cache.go index 5fc283e2f5..7fc34f8c6c 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/cache.go +++ b/src/go/collectors/go.d.plugin/modules/prometheus/cache.go @@ -3,7 +3,7 @@ package prometheus import ( - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func newCache() *cache { diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/charts.go b/src/go/collectors/go.d.plugin/modules/prometheus/charts.go index 7092c95e9f..61e8031d75 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/charts.go +++ b/src/go/collectors/go.d.plugin/modules/prometheus/charts.go @@ -6,8 +6,8 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" "github.com/prometheus/prometheus/model/labels" ) diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/collect.go b/src/go/collectors/go.d.plugin/modules/prometheus/collect.go index 4494b88596..cc6656c745 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/collect.go +++ b/src/go/collectors/go.d.plugin/modules/prometheus/collect.go @@ -8,7 +8,7 @@ import ( "strconv" "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" "github.com/prometheus/prometheus/model/labels" "github.com/prometheus/prometheus/model/textparse" diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/init.go b/src/go/collectors/go.d.plugin/modules/prometheus/init.go index 638205a95f..f5cc8bca9f 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/init.go +++ b/src/go/collectors/go.d.plugin/modules/prometheus/init.go @@ -7,9 +7,9 @@ import ( "fmt" "os" - "github.com/netdata/go.d.plugin/pkg/matcher" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (p *Prometheus) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/4d_server.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/4d_server.md index 94978ed423..4505dff342 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/4d_server.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/4d_server.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "4D Server" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/8430ft_modem.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/8430ft_modem.md index 3f8debddb9..4d8195972d 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/8430ft_modem.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/8430ft_modem.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "8430FT modem" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/a10_acos_network_devices.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/a10_acos_network_devices.md index 93db7f0e27..cd09a67a85 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/a10_acos_network_devices.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/a10_acos_network_devices.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "A10 ACOS network devices" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/airthings_waveplus_air_sensor.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/airthings_waveplus_air_sensor.md index be9fae0ad2..b0caa4e52b 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/airthings_waveplus_air_sensor.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/airthings_waveplus_air_sensor.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Airthings Waveplus air sensor" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/akamai_edge_dns_traffic.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/akamai_edge_dns_traffic.md index d934150028..606282b14c 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/akamai_edge_dns_traffic.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/akamai_edge_dns_traffic.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Akamai Edge DNS Traffic" learn_status: "Published" -learn_rel_path: "Data Collection/DNS and DHCP Servers" +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/akamai_global_traffic_management.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/akamai_global_traffic_management.md index 38acbf0abd..c73edd0806 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/akamai_global_traffic_management.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/akamai_global_traffic_management.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Akamai Global Traffic Management" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/akami_cloudmonitor.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/akami_cloudmonitor.md index 2953cbdde1..7eb068e8d8 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/akami_cloudmonitor.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/akami_cloudmonitor.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Akami Cloudmonitor" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/alamos_fe2_server.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/alamos_fe2_server.md index 3917f61913..e1087d97d5 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/alamos_fe2_server.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/alamos_fe2_server.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Alamos FE2 server" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/alibaba_cloud.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/alibaba_cloud.md index fc0ded5e92..08d2551fd7 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/alibaba_cloud.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/alibaba_cloud.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Alibaba Cloud" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/altaro_backup.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/altaro_backup.md index bd12eef540..8455cd99b1 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/altaro_backup.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/altaro_backup.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Altaro Backup" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/amd_cpu_&_gpu.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/amd_cpu_&_gpu.md index 5d6471921a..984ef5fe6c 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/amd_cpu_&_gpu.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/amd_cpu_&_gpu.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "AMD CPU & GPU" learn_status: "Published" -learn_rel_path: "Data Collection/Hardware Devices and Sensors" +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/andrews_&_arnold_line_status.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/andrews_&_arnold_line_status.md index 97e0bbd1a5..8a365582b8 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/andrews_&_arnold_line_status.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/andrews_&_arnold_line_status.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Andrews & Arnold line status" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apache_airflow.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apache_airflow.md index ed1a171aff..fb076c8fbc 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apache_airflow.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apache_airflow.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Apache Airflow" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apache_flink.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apache_flink.md index ac64e9a249..768b676433 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apache_flink.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apache_flink.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Apache Flink" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apicast.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apicast.md index 0be15112f6..cf847c0d47 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apicast.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apicast.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "APIcast" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apple_time_machine.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apple_time_machine.md index cac726b194..27a6a982e2 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apple_time_machine.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/apple_time_machine.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Apple Time Machine" learn_status: "Published" -learn_rel_path: "Data Collection/macOS Systems" +learn_rel_path: "Collecting Metrics/macOS Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/arm_hwcpipe.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/arm_hwcpipe.md index bbfdfaa722..0528a6a5bf 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/arm_hwcpipe.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/arm_hwcpipe.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "ARM HWCPipe" learn_status: "Published" -learn_rel_path: "Data Collection/Hardware Devices and Sensors" +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aruba_devices.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aruba_devices.md index f1360738f5..a76d722d81 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aruba_devices.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aruba_devices.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Aruba devices" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/arvancloud_cdn.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/arvancloud_cdn.md index 68e1bdc55e..eca6b52120 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/arvancloud_cdn.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/arvancloud_cdn.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "ArvanCloud CDN" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/audisto.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/audisto.md index 35dda7b33a..15e7f82c25 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/audisto.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/audisto.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Audisto" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/authlog.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/authlog.md index 3f771c0c16..5f7d7d3717 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/authlog.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/authlog.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "AuthLog" learn_status: "Published" -learn_rel_path: "Data Collection/Logs Servers" +learn_rel_path: "Collecting Metrics/Logs Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_ec2_compute_instances.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_ec2_compute_instances.md index 80eddeee43..234f141127 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_ec2_compute_instances.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_ec2_compute_instances.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "AWS EC2 Compute instances" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_ec2_spot_instance.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_ec2_spot_instance.md index bae99f9aaa..2adc977d43 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_ec2_spot_instance.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_ec2_spot_instance.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "AWS EC2 Spot Instance" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_ecs.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_ecs.md index 00ca3dc0b7..09ec186b3c 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_ecs.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_ecs.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "AWS ECS" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_health_events.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_health_events.md index 03f8039772..fa06b79b00 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_health_events.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_health_events.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "AWS Health events" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_instance_health.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_instance_health.md index 08ff6239f6..c504527285 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_instance_health.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_instance_health.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "AWS instance health" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_quota.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_quota.md index 4646ec80b6..adcd2c15fd 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_quota.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_quota.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "AWS Quota" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_rds.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_rds.md index f383f52bd5..99a40c33ef 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_rds.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_rds.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "AWS RDS" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_s3_buckets.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_s3_buckets.md index abbdadac4d..f89202edd3 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_s3_buckets.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_s3_buckets.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "AWS S3 buckets" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_sqs.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_sqs.md index 58f888746c..9bb8a52c3a 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_sqs.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/aws_sqs.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "AWS SQS" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_ad_app_passwords.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_ad_app_passwords.md index 7f4cfcd7c6..c60816c5b1 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_ad_app_passwords.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_ad_app_passwords.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Azure AD App passwords" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_application.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_application.md index 4ef23a4142..6974d355db 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_application.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_application.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Azure application" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_elastic_pool_sql.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_elastic_pool_sql.md index 65986c5cb4..af8927e692 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_elastic_pool_sql.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_elastic_pool_sql.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Azure Elastic Pool SQL" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_resources.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_resources.md index 49300906ab..27778d58f5 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_resources.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_resources.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Azure Resources" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_service_bus.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_service_bus.md index f1b395c336..dcd2285bad 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_service_bus.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_service_bus.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Azure Service Bus" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_sql.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_sql.md index 9ea9802891..5c5a77f874 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_sql.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/azure_sql.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Azure SQL" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bigquery.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bigquery.md index f5a02272b6..cb71c22640 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bigquery.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bigquery.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "BigQuery" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bird_routing_daemon.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bird_routing_daemon.md index 2f68a00fa3..74c375a353 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bird_routing_daemon.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bird_routing_daemon.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Bird Routing Daemon" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/blackbox.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/blackbox.md index 841645ad43..c01ba0ed70 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/blackbox.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/blackbox.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Blackbox" learn_status: "Published" -learn_rel_path: "Data Collection/Synthetic Checks" +learn_rel_path: "Collecting Metrics/Synthetic Checks" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bobcat_miner_300.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bobcat_miner_300.md index 9935327bd3..017872055d 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bobcat_miner_300.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bobcat_miner_300.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Bobcat Miner 300" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/borg_backup.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/borg_backup.md index cfaaaee0fb..7a2a530322 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/borg_backup.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/borg_backup.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Borg backup" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bosh.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bosh.md index 79af24d511..9cb1071432 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bosh.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bosh.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "BOSH" learn_status: "Published" -learn_rel_path: "Data Collection/Provisioning Systems" +learn_rel_path: "Collecting Metrics/Provisioning Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bpftrace_variables.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bpftrace_variables.md index cf4884e848..0d2bda4263 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bpftrace_variables.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bpftrace_variables.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "bpftrace variables" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bungeecord.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bungeecord.md index f60a2daaa1..a552f0893b 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bungeecord.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/bungeecord.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "BungeeCord" learn_status: "Published" -learn_rel_path: "Data Collection/Gaming" +learn_rel_path: "Collecting Metrics/Gaming" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cadvisor.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cadvisor.md index f2d6aaba9d..19a1276ed8 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cadvisor.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cadvisor.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "cAdvisor" learn_status: "Published" -learn_rel_path: "Data Collection/Containers and VMs" +learn_rel_path: "Collecting Metrics/Containers and VMs" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/celery.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/celery.md index de3a10a72f..5ca9035714 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/celery.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/celery.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Celery" learn_status: "Published" -learn_rel_path: "Data Collection/Task Queues" +learn_rel_path: "Collecting Metrics/Task Queues" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/certificate_transparency.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/certificate_transparency.md index 185dbbc559..a12818bb5e 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/certificate_transparency.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/certificate_transparency.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Certificate Transparency" learn_status: "Published" -learn_rel_path: "Data Collection/Security Systems" +learn_rel_path: "Collecting Metrics/Security Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -97,7 +97,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/checkpoint_device.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/checkpoint_device.md index 284fb8775f..2bffdf0a61 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/checkpoint_device.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/checkpoint_device.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Checkpoint device" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/chia.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/chia.md index 51231b087f..83e318d3b5 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/chia.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/chia.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Chia" learn_status: "Published" -learn_rel_path: "Data Collection/Blockchain Servers" +learn_rel_path: "Collecting Metrics/Blockchain Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/christ_elektronik_clm5ip_power_panel.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/christ_elektronik_clm5ip_power_panel.md index 29f6fcd4cc..78290433a1 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/christ_elektronik_clm5ip_power_panel.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/christ_elektronik_clm5ip_power_panel.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Christ Elektronik CLM5IP power panel" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cilium_agent.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cilium_agent.md index 72678c161d..913d46a358 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cilium_agent.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cilium_agent.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Cilium Agent" learn_status: "Published" -learn_rel_path: "Data Collection/Kubernetes" +learn_rel_path: "Collecting Metrics/Kubernetes" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cilium_operator.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cilium_operator.md index 36fd328dea..586c9ead9c 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cilium_operator.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cilium_operator.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Cilium Operator" learn_status: "Published" -learn_rel_path: "Data Collection/Kubernetes" +learn_rel_path: "Collecting Metrics/Kubernetes" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cilium_proxy.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cilium_proxy.md index 421e17914c..5a8811016b 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cilium_proxy.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cilium_proxy.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Cilium Proxy" learn_status: "Published" -learn_rel_path: "Data Collection/Kubernetes" +learn_rel_path: "Collecting Metrics/Kubernetes" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cisco_aci.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cisco_aci.md index c6dfe188b6..97504ab4e7 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cisco_aci.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cisco_aci.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Cisco ACI" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/citrix_netscaler.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/citrix_netscaler.md index aabf12446b..5162430886 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/citrix_netscaler.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/citrix_netscaler.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Citrix NetScaler" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clamav_daemon.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clamav_daemon.md index ae99e3bf2e..27ffbed840 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clamav_daemon.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clamav_daemon.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "ClamAV daemon" learn_status: "Published" -learn_rel_path: "Data Collection/Security Systems" +learn_rel_path: "Collecting Metrics/Security Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clamscan_results.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clamscan_results.md index 42daba173a..b95de60549 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clamscan_results.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clamscan_results.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Clamscan results" learn_status: "Published" -learn_rel_path: "Data Collection/Security Systems" +learn_rel_path: "Collecting Metrics/Security Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clash.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clash.md index 2f93c4fd5a..fea7eadcfc 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clash.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clash.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Clash" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clickhouse.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clickhouse.md index c55bd2a32c..9f16384878 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clickhouse.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clickhouse.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "ClickHouse" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloud_foundry.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloud_foundry.md index c2c5811af0..f51592a169 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloud_foundry.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloud_foundry.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Cloud Foundry" learn_status: "Published" -learn_rel_path: "Data Collection/Provisioning Systems" +learn_rel_path: "Collecting Metrics/Provisioning Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloud_foundry_firehose.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloud_foundry_firehose.md index 0ae4f22b9f..6efbce5936 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloud_foundry_firehose.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloud_foundry_firehose.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Cloud Foundry Firehose" learn_status: "Published" -learn_rel_path: "Data Collection/Provisioning Systems" +learn_rel_path: "Collecting Metrics/Provisioning Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloudflare_pcap.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloudflare_pcap.md index 75801f82df..afbf75e3ca 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloudflare_pcap.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloudflare_pcap.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Cloudflare PCAP" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloudwatch.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloudwatch.md index b59d4a4824..a66bafae16 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloudwatch.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cloudwatch.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "CloudWatch" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clustercontrol_cmon.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clustercontrol_cmon.md index 90c11fe36c..3f35cf87db 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clustercontrol_cmon.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/clustercontrol_cmon.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "ClusterControl CMON" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/collectd.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/collectd.md index 1bb2abaa91..2a1274ff86 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/collectd.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/collectd.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Collectd" learn_status: "Published" -learn_rel_path: "Data Collection/Observability" +learn_rel_path: "Collecting Metrics/Observability" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/concourse.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/concourse.md index f752b3d7ac..ae935d724d 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/concourse.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/concourse.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Concourse" learn_status: "Published" -learn_rel_path: "Data Collection/CICD Platforms" +learn_rel_path: "Collecting Metrics/CICD Platforms" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/craftbeerpi.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/craftbeerpi.md index bb5bd96f88..ca1d2e6daa 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/craftbeerpi.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/craftbeerpi.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "CraftBeerPi" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/crowdsec.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/crowdsec.md index 382b7937e8..40a897811c 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/crowdsec.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/crowdsec.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Crowdsec" learn_status: "Published" -learn_rel_path: "Data Collection/Security Systems" +learn_rel_path: "Collecting Metrics/Security Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/crypto_exchanges.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/crypto_exchanges.md index 6393f41da5..4c33ee1eeb 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/crypto_exchanges.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/crypto_exchanges.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Crypto exchanges" learn_status: "Published" -learn_rel_path: "Data Collection/Blockchain Servers" +learn_rel_path: "Collecting Metrics/Blockchain Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cryptowatch.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cryptowatch.md index b918e6404f..d9c6b49558 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cryptowatch.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cryptowatch.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Cryptowatch" learn_status: "Published" -learn_rel_path: "Data Collection/Blockchain Servers" +learn_rel_path: "Collecting Metrics/Blockchain Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/csgo.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/csgo.md index edd06408d2..19e2dfe6af 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/csgo.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/csgo.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "CS:GO" learn_status: "Published" -learn_rel_path: "Data Collection/Gaming" +learn_rel_path: "Collecting Metrics/Gaming" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/custom_exporter.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/custom_exporter.md index 92342c447b..97cfcd30be 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/custom_exporter.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/custom_exporter.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Custom Exporter" learn_status: "Published" -learn_rel_path: "Data Collection/Generic Data Collection" +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cvmfs_clients.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cvmfs_clients.md index f9c9fb9989..1e94530201 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cvmfs_clients.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/cvmfs_clients.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "CVMFS clients" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ddwrt_routers.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ddwrt_routers.md index 26f5d63a81..754713eb6a 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ddwrt_routers.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ddwrt_routers.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "DDWRT Routers" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_emc_ecs_cluster.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_emc_ecs_cluster.md index aaf2e77a1f..73d300d205 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_emc_ecs_cluster.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_emc_ecs_cluster.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Dell EMC ECS cluster" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_emc_isilon_cluster.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_emc_isilon_cluster.md index a0b3eb12b4..3e5058e235 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_emc_isilon_cluster.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_emc_isilon_cluster.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Dell EMC Isilon cluster" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_emc_xtremio_cluster.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_emc_xtremio_cluster.md index 1eff7f5581..b6680ad707 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_emc_xtremio_cluster.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_emc_xtremio_cluster.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Dell EMC XtremIO cluster" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_powermax.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_powermax.md index 82ab63409b..b7dda3be9f 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_powermax.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dell_powermax.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Dell PowerMax" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dependency-track.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dependency-track.md index b766621beb..a59208d23e 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dependency-track.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dependency-track.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Dependency-Track" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/digitalocean.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/digitalocean.md index 0e433205d1..e6d9ce314b 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/digitalocean.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/digitalocean.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "DigitalOcean" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/discourse.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/discourse.md index 4ec819ec14..af408ba3c5 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/discourse.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/discourse.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Discourse" learn_status: "Published" -learn_rel_path: "Data Collection/Media Services" +learn_rel_path: "Collecting Metrics/Media Services" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dmarc.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dmarc.md index 4f1ba7c27a..6c6440fd33 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dmarc.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dmarc.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "DMARC" learn_status: "Published" -learn_rel_path: "Data Collection/Mail Servers" +learn_rel_path: "Collecting Metrics/Mail Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dnsbl.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dnsbl.md index a316474621..f79394af72 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dnsbl.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dnsbl.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "DNSBL" learn_status: "Published" -learn_rel_path: "Data Collection/DNS and DHCP Servers" +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dutch_electricity_smart_meter.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dutch_electricity_smart_meter.md index e37655359e..a76564ff0e 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dutch_electricity_smart_meter.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dutch_electricity_smart_meter.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Dutch Electricity Smart Meter" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dynatrace.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dynatrace.md index 102033e173..4d630fa36e 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dynatrace.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/dynatrace.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Dynatrace" learn_status: "Published" -learn_rel_path: "Data Collection/Observability" +learn_rel_path: "Collecting Metrics/Observability" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/eaton_ups.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/eaton_ups.md index c3ebbdb872..31a114d7ba 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/eaton_ups.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/eaton_ups.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Eaton UPS" learn_status: "Published" -learn_rel_path: "Data Collection/UPS" +learn_rel_path: "Collecting Metrics/UPS" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/elgato_key_light_devices..md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/elgato_key_light_devices..md index 9b0ebd6054..f5c8322d0c 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/elgato_key_light_devices..md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/elgato_key_light_devices..md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Elgato Key Light devices." learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/energomera_smart_power_meters.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/energomera_smart_power_meters.md index 2bf3d6b486..66169535e3 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/energomera_smart_power_meters.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/energomera_smart_power_meters.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Energomera smart power meters" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/eos.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/eos.md index 1b697ee5fc..86c10d1d15 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/eos.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/eos.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "EOS" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/etcd.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/etcd.md index 799652b014..6993863bc0 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/etcd.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/etcd.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "etcd" learn_status: "Published" -learn_rel_path: "Data Collection/Service Discovery / Registry" +learn_rel_path: "Collecting Metrics/Service Discovery / Registry" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -92,7 +92,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/excel_spreadsheet.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/excel_spreadsheet.md index 808b823f98..efc263462c 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/excel_spreadsheet.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/excel_spreadsheet.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Excel spreadsheet" learn_status: "Published" -learn_rel_path: "Data Collection/Generic Data Collection" +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/fastd.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/fastd.md index 549eeccc97..b4fca7774a 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/fastd.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/fastd.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Fastd" learn_status: "Published" -learn_rel_path: "Data Collection/VPNs" +learn_rel_path: "Collecting Metrics/VPNs" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/fortigate_firewall.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/fortigate_firewall.md index fef9e51653..6d7dc87247 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/fortigate_firewall.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/fortigate_firewall.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Fortigate firewall" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/freebsd_nfs.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/freebsd_nfs.md index 0975b230bb..023f5b598c 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/freebsd_nfs.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/freebsd_nfs.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "FreeBSD NFS" learn_status: "Published" -learn_rel_path: "Data Collection/FreeBSD" +learn_rel_path: "Collecting Metrics/FreeBSD" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/freebsd_rctl-racct.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/freebsd_rctl-racct.md index 923aaafb5b..2edf702e91 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/freebsd_rctl-racct.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/freebsd_rctl-racct.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "FreeBSD RCTL-RACCT" learn_status: "Published" -learn_rel_path: "Data Collection/FreeBSD" +learn_rel_path: "Collecting Metrics/FreeBSD" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/freifunk_network.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/freifunk_network.md index 1cc0d25e19..1127fc7175 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/freifunk_network.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/freifunk_network.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Freifunk network" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/fritzbox_network_devices.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/fritzbox_network_devices.md index 189ae79421..f76f74684f 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/fritzbox_network_devices.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/fritzbox_network_devices.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Fritzbox network devices" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/frrouting.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/frrouting.md index 06e24f31a3..c65725c541 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/frrouting.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/frrouting.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "FRRouting" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gcp_gce.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gcp_gce.md index 65ddd3d96a..8a10f05bbd 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gcp_gce.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gcp_gce.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "GCP GCE" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gcp_quota.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gcp_quota.md index fdd865db91..1ad3016c1d 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gcp_quota.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gcp_quota.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "GCP Quota" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/generic_command_line_output.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/generic_command_line_output.md index eb4ac5c654..2671d2a29d 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/generic_command_line_output.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/generic_command_line_output.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Generic Command Line Output" learn_status: "Published" -learn_rel_path: "Data Collection/Generic Data Collection" +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/generic_storage_enclosure_tool.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/generic_storage_enclosure_tool.md index 4ca57bdf65..c896578e66 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/generic_storage_enclosure_tool.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/generic_storage_enclosure_tool.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Generic storage enclosure tool" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/github_api_rate_limit.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/github_api_rate_limit.md index 875d184d52..39ad176b43 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/github_api_rate_limit.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/github_api_rate_limit.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "GitHub API rate limit" learn_status: "Published" -learn_rel_path: "Data Collection/Other" +learn_rel_path: "Collecting Metrics/Other" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -97,7 +97,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/github_repository.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/github_repository.md index a72b8c406b..e1c9b80f01 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/github_repository.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/github_repository.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "GitHub repository" learn_status: "Published" -learn_rel_path: "Data Collection/Other" +learn_rel_path: "Collecting Metrics/Other" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gitlab_runner.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gitlab_runner.md index d9ed2fe8a8..eeaf26612a 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gitlab_runner.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gitlab_runner.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "GitLab Runner" learn_status: "Published" -learn_rel_path: "Data Collection/CICD Platforms" +learn_rel_path: "Collecting Metrics/CICD Platforms" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gobetween.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gobetween.md index 0342e77f6f..5f9368dbfa 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gobetween.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gobetween.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Gobetween" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -92,7 +92,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/google_cloud_platform.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/google_cloud_platform.md index 86590f20af..a50668d124 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/google_cloud_platform.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/google_cloud_platform.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Google Cloud Platform" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/google_pagespeed.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/google_pagespeed.md index 348392ff03..eb26e1777f 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/google_pagespeed.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/google_pagespeed.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Google Pagespeed" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/google_stackdriver.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/google_stackdriver.md index a7a2a2541c..6d419cf127 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/google_stackdriver.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/google_stackdriver.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Google Stackdriver" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gpsd.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gpsd.md index c3d2bf0bb4..99ea47c050 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gpsd.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gpsd.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "gpsd" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/grafana.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/grafana.md index 430dabc879..67d5d24467 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/grafana.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/grafana.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Grafana" learn_status: "Published" -learn_rel_path: "Data Collection/Observability" +learn_rel_path: "Collecting Metrics/Observability" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -92,7 +92,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/graylog_server.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/graylog_server.md index 6abcf567b9..fadd2d89d4 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/graylog_server.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/graylog_server.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Graylog Server" learn_status: "Published" -learn_rel_path: "Data Collection/Logs Servers" +learn_rel_path: "Collecting Metrics/Logs Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gtp.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gtp.md index cd1f0765e2..167af0a8e8 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gtp.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/gtp.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "GTP" learn_status: "Published" -learn_rel_path: "Data Collection/Telephony Servers" +learn_rel_path: "Collecting Metrics/Telephony Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/halon.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/halon.md index c71f99568a..c6f53ddcbb 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/halon.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/halon.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Halon" learn_status: "Published" -learn_rel_path: "Data Collection/Mail Servers" +learn_rel_path: "Collecting Metrics/Mail Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hana.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hana.md index dd72aa97b9..c8d3a075e8 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hana.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hana.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "HANA" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hashicorp_vault_secrets.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hashicorp_vault_secrets.md index 9dd68d7d4c..681b7bc115 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hashicorp_vault_secrets.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hashicorp_vault_secrets.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "HashiCorp Vault secrets" learn_status: "Published" -learn_rel_path: "Data Collection/Authentication and Authorization" +learn_rel_path: "Collecting Metrics/Authentication and Authorization" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hasura_graphql_server.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hasura_graphql_server.md index b122d46d69..3c8fafd2c6 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hasura_graphql_server.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hasura_graphql_server.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Hasura GraphQL Server" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -97,7 +97,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hdsentinel.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hdsentinel.md index 5bf41c8afc..1f392672f5 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hdsentinel.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hdsentinel.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "HDSentinel" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/helium_hotspot.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/helium_hotspot.md index 19bd169809..de47cf2a77 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/helium_hotspot.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/helium_hotspot.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Helium hotspot" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/helium_miner_validator.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/helium_miner_validator.md index 65dc7b75c3..2ee7ecad08 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/helium_miner_validator.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/helium_miner_validator.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Helium miner (validator)" learn_status: "Published" -learn_rel_path: "Data Collection/Blockchain Servers" +learn_rel_path: "Collecting Metrics/Blockchain Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hhvm.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hhvm.md index 86de2bea4d..c83b91f10c 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hhvm.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hhvm.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "HHVM" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -97,7 +97,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hitron_cgn_series_cpe.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hitron_cgn_series_cpe.md index 72e7504bb9..75cd0a95c1 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hitron_cgn_series_cpe.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hitron_cgn_series_cpe.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Hitron CGN series CPE" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hitron_coda_cable_modem.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hitron_coda_cable_modem.md index 1a095d4ae2..abfc1779bd 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hitron_coda_cable_modem.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hitron_coda_cable_modem.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Hitron CODA Cable Modem" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/homebridge.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/homebridge.md index 40ee07c948..5099221a78 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/homebridge.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/homebridge.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Homebridge" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/homey.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/homey.md index 382b562ce7..54fe129db3 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/homey.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/homey.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Homey" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/honeypot.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/honeypot.md index d9ba8ffb18..e585ccdf50 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/honeypot.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/honeypot.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Honeypot" learn_status: "Published" -learn_rel_path: "Data Collection/Security Systems" +learn_rel_path: "Collecting Metrics/Security Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hp_ilo.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hp_ilo.md index b104e7b6a6..b910292fd4 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hp_ilo.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hp_ilo.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "HP iLO" learn_status: "Published" -learn_rel_path: "Data Collection/Hardware Devices and Sensors" +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/huawei_devices.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/huawei_devices.md index b20dd91fec..7731cd0ee9 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/huawei_devices.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/huawei_devices.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Huawei devices" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hubble.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hubble.md index e4e1f65e0f..c76e913e69 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hubble.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hubble.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Hubble" learn_status: "Published" -learn_rel_path: "Data Collection/Observability" +learn_rel_path: "Collecting Metrics/Observability" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_aix_systems_njmon.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_aix_systems_njmon.md index be807c3694..906ffa94dc 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_aix_systems_njmon.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_aix_systems_njmon.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "IBM AIX systems Njmon" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_cryptoexpress_cex_cards.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_cryptoexpress_cex_cards.md index fa9839564d..51f5dc18e1 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_cryptoexpress_cex_cards.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_cryptoexpress_cex_cards.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "IBM CryptoExpress (CEX) cards" learn_status: "Published" -learn_rel_path: "Data Collection/Hardware Devices and Sensors" +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_mq.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_mq.md index 019b5b3a8a..bff993a68f 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_mq.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_mq.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "IBM MQ" learn_status: "Published" -learn_rel_path: "Data Collection/Message Brokers" +learn_rel_path: "Collecting Metrics/Message Brokers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_spectrum.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_spectrum.md index 0e525e0c05..bcaf58a386 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_spectrum.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_spectrum.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "IBM Spectrum" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_spectrum_virtualize.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_spectrum_virtualize.md index 8225ee08ee..0c88a24521 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_spectrum_virtualize.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_spectrum_virtualize.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "IBM Spectrum Virtualize" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_z_hardware_management_console.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_z_hardware_management_console.md index 5086547beb..ccad660b0d 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_z_hardware_management_console.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_z_hardware_management_console.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "IBM Z Hardware Management Console" learn_status: "Published" -learn_rel_path: "Data Collection/Hardware Devices and Sensors" +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/influxdb.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/influxdb.md index 2ab8d67a1b..c1c5a588bd 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/influxdb.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/influxdb.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "InfluxDB" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/iota_full_node.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/iota_full_node.md index 59addee371..eefc221f98 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/iota_full_node.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/iota_full_node.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "IOTA full node" learn_status: "Published" -learn_rel_path: "Data Collection/Blockchain Servers" +learn_rel_path: "Collecting Metrics/Blockchain Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ipmi_by_soundcloud.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ipmi_by_soundcloud.md index 73391ca8ac..f5fe264da9 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ipmi_by_soundcloud.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ipmi_by_soundcloud.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "IPMI (By SoundCloud)" learn_status: "Published" -learn_rel_path: "Data Collection/Hardware Devices and Sensors" +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/iqair_airvisual_air_quality_monitors.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/iqair_airvisual_air_quality_monitors.md index a70489cc6b..bc27bf00b5 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/iqair_airvisual_air_quality_monitors.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/iqair_airvisual_air_quality_monitors.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "iqAir AirVisual air quality monitors" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jarvis_standing_desk.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jarvis_standing_desk.md index 92d8de46f7..248fc5dee7 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jarvis_standing_desk.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jarvis_standing_desk.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Jarvis Standing Desk" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jenkins.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jenkins.md index 7ca90f9716..9a3ffded90 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jenkins.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jenkins.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Jenkins" learn_status: "Published" -learn_rel_path: "Data Collection/CICD Platforms" +learn_rel_path: "Collecting Metrics/CICD Platforms" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jetbrains_floating_license_server.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jetbrains_floating_license_server.md index b26434ffdc..7334f3c2d2 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jetbrains_floating_license_server.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jetbrains_floating_license_server.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "JetBrains Floating License Server" learn_status: "Published" -learn_rel_path: "Data Collection/Generic Data Collection" +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jmx.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jmx.md index 856b5b8071..cff47e7f64 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jmx.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jmx.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "JMX" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jolokia.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jolokia.md index 5db34e647c..363743a840 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jolokia.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/jolokia.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "jolokia" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/journald.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/journald.md index 9bb7634f61..888288d6c1 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/journald.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/journald.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "journald" learn_status: "Published" -learn_rel_path: "Data Collection/Logs Servers" +learn_rel_path: "Collecting Metrics/Logs Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka.md index fbb10b0f94..40818d49c6 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Kafka" learn_status: "Published" -learn_rel_path: "Data Collection/Message Brokers" +learn_rel_path: "Collecting Metrics/Message Brokers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka_connect.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka_connect.md index 17acb1d72d..c20f2d57df 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka_connect.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka_connect.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Kafka Connect" learn_status: "Published" -learn_rel_path: "Data Collection/Message Brokers" +learn_rel_path: "Collecting Metrics/Message Brokers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka_consumer_lag.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka_consumer_lag.md index 7ef30d2722..ee5e8550c9 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka_consumer_lag.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka_consumer_lag.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Kafka Consumer Lag" learn_status: "Published" -learn_rel_path: "Data Collection/Service Discovery / Registry" +learn_rel_path: "Collecting Metrics/Service Discovery / Registry" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka_zookeeper.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka_zookeeper.md index 2d438cede5..269c2ee66e 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka_zookeeper.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kafka_zookeeper.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Kafka ZooKeeper" learn_status: "Published" -learn_rel_path: "Data Collection/Message Brokers" +learn_rel_path: "Collecting Metrics/Message Brokers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kannel.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kannel.md index ad45ba87b3..3c51a42a73 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kannel.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kannel.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Kannel" learn_status: "Published" -learn_rel_path: "Data Collection/Telephony Servers" +learn_rel_path: "Collecting Metrics/Telephony Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/keepalived.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/keepalived.md index 9239ba68f4..44f69a9365 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/keepalived.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/keepalived.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Keepalived" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kubernetes_cluster_cloud_cost.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kubernetes_cluster_cloud_cost.md index 4db075620c..26d7d115be 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kubernetes_cluster_cloud_cost.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/kubernetes_cluster_cloud_cost.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Kubernetes Cluster Cloud Cost" learn_status: "Published" -learn_rel_path: "Data Collection/Kubernetes" +learn_rel_path: "Collecting Metrics/Kubernetes" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/lagerist_disk_latency.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/lagerist_disk_latency.md index 55fc13f87e..0cb63ebc14 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/lagerist_disk_latency.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/lagerist_disk_latency.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Lagerist Disk latency" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ldap.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ldap.md index 684d4b475b..fdee8be1e1 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ldap.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ldap.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "LDAP" learn_status: "Published" -learn_rel_path: "Data Collection/Authentication and Authorization" +learn_rel_path: "Collecting Metrics/Authentication and Authorization" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/linode.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/linode.md index bfeb88ac60..a819078c8b 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/linode.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/linode.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Linode" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/loki.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/loki.md index 15157c5d6b..59f03c6d8f 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/loki.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/loki.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "loki" learn_status: "Published" -learn_rel_path: "Data Collection/Logs Servers" +learn_rel_path: "Collecting Metrics/Logs Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/lustre_metadata.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/lustre_metadata.md index 0052a3c414..0d6066ddd1 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/lustre_metadata.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/lustre_metadata.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Lustre metadata" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/lynis_audit_reports.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/lynis_audit_reports.md index 79aa29449b..a522837334 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/lynis_audit_reports.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/lynis_audit_reports.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Lynis audit reports" learn_status: "Published" -learn_rel_path: "Data Collection/Security Systems" +learn_rel_path: "Collecting Metrics/Security Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/machbase.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/machbase.md index 317ecd56b4..4263725594 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/machbase.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/machbase.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Machbase" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/maildir.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/maildir.md index aaf5d6be6e..0ae238a586 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/maildir.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/maildir.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Maildir" learn_status: "Published" -learn_rel_path: "Data Collection/Mail Servers" +learn_rel_path: "Collecting Metrics/Mail Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/meilisearch.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/meilisearch.md index 39bda87288..f6ea06095f 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/meilisearch.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/meilisearch.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Meilisearch" learn_status: "Published" -learn_rel_path: "Data Collection/Search Engines" +learn_rel_path: "Collecting Metrics/Search Engines" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/memcached_community.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/memcached_community.md index b1e818f5ef..817adf1909 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/memcached_community.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/memcached_community.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Memcached (community)" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/meraki_dashboard.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/meraki_dashboard.md index b45bf09f65..d71f3f4c67 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/meraki_dashboard.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/meraki_dashboard.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Meraki dashboard" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mesos.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mesos.md index 5c69b15bd9..8ae3b80e7d 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mesos.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mesos.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Mesos" learn_status: "Published" -learn_rel_path: "Data Collection/Task Queues" +learn_rel_path: "Collecting Metrics/Task Queues" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mikrotik_devices.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mikrotik_devices.md index 1b8b9ccfe4..e197cced37 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mikrotik_devices.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mikrotik_devices.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "MikroTik devices" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mikrotik_routeros_devices.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mikrotik_routeros_devices.md index b690ba8963..90d98bd6f7 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mikrotik_routeros_devices.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mikrotik_routeros_devices.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Mikrotik RouterOS devices" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/minecraft.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/minecraft.md index bda5244604..1c2a35a410 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/minecraft.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/minecraft.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Minecraft" learn_status: "Published" -learn_rel_path: "Data Collection/Gaming" +learn_rel_path: "Collecting Metrics/Gaming" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/modbus_protocol.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/modbus_protocol.md index f36eaa20b5..9f1ab81f1a 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/modbus_protocol.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/modbus_protocol.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Modbus protocol" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mogilefs.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mogilefs.md index 51d3eb4cce..d11dce52f0 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mogilefs.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mogilefs.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "MogileFS" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/monnit_sensors_mqtt.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/monnit_sensors_mqtt.md index 8aa3440fc6..544c830ab4 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/monnit_sensors_mqtt.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/monnit_sensors_mqtt.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Monnit Sensors MQTT" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mosquitto.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mosquitto.md index aae998ca70..6f45a4c0c1 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mosquitto.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mosquitto.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "mosquitto" learn_status: "Published" -learn_rel_path: "Data Collection/Message Brokers" +learn_rel_path: "Collecting Metrics/Message Brokers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mp707_usb_thermometer.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mp707_usb_thermometer.md index 7d32cb8b0c..748e340543 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mp707_usb_thermometer.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mp707_usb_thermometer.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "MP707 USB thermometer" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mqtt_blackbox.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mqtt_blackbox.md index 5af1e3e6be..0214999c39 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mqtt_blackbox.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mqtt_blackbox.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "MQTT Blackbox" learn_status: "Published" -learn_rel_path: "Data Collection/Message Brokers" +learn_rel_path: "Collecting Metrics/Message Brokers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mtail.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mtail.md index afff635f2c..832c89bbcf 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mtail.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/mtail.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "mtail" learn_status: "Published" -learn_rel_path: "Data Collection/Logs Servers" +learn_rel_path: "Collecting Metrics/Logs Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/naemon.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/naemon.md index 8b88353ba7..cdc97e77ab 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/naemon.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/naemon.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Naemon" learn_status: "Published" -learn_rel_path: "Data Collection/Observability" +learn_rel_path: "Collecting Metrics/Observability" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nagios.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nagios.md index 5d8ccb15fa..ef4f3ed2eb 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nagios.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nagios.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Nagios" learn_status: "Published" -learn_rel_path: "Data Collection/Observability" +learn_rel_path: "Collecting Metrics/Observability" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -97,7 +97,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nature_remo_e_lite_devices.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nature_remo_e_lite_devices.md index 2d4d3d96e3..1df578d8d8 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nature_remo_e_lite_devices.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nature_remo_e_lite_devices.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Nature Remo E lite devices" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netapp_ontap_api.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netapp_ontap_api.md index 8c75730d1f..c9cdf1f28b 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netapp_ontap_api.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netapp_ontap_api.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Netapp ONTAP API" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netapp_solidfire.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netapp_solidfire.md index 165478a5a0..956e17d87e 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netapp_solidfire.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netapp_solidfire.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "NetApp Solidfire" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netatmo_sensors.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netatmo_sensors.md index 29c3af3442..abaf4fdbf2 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netatmo_sensors.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netatmo_sensors.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Netatmo sensors" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netflow.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netflow.md index 5f9efadd98..b903da69a0 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netflow.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netflow.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "NetFlow" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netmeter.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netmeter.md index 7927de5244..9427414ceb 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netmeter.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/netmeter.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "NetMeter" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/new_relic.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/new_relic.md index 5bd56c886c..c41c963293 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/new_relic.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/new_relic.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "New Relic" learn_status: "Published" -learn_rel_path: "Data Collection/Observability" +learn_rel_path: "Collecting Metrics/Observability" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nextcloud_servers.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nextcloud_servers.md index bdac74c2ed..4b0b3267f2 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nextcloud_servers.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nextcloud_servers.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Nextcloud servers" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nextdns.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nextdns.md index 11b272fdb4..fd28b0805e 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nextdns.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nextdns.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "NextDNS" learn_status: "Published" -learn_rel_path: "Data Collection/DNS and DHCP Servers" +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nftables.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nftables.md index 3f3bcc52fe..9585c0b06b 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nftables.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nftables.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "nftables" learn_status: "Published" -learn_rel_path: "Data Collection/Linux Systems/Firewall" +learn_rel_path: "Collecting Metrics/Linux Systems/Firewall" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nrpe_daemon.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nrpe_daemon.md index 790fe94612..a4de728fd6 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nrpe_daemon.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nrpe_daemon.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "NRPE daemon" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nsx-t.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nsx-t.md index 83baf897e7..3a2d4842e9 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nsx-t.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nsx-t.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "NSX-T" learn_status: "Published" -learn_rel_path: "Data Collection/Containers and VMs" +learn_rel_path: "Collecting Metrics/Containers and VMs" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nvml.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nvml.md index d669d5c91e..ac738a1c6b 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nvml.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/nvml.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "NVML" learn_status: "Published" -learn_rel_path: "Data Collection/Hardware Devices and Sensors" +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/obs_studio.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/obs_studio.md index b463c731d1..1473722612 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/obs_studio.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/obs_studio.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "OBS Studio" learn_status: "Published" -learn_rel_path: "Data Collection/Media Services" +learn_rel_path: "Collecting Metrics/Media Services" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/odbc.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/odbc.md index 8bd59e66bf..a1702e200f 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/odbc.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/odbc.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "ODBC" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/open_vswitch.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/open_vswitch.md index 7b97c63792..b9a1bc8f7f 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/open_vswitch.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/open_vswitch.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Open vSwitch" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openhab.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openhab.md index 4fb5a5190b..c0afaa5df4 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openhab.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openhab.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "OpenHAB" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openldap_community.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openldap_community.md index 1f0592e5ed..ce2df1f34d 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openldap_community.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openldap_community.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "OpenLDAP (community)" learn_status: "Published" -learn_rel_path: "Data Collection/Authentication and Authorization" +learn_rel_path: "Collecting Metrics/Authentication and Authorization" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openrc.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openrc.md index b3a3a1262e..2c2983624d 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openrc.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openrc.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "OpenRC" learn_status: "Published" -learn_rel_path: "Data Collection/Linux Systems" +learn_rel_path: "Collecting Metrics/Linux Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openrct2.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openrct2.md index 9ed5224f00..89fad3df38 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openrct2.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openrct2.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "OpenRCT2" learn_status: "Published" -learn_rel_path: "Data Collection/Gaming" +learn_rel_path: "Collecting Metrics/Gaming" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openroadm_devices.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openroadm_devices.md index 9df8a04428..a8cef839b4 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openroadm_devices.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openroadm_devices.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "OpenROADM devices" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openstack.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openstack.md index f70896bd36..6fda126f70 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openstack.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openstack.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "OpenStack" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openvas.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openvas.md index 99ab8594bc..4286a6d62d 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openvas.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openvas.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "OpenVAS" learn_status: "Published" -learn_rel_path: "Data Collection/Security Systems" +learn_rel_path: "Collecting Metrics/Security Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openweathermap.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openweathermap.md index 793c57d763..0157c1b505 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openweathermap.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/openweathermap.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "OpenWeatherMap" learn_status: "Published" -learn_rel_path: "Data Collection/Generic Data Collection" +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/oracle_db_community.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/oracle_db_community.md index 7aa4e9e242..a771c1203c 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/oracle_db_community.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/oracle_db_community.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Oracle DB (community)" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/otrs.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/otrs.md index 0b4acd3d03..ff6bfc0b7e 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/otrs.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/otrs.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "OTRS" learn_status: "Published" -learn_rel_path: "Data Collection/Incident Management" +learn_rel_path: "Collecting Metrics/Incident Management" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/patroni.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/patroni.md index ad3188e861..49aca6142b 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/patroni.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/patroni.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Patroni" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/personal_weather_station.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/personal_weather_station.md index e241b267c4..f46abd39c2 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/personal_weather_station.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/personal_weather_station.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Personal Weather Station" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pgbackrest.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pgbackrest.md index ffa34d70cb..98a378f8ce 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pgbackrest.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pgbackrest.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "pgBackRest" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pgpool-ii.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pgpool-ii.md index 9e0a87f67f..079c736321 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pgpool-ii.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pgpool-ii.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Pgpool-II" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/philips_hue.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/philips_hue.md index 0acfb26baf..016c3f9d51 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/philips_hue.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/philips_hue.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Philips Hue" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pimoroni_enviro+.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pimoroni_enviro+.md index 485cbfc132..63ef926ed6 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pimoroni_enviro+.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pimoroni_enviro+.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Pimoroni Enviro+" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pingdom.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pingdom.md index c3d2a04262..09e56f1dab 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pingdom.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/pingdom.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Pingdom" learn_status: "Published" -learn_rel_path: "Data Collection/Synthetic Checks" +learn_rel_path: "Collecting Metrics/Synthetic Checks" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/podman.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/podman.md index 886da11c31..5ee9ab8a2f 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/podman.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/podman.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Podman" learn_status: "Published" -learn_rel_path: "Data Collection/Containers and VMs" +learn_rel_path: "Collecting Metrics/Containers and VMs" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/powerpal_devices.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/powerpal_devices.md index 3808a6b00b..85fa1c1d13 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/powerpal_devices.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/powerpal_devices.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Powerpal devices" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/proftpd.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/proftpd.md index fcd270a27a..b2127e1efd 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/proftpd.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/proftpd.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "ProFTPD" learn_status: "Published" -learn_rel_path: "Data Collection/FTP Servers" +learn_rel_path: "Collecting Metrics/FTP Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/prometheus_endpoint.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/prometheus_endpoint.md index 6a83ae576a..1f81f94581 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/prometheus_endpoint.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/prometheus_endpoint.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Prometheus endpoint" learn_status: "Published" -learn_rel_path: "Data Collection/Generic Data Collection" +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -92,7 +92,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/proxmox_ve.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/proxmox_ve.md index 9f8caadcfe..1ba4544646 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/proxmox_ve.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/proxmox_ve.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Proxmox VE" learn_status: "Published" -learn_rel_path: "Data Collection/Containers and VMs" +learn_rel_path: "Collecting Metrics/Containers and VMs" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/radio_thermostat.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/radio_thermostat.md index 4b137662e1..ffe39c62ac 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/radio_thermostat.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/radio_thermostat.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Radio Thermostat" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/radius.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/radius.md index b21eb3e393..e7d7b0c6e9 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/radius.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/radius.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "RADIUS" learn_status: "Published" -learn_rel_path: "Data Collection/Authentication and Authorization" +learn_rel_path: "Collecting Metrics/Authentication and Authorization" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/rancher.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/rancher.md index 98bc9ed8d3..d6c7efceeb 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/rancher.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/rancher.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Rancher" learn_status: "Published" -learn_rel_path: "Data Collection/Kubernetes" +learn_rel_path: "Collecting Metrics/Kubernetes" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/raritan_pdu.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/raritan_pdu.md index 1af38f1863..234ed8af66 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/raritan_pdu.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/raritan_pdu.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Raritan PDU" learn_status: "Published" -learn_rel_path: "Data Collection/Hardware Devices and Sensors" +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/redis_queue.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/redis_queue.md index 2686def501..0ba8884246 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/redis_queue.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/redis_queue.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Redis Queue" learn_status: "Published" -learn_rel_path: "Data Collection/Message Brokers" +learn_rel_path: "Collecting Metrics/Message Brokers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ripe_atlas.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ripe_atlas.md index bcf7d7b736..4538bb0841 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ripe_atlas.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ripe_atlas.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "RIPE Atlas" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sabnzbd.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sabnzbd.md index efce5887d3..664ef8167f 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sabnzbd.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sabnzbd.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "SABnzbd" learn_status: "Published" -learn_rel_path: "Data Collection/Media Services" +learn_rel_path: "Collecting Metrics/Media Services" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/salicru_eqx_inverter.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/salicru_eqx_inverter.md index 03e20f1d64..f4310afe84 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/salicru_eqx_inverter.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/salicru_eqx_inverter.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Salicru EQX inverter" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sense_energy.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sense_energy.md index 62746fd1ab..a33fa9c8e4 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sense_energy.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sense_energy.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Sense Energy" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sentry.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sentry.md index d91be878a5..8152d69fb5 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sentry.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sentry.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Sentry" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/servertech.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/servertech.md index 2f8190294a..38935255b6 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/servertech.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/servertech.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "ServerTech" learn_status: "Published" -learn_rel_path: "Data Collection/Hardware Devices and Sensors" +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/shell_command.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/shell_command.md index 6125e6dc83..60eeecbf58 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/shell_command.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/shell_command.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Shell command" learn_status: "Published" -learn_rel_path: "Data Collection/Generic Data Collection" +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/shelly_humidity_sensor.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/shelly_humidity_sensor.md index d659d1dd8a..144ca8e93b 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/shelly_humidity_sensor.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/shelly_humidity_sensor.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Shelly humidity sensor" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sia.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sia.md index 9993d4afd1..0536b16cc1 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sia.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sia.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Sia" learn_status: "Published" -learn_rel_path: "Data Collection/Blockchain Servers" +learn_rel_path: "Collecting Metrics/Blockchain Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/siemens_s7_plc.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/siemens_s7_plc.md index e80499d3cf..1095ebc0b2 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/siemens_s7_plc.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/siemens_s7_plc.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Siemens S7 PLC" learn_status: "Published" -learn_rel_path: "Data Collection/Hardware Devices and Sensors" +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/site_24x7.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/site_24x7.md index 004166fe5c..eb39e95428 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/site_24x7.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/site_24x7.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Site 24x7" learn_status: "Published" -learn_rel_path: "Data Collection/Synthetic Checks" +learn_rel_path: "Collecting Metrics/Synthetic Checks" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/slurm.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/slurm.md index 465fb1a60b..bdae912c96 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/slurm.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/slurm.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Slurm" learn_status: "Published" -learn_rel_path: "Data Collection/Task Queues" +learn_rel_path: "Collecting Metrics/Task Queues" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sma_inverters.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sma_inverters.md index 6951e679e7..24ce53c500 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sma_inverters.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sma_inverters.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "SMA Inverters" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/smart_meters_sml.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/smart_meters_sml.md index d724471867..7f7b51f243 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/smart_meters_sml.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/smart_meters_sml.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Smart meters SML" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/smartrg_808ac_cable_modem.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/smartrg_808ac_cable_modem.md index 7cb9d950ad..5479a967bc 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/smartrg_808ac_cable_modem.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/smartrg_808ac_cable_modem.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "SmartRG 808AC Cable Modem" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/softether_vpn_server.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/softether_vpn_server.md index 3daf98aab6..163573f387 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/softether_vpn_server.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/softether_vpn_server.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "SoftEther VPN Server" learn_status: "Published" -learn_rel_path: "Data Collection/VPNs" +learn_rel_path: "Collecting Metrics/VPNs" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/solar_logging_stick.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/solar_logging_stick.md index 9ced1c048f..339c01fcff 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/solar_logging_stick.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/solar_logging_stick.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Solar logging stick" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/solaredge_inverters.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/solaredge_inverters.md index c8d9ad3a4f..a02a5dbfbc 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/solaredge_inverters.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/solaredge_inverters.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "SolarEdge inverters" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/solis_ginlong_5g_inverters.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/solis_ginlong_5g_inverters.md index be4f43bb4c..290e2a6767 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/solis_ginlong_5g_inverters.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/solis_ginlong_5g_inverters.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Solis Ginlong 5G inverters" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sonic_nos.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sonic_nos.md index cc0e14efdf..bb1ce70182 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sonic_nos.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sonic_nos.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "SONiC NOS" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/spacelift.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/spacelift.md index 2d990fa7a6..31fdab245b 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/spacelift.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/spacelift.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Spacelift" learn_status: "Published" -learn_rel_path: "Data Collection/Provisioning Systems" +learn_rel_path: "Collecting Metrics/Provisioning Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/speedify_cli.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/speedify_cli.md index b525d83a90..fb763589cb 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/speedify_cli.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/speedify_cli.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Speedify CLI" learn_status: "Published" -learn_rel_path: "Data Collection/VPNs" +learn_rel_path: "Collecting Metrics/VPNs" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sphinx.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sphinx.md index f140589dc1..4d88f9c561 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sphinx.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sphinx.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Sphinx" learn_status: "Published" -learn_rel_path: "Data Collection/Search Engines" +learn_rel_path: "Collecting Metrics/Search Engines" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sql_database_agnostic.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sql_database_agnostic.md index 6c4d51b6f2..8e9c064174 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sql_database_agnostic.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sql_database_agnostic.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "SQL Database agnostic" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ssh.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ssh.md index a59e8eaa47..0aed675682 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ssh.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ssh.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "SSH" learn_status: "Published" -learn_rel_path: "Data Collection/Authentication and Authorization" +learn_rel_path: "Collecting Metrics/Authentication and Authorization" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ssl_certificate.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ssl_certificate.md index ff50de11f4..22a4933701 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ssl_certificate.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ssl_certificate.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "SSL Certificate" learn_status: "Published" -learn_rel_path: "Data Collection/Security Systems" +learn_rel_path: "Collecting Metrics/Security Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/starlink_spacex.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/starlink_spacex.md index c6f3e9a8cf..898295d995 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/starlink_spacex.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/starlink_spacex.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Starlink (SpaceX)" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/starwind_vsan_vsphere_edition.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/starwind_vsan_vsphere_edition.md index 28942ebc61..298c9ed0f7 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/starwind_vsan_vsphere_edition.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/starwind_vsan_vsphere_edition.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Starwind VSAN VSphere Edition" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/statuspage.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/statuspage.md index ecb388f11c..e35bb7386f 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/statuspage.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/statuspage.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "StatusPage" learn_status: "Published" -learn_rel_path: "Data Collection/Incident Management" +learn_rel_path: "Collecting Metrics/Incident Management" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/steam.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/steam.md index 10d603cab2..1e73269966 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/steam.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/steam.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Steam" learn_status: "Published" -learn_rel_path: "Data Collection/Gaming" +learn_rel_path: "Collecting Metrics/Gaming" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/storidge.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/storidge.md index 6c594a226d..85d3e8015b 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/storidge.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/storidge.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Storidge" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/stream.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/stream.md index 0c84e12d6c..755f2868be 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/stream.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/stream.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Stream" learn_status: "Published" -learn_rel_path: "Data Collection/Media Services" +learn_rel_path: "Collecting Metrics/Media Services" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/strongswan.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/strongswan.md index 0c5a6cc88b..80c3da8026 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/strongswan.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/strongswan.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "strongSwan" learn_status: "Published" -learn_rel_path: "Data Collection/VPNs" +learn_rel_path: "Collecting Metrics/VPNs" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sunspec_solar_energy.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sunspec_solar_energy.md index bb75d542ad..a39606ed7b 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sunspec_solar_energy.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sunspec_solar_energy.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Sunspec Solar Energy" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/suricata.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/suricata.md index d79251f6d0..039debe37c 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/suricata.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/suricata.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Suricata" learn_status: "Published" -learn_rel_path: "Data Collection/Security Systems" +learn_rel_path: "Collecting Metrics/Security Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/synology_activebackup.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/synology_activebackup.md index e29b5e287d..fea5491226 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/synology_activebackup.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/synology_activebackup.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Synology ActiveBackup" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sysload.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sysload.md index 46b452eee9..a2d1afe1d4 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sysload.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/sysload.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Sysload" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/t-rex_nvidia_gpu_miner.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/t-rex_nvidia_gpu_miner.md index 5115e02432..9617fefc18 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/t-rex_nvidia_gpu_miner.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/t-rex_nvidia_gpu_miner.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "T-Rex NVIDIA GPU Miner" learn_status: "Published" -learn_rel_path: "Data Collection/Hardware Devices and Sensors" +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tacacs.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tacacs.md index 2e9f9871fc..472a0e9106 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tacacs.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tacacs.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "TACACS" learn_status: "Published" -learn_rel_path: "Data Collection/Authentication and Authorization" +learn_rel_path: "Collecting Metrics/Authentication and Authorization" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tado_smart_heating_solution.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tado_smart_heating_solution.md index e4667db737..124de7a82d 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tado_smart_heating_solution.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tado_smart_heating_solution.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Tado smart heating solution" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tankerkoenig_api.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tankerkoenig_api.md index 6fc6f6fbd5..ab295f2c48 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tankerkoenig_api.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tankerkoenig_api.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Tankerkoenig API" learn_status: "Published" -learn_rel_path: "Data Collection/Generic Data Collection" +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tesla_powerwall.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tesla_powerwall.md index 60f6ff8416..5d1a45c225 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tesla_powerwall.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tesla_powerwall.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Tesla Powerwall" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tesla_vehicle.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tesla_vehicle.md index 309a26494c..f5a9c8f448 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tesla_vehicle.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tesla_vehicle.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Tesla vehicle" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tesla_wall_connector.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tesla_wall_connector.md index 7ccc9d51d5..af8eaadc3c 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tesla_wall_connector.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tesla_wall_connector.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Tesla Wall Connector" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tp-link_p110.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tp-link_p110.md index bfb42f829c..3acf08d636 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tp-link_p110.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/tp-link_p110.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "TP-Link P110" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/traceroute.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/traceroute.md index c113bf4c3c..ad72fd3600 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/traceroute.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/traceroute.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Traceroute" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/twincat_ads_web_service.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/twincat_ads_web_service.md index 4f98bafa98..eee1ba232f 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/twincat_ads_web_service.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/twincat_ads_web_service.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "TwinCAT ADS Web Service" learn_status: "Published" -learn_rel_path: "Data Collection/Generic Data Collection" +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/twitch.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/twitch.md index 97be3c74e1..5e8d2f42e0 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/twitch.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/twitch.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Twitch" learn_status: "Published" -learn_rel_path: "Data Collection/Media Services" +learn_rel_path: "Collecting Metrics/Media Services" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ubiquiti_ufiber_olt.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ubiquiti_ufiber_olt.md index bf3d54328d..3e88117885 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ubiquiti_ufiber_olt.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ubiquiti_ufiber_olt.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Ubiquiti UFiber OLT" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/uptimerobot.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/uptimerobot.md index a24795dbeb..80719802e0 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/uptimerobot.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/uptimerobot.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Uptimerobot" learn_status: "Published" -learn_rel_path: "Data Collection/Synthetic Checks" +learn_rel_path: "Collecting Metrics/Synthetic Checks" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/vault_pki.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/vault_pki.md index 9539476bd2..6ede6a3027 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/vault_pki.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/vault_pki.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Vault PKI" learn_status: "Published" -learn_rel_path: "Data Collection/Security Systems" +learn_rel_path: "Collecting Metrics/Security Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/vertica.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/vertica.md index a17dc1a5de..3a8534a7ad 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/vertica.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/vertica.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Vertica" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/vscode.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/vscode.md index 01b2a4c538..73a2a411e3 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/vscode.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/vscode.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "VSCode" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/warp10.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/warp10.md index c484be2bff..f89745ece8 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/warp10.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/warp10.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Warp10" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/xiaomi_mi_flora.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/xiaomi_mi_flora.md index fd1a04fe43..1a99bfe00a 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/xiaomi_mi_flora.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/xiaomi_mi_flora.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Xiaomi Mi Flora" learn_status: "Published" -learn_rel_path: "Data Collection/IoT Devices" +learn_rel_path: "Collecting Metrics/IoT Devices" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/xmpp_server.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/xmpp_server.md index f15def623c..bc7d8ac630 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/xmpp_server.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/xmpp_server.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "XMPP Server" learn_status: "Published" -learn_rel_path: "Data Collection/Message Brokers" +learn_rel_path: "Collecting Metrics/Message Brokers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/yourls_url_shortener.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/yourls_url_shortener.md index 8989cef14c..e572a0563e 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/yourls_url_shortener.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/yourls_url_shortener.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "YOURLS URL Shortener" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/zerto.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/zerto.md index 65064d77b8..d1dcc6797f 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/zerto.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/zerto.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Zerto" learn_status: "Published" -learn_rel_path: "Data Collection/Cloud Provider Managed" +learn_rel_path: "Collecting Metrics/Cloud Provider Managed" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/zulip.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/zulip.md index 823e59bdb6..d11c47a0ab 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/zulip.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/zulip.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Zulip" learn_status: "Published" -learn_rel_path: "Data Collection/Media Services" +learn_rel_path: "Collecting Metrics/Media Services" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/zyxel_gs1200-8.md b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/zyxel_gs1200-8.md index f69541e3f3..5b08afb799 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/integrations/zyxel_gs1200-8.md +++ b/src/go/collectors/go.d.plugin/modules/prometheus/integrations/zyxel_gs1200-8.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/prometheus/metadata.yaml" sidebar_label: "Zyxel GS1200-8" learn_status: "Published" -learn_rel_path: "Data Collection/Networking Stack and Network Interfaces" +learn_rel_path: "Collecting Metrics/Networking Stack and Network Interfaces" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/prometheus.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/prometheus.go b/src/go/collectors/go.d.plugin/modules/prometheus/prometheus.go index 32a91e5c25..d286663d71 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/prometheus.go +++ b/src/go/collectors/go.d.plugin/modules/prometheus/prometheus.go @@ -6,11 +6,11 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/matcher" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/prometheus/selector" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/prometheus/prometheus_test.go b/src/go/collectors/go.d.plugin/modules/prometheus/prometheus_test.go index 95bf55bd20..161d1797e5 100644 --- a/src/go/collectors/go.d.plugin/modules/prometheus/prometheus_test.go +++ b/src/go/collectors/go.d.plugin/modules/prometheus/prometheus_test.go @@ -8,9 +8,9 @@ import ( "net/http/httptest" "testing" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/prometheus/selector" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/proxysql/charts.go b/src/go/collectors/go.d.plugin/modules/proxysql/charts.go index 69e96ed4ac..34e012740a 100644 --- a/src/go/collectors/go.d.plugin/modules/proxysql/charts.go +++ b/src/go/collectors/go.d.plugin/modules/proxysql/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) // TODO: check https://github.com/ProxySQL/proxysql-grafana-prometheus/blob/main/grafana/provisioning/dashboards/ProxySQL-Host-Statistics.json diff --git a/src/go/collectors/go.d.plugin/modules/proxysql/integrations/proxysql.md b/src/go/collectors/go.d.plugin/modules/proxysql/integrations/proxysql.md index ba91f07337..31850da553 100644 --- a/src/go/collectors/go.d.plugin/modules/proxysql/integrations/proxysql.md +++ b/src/go/collectors/go.d.plugin/modules/proxysql/integrations/proxysql.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pro meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/proxysql/metadata.yaml" sidebar_label: "ProxySQL" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -171,7 +171,7 @@ The configuration file name for this integration is `go.d/proxysql.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/proxysql/proxysql.go b/src/go/collectors/go.d.plugin/modules/proxysql/proxysql.go index d52c36efd7..01d7181e8e 100644 --- a/src/go/collectors/go.d.plugin/modules/proxysql/proxysql.go +++ b/src/go/collectors/go.d.plugin/modules/proxysql/proxysql.go @@ -9,8 +9,8 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/pulsar/charts.go b/src/go/collectors/go.d.plugin/modules/pulsar/charts.go index 6dbb7b49a5..a0599dc8dd 100644 --- a/src/go/collectors/go.d.plugin/modules/pulsar/charts.go +++ b/src/go/collectors/go.d.plugin/modules/pulsar/charts.go @@ -6,9 +6,9 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) type ( diff --git a/src/go/collectors/go.d.plugin/modules/pulsar/collect.go b/src/go/collectors/go.d.plugin/modules/pulsar/collect.go index 6c0b93ce00..f28e6cb2c4 100644 --- a/src/go/collectors/go.d.plugin/modules/pulsar/collect.go +++ b/src/go/collectors/go.d.plugin/modules/pulsar/collect.go @@ -6,8 +6,8 @@ import ( "errors" "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) func isValidPulsarMetrics(pms prometheus.Series) bool { diff --git a/src/go/collectors/go.d.plugin/modules/pulsar/integrations/apache_pulsar.md b/src/go/collectors/go.d.plugin/modules/pulsar/integrations/apache_pulsar.md index 1a16e8cdb9..a7544a0e39 100644 --- a/src/go/collectors/go.d.plugin/modules/pulsar/integrations/apache_pulsar.md +++ b/src/go/collectors/go.d.plugin/modules/pulsar/integrations/apache_pulsar.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/pul meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/pulsar/metadata.yaml" sidebar_label: "Apache Pulsar" learn_status: "Published" -learn_rel_path: "Data Collection/Message Brokers" +learn_rel_path: "Collecting Metrics/Message Brokers" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -149,7 +149,7 @@ The configuration file name for this integration is `go.d/pulsar.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/pulsar/pulsar.go b/src/go/collectors/go.d.plugin/modules/pulsar/pulsar.go index 8b0ce91019..8b2a01a209 100644 --- a/src/go/collectors/go.d.plugin/modules/pulsar/pulsar.go +++ b/src/go/collectors/go.d.plugin/modules/pulsar/pulsar.go @@ -8,11 +8,11 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/pkg/matcher" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/pulsar/pulsar_test.go b/src/go/collectors/go.d.plugin/modules/pulsar/pulsar_test.go index 3bf9468b67..9ee1679bc0 100644 --- a/src/go/collectors/go.d.plugin/modules/pulsar/pulsar_test.go +++ b/src/go/collectors/go.d.plugin/modules/pulsar/pulsar_test.go @@ -9,11 +9,11 @@ import ( "strings" "testing" - "github.com/netdata/go.d.plugin/pkg/matcher" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/rabbitmq/charts.go b/src/go/collectors/go.d.plugin/modules/rabbitmq/charts.go index c2b58e04bb..99b431907f 100644 --- a/src/go/collectors/go.d.plugin/modules/rabbitmq/charts.go +++ b/src/go/collectors/go.d.plugin/modules/rabbitmq/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/rabbitmq/collect.go b/src/go/collectors/go.d.plugin/modules/rabbitmq/collect.go index 785c550a01..665dfdfc89 100644 --- a/src/go/collectors/go.d.plugin/modules/rabbitmq/collect.go +++ b/src/go/collectors/go.d.plugin/modules/rabbitmq/collect.go @@ -9,8 +9,8 @@ import ( "net/http" "path/filepath" - "github.com/netdata/go.d.plugin/pkg/stm" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/rabbitmq/integrations/rabbitmq.md b/src/go/collectors/go.d.plugin/modules/rabbitmq/integrations/rabbitmq.md index e7acf0cc1e..195bb79224 100644 --- a/src/go/collectors/go.d.plugin/modules/rabbitmq/integrations/rabbitmq.md +++ b/src/go/collectors/go.d.plugin/modules/rabbitmq/integrations/rabbitmq.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/rab meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/rabbitmq/metadata.yaml" sidebar_label: "RabbitMQ" learn_status: "Published" -learn_rel_path: "Data Collection/Message Brokers" +learn_rel_path: "Collecting Metrics/Message Brokers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -146,7 +146,7 @@ The configuration file name for this integration is `go.d/rabbitmq.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/rabbitmq/rabbitmq.go b/src/go/collectors/go.d.plugin/modules/rabbitmq/rabbitmq.go index 59fe4b1538..134ab5b12c 100644 --- a/src/go/collectors/go.d.plugin/modules/rabbitmq/rabbitmq.go +++ b/src/go/collectors/go.d.plugin/modules/rabbitmq/rabbitmq.go @@ -7,8 +7,8 @@ import ( "net/http" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/rabbitmq/rabbitmq_test.go b/src/go/collectors/go.d.plugin/modules/rabbitmq/rabbitmq_test.go index c365726aa3..d292f120fb 100644 --- a/src/go/collectors/go.d.plugin/modules/rabbitmq/rabbitmq_test.go +++ b/src/go/collectors/go.d.plugin/modules/rabbitmq/rabbitmq_test.go @@ -12,7 +12,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) var ( diff --git a/src/go/collectors/go.d.plugin/modules/redis/charts.go b/src/go/collectors/go.d.plugin/modules/redis/charts.go index 3305ffbcec..9fcf2338f1 100644 --- a/src/go/collectors/go.d.plugin/modules/redis/charts.go +++ b/src/go/collectors/go.d.plugin/modules/redis/charts.go @@ -2,7 +2,7 @@ package redis -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" const ( prioConnections = module.Priority + iota diff --git a/src/go/collectors/go.d.plugin/modules/redis/collect_info.go b/src/go/collectors/go.d.plugin/modules/redis/collect_info.go index fb5e46f37c..ce6cae062d 100644 --- a/src/go/collectors/go.d.plugin/modules/redis/collect_info.go +++ b/src/go/collectors/go.d.plugin/modules/redis/collect_info.go @@ -9,7 +9,7 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/redis/init.go b/src/go/collectors/go.d.plugin/modules/redis/init.go index ffed274c3e..e9a42942c0 100644 --- a/src/go/collectors/go.d.plugin/modules/redis/init.go +++ b/src/go/collectors/go.d.plugin/modules/redis/init.go @@ -5,8 +5,8 @@ package redis import ( "errors" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" "github.com/go-redis/redis/v8" ) diff --git a/src/go/collectors/go.d.plugin/modules/redis/integrations/redis.md b/src/go/collectors/go.d.plugin/modules/redis/integrations/redis.md index e7cc180d82..6fa8d5255b 100644 --- a/src/go/collectors/go.d.plugin/modules/redis/integrations/redis.md +++ b/src/go/collectors/go.d.plugin/modules/redis/integrations/redis.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/red meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/redis/metadata.yaml" sidebar_label: "Redis" learn_status: "Published" -learn_rel_path: "Data Collection/Databases" +learn_rel_path: "Collecting Metrics/Databases" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -129,7 +129,7 @@ The configuration file name for this integration is `go.d/redis.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/redis/redis.go b/src/go/collectors/go.d.plugin/modules/redis/redis.go index 2117cc2ce8..2495e4f4e4 100644 --- a/src/go/collectors/go.d.plugin/modules/redis/redis.go +++ b/src/go/collectors/go.d.plugin/modules/redis/redis.go @@ -8,10 +8,10 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/metrics" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/blang/semver/v4" "github.com/go-redis/redis/v8" diff --git a/src/go/collectors/go.d.plugin/modules/redis/redis_test.go b/src/go/collectors/go.d.plugin/modules/redis/redis_test.go index 9ee2f54f06..f1821da0f2 100644 --- a/src/go/collectors/go.d.plugin/modules/redis/redis_test.go +++ b/src/go/collectors/go.d.plugin/modules/redis/redis_test.go @@ -9,7 +9,7 @@ import ( "strings" "testing" - "github.com/netdata/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" "github.com/go-redis/redis/v8" "github.com/stretchr/testify/assert" diff --git a/src/go/collectors/go.d.plugin/modules/scaleio/charts.go b/src/go/collectors/go.d.plugin/modules/scaleio/charts.go index c361c3ef82..a6ac24bd90 100644 --- a/src/go/collectors/go.d.plugin/modules/scaleio/charts.go +++ b/src/go/collectors/go.d.plugin/modules/scaleio/charts.go @@ -5,9 +5,9 @@ package scaleio import ( "fmt" - "github.com/netdata/go.d.plugin/modules/scaleio/client" + "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) type ( diff --git a/src/go/collectors/go.d.plugin/modules/scaleio/client/client.go b/src/go/collectors/go.d.plugin/modules/scaleio/client/client.go index 00516d7125..c75f79aa7a 100644 --- a/src/go/collectors/go.d.plugin/modules/scaleio/client/client.go +++ b/src/go/collectors/go.d.plugin/modules/scaleio/client/client.go @@ -13,7 +13,7 @@ import ( "strings" "sync" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) /* diff --git a/src/go/collectors/go.d.plugin/modules/scaleio/client/client_test.go b/src/go/collectors/go.d.plugin/modules/scaleio/client/client_test.go index bc686bf9b5..ea82814c20 100644 --- a/src/go/collectors/go.d.plugin/modules/scaleio/client/client_test.go +++ b/src/go/collectors/go.d.plugin/modules/scaleio/client/client_test.go @@ -6,7 +6,7 @@ import ( "net/http/httptest" "testing" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/scaleio/collect.go b/src/go/collectors/go.d.plugin/modules/scaleio/collect.go index 42fd463df3..93a0a609df 100644 --- a/src/go/collectors/go.d.plugin/modules/scaleio/collect.go +++ b/src/go/collectors/go.d.plugin/modules/scaleio/collect.go @@ -5,8 +5,8 @@ package scaleio import ( "time" - "github.com/netdata/go.d.plugin/modules/scaleio/client" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) const discoveryEvery = 5 diff --git a/src/go/collectors/go.d.plugin/modules/scaleio/collect_sdc.go b/src/go/collectors/go.d.plugin/modules/scaleio/collect_sdc.go index 495b1a0312..209029ac7f 100644 --- a/src/go/collectors/go.d.plugin/modules/scaleio/collect_sdc.go +++ b/src/go/collectors/go.d.plugin/modules/scaleio/collect_sdc.go @@ -2,7 +2,7 @@ package scaleio -import "github.com/netdata/go.d.plugin/modules/scaleio/client" +import "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client" func (s ScaleIO) collectSdc(ss map[string]client.SdcStatistics) map[string]sdcMetrics { ms := make(map[string]sdcMetrics, len(ss)) diff --git a/src/go/collectors/go.d.plugin/modules/scaleio/collect_storage_pool.go b/src/go/collectors/go.d.plugin/modules/scaleio/collect_storage_pool.go index 7a41b66bd0..4f69b75761 100644 --- a/src/go/collectors/go.d.plugin/modules/scaleio/collect_storage_pool.go +++ b/src/go/collectors/go.d.plugin/modules/scaleio/collect_storage_pool.go @@ -2,7 +2,7 @@ package scaleio -import "github.com/netdata/go.d.plugin/modules/scaleio/client" +import "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client" func (s ScaleIO) collectStoragePool(ss map[string]client.StoragePoolStatistics) map[string]storagePoolMetrics { ms := make(map[string]storagePoolMetrics, len(ss)) diff --git a/src/go/collectors/go.d.plugin/modules/scaleio/collect_system.go b/src/go/collectors/go.d.plugin/modules/scaleio/collect_system.go index 6806e19690..61e98351a4 100644 --- a/src/go/collectors/go.d.plugin/modules/scaleio/collect_system.go +++ b/src/go/collectors/go.d.plugin/modules/scaleio/collect_system.go @@ -2,7 +2,7 @@ package scaleio -import "github.com/netdata/go.d.plugin/modules/scaleio/client" +import "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client" func (ScaleIO) collectSystem(ss client.SystemStatistics) systemMetrics { var sm systemMetrics diff --git a/src/go/collectors/go.d.plugin/modules/scaleio/integrations/dell_emc_scaleio.md b/src/go/collectors/go.d.plugin/modules/scaleio/integrations/dell_emc_scaleio.md index c384730f19..a328200bc7 100644 --- a/src/go/collectors/go.d.plugin/modules/scaleio/integrations/dell_emc_scaleio.md +++ b/src/go/collectors/go.d.plugin/modules/scaleio/integrations/dell_emc_scaleio.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/sca meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/scaleio/metadata.yaml" sidebar_label: "Dell EMC ScaleIO" learn_status: "Published" -learn_rel_path: "Data Collection/Storage, Mount Points and Filesystems" +learn_rel_path: "Collecting Metrics/Storage, Mount Points and Filesystems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -144,7 +144,7 @@ The configuration file name for this integration is `go.d/scaleio.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/scaleio/queries.go b/src/go/collectors/go.d.plugin/modules/scaleio/queries.go index 66e68fc6ae..265c3b8740 100644 --- a/src/go/collectors/go.d.plugin/modules/scaleio/queries.go +++ b/src/go/collectors/go.d.plugin/modules/scaleio/queries.go @@ -2,7 +2,7 @@ package scaleio -import "github.com/netdata/go.d.plugin/modules/scaleio/client" +import "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client" /* Starting from version 3 of ScaleIO/VxFlex API numOfScsiInitiators property is removed from the system selectedStatisticsQuery. diff --git a/src/go/collectors/go.d.plugin/modules/scaleio/scaleio.go b/src/go/collectors/go.d.plugin/modules/scaleio/scaleio.go index 05bb03c5be..8dad32005c 100644 --- a/src/go/collectors/go.d.plugin/modules/scaleio/scaleio.go +++ b/src/go/collectors/go.d.plugin/modules/scaleio/scaleio.go @@ -6,10 +6,10 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/modules/scaleio/client" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/scaleio/scaleio_test.go b/src/go/collectors/go.d.plugin/modules/scaleio/scaleio_test.go index 5547b174bc..2140f37b32 100644 --- a/src/go/collectors/go.d.plugin/modules/scaleio/scaleio_test.go +++ b/src/go/collectors/go.d.plugin/modules/scaleio/scaleio_test.go @@ -8,9 +8,9 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/modules/scaleio/client" + "github.com/netdata/netdata/go/go.d.plugin/modules/scaleio/client" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/snmp/charts.go b/src/go/collectors/go.d.plugin/modules/snmp/charts.go index 909ddb010e..9899ec7aa6 100644 --- a/src/go/collectors/go.d.plugin/modules/snmp/charts.go +++ b/src/go/collectors/go.d.plugin/modules/snmp/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func newCharts(configs []ChartConfig) (*module.Charts, error) { diff --git a/src/go/collectors/go.d.plugin/modules/snmp/integrations/snmp_devices.md b/src/go/collectors/go.d.plugin/modules/snmp/integrations/snmp_devices.md index c9b3b36c69..6cd9f8258e 100644 --- a/src/go/collectors/go.d.plugin/modules/snmp/integrations/snmp_devices.md +++ b/src/go/collectors/go.d.plugin/modules/snmp/integrations/snmp_devices.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/snm meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/snmp/metadata.yaml" sidebar_label: "SNMP devices" learn_status: "Published" -learn_rel_path: "Data Collection/Generic Data Collection" +learn_rel_path: "Collecting Metrics/Generic Collecting Metrics" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -99,7 +99,7 @@ The configuration file name for this integration is `go.d/snmp.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/snmp/snmp.go b/src/go/collectors/go.d.plugin/modules/snmp/snmp.go index 7aa933f64c..5a3d8a0764 100644 --- a/src/go/collectors/go.d.plugin/modules/snmp/snmp.go +++ b/src/go/collectors/go.d.plugin/modules/snmp/snmp.go @@ -7,7 +7,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/gosnmp/gosnmp" ) diff --git a/src/go/collectors/go.d.plugin/modules/snmp/snmp_test.go b/src/go/collectors/go.d.plugin/modules/snmp/snmp_test.go index 9f1ef0e905..a157fc908f 100644 --- a/src/go/collectors/go.d.plugin/modules/snmp/snmp_test.go +++ b/src/go/collectors/go.d.plugin/modules/snmp/snmp_test.go @@ -11,7 +11,7 @@ import ( "github.com/golang/mock/gomock" "github.com/gosnmp/gosnmp" snmpmock "github.com/gosnmp/gosnmp/mocks" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/solr/charts.go b/src/go/collectors/go.d.plugin/modules/solr/charts.go index caaa72489b..162911ac0f 100644 --- a/src/go/collectors/go.d.plugin/modules/solr/charts.go +++ b/src/go/collectors/go.d.plugin/modules/solr/charts.go @@ -3,7 +3,7 @@ package solr import ( - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) type ( diff --git a/src/go/collectors/go.d.plugin/modules/solr/integrations/solr.md b/src/go/collectors/go.d.plugin/modules/solr/integrations/solr.md index 9afebfd17e..ad0b6acbbb 100644 --- a/src/go/collectors/go.d.plugin/modules/solr/integrations/solr.md +++ b/src/go/collectors/go.d.plugin/modules/solr/integrations/solr.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/sol meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/solr/metadata.yaml" sidebar_label: "Solr" learn_status: "Published" -learn_rel_path: "Data Collection/Search Engines" +learn_rel_path: "Collecting Metrics/Search Engines" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -102,7 +102,7 @@ The configuration file name for this integration is `go.d/solr.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/solr/solr.go b/src/go/collectors/go.d.plugin/modules/solr/solr.go index 57f2d7083b..1d2990db8f 100644 --- a/src/go/collectors/go.d.plugin/modules/solr/solr.go +++ b/src/go/collectors/go.d.plugin/modules/solr/solr.go @@ -13,9 +13,9 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/solr/solr_test.go b/src/go/collectors/go.d.plugin/modules/solr/solr_test.go index f545adeb05..6b32ba3768 100644 --- a/src/go/collectors/go.d.plugin/modules/solr/solr_test.go +++ b/src/go/collectors/go.d.plugin/modules/solr/solr_test.go @@ -9,7 +9,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/springboot2/charts.go b/src/go/collectors/go.d.plugin/modules/springboot2/charts.go index 9ca9c58062..5142558197 100644 --- a/src/go/collectors/go.d.plugin/modules/springboot2/charts.go +++ b/src/go/collectors/go.d.plugin/modules/springboot2/charts.go @@ -3,7 +3,7 @@ package springboot2 import ( - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) type ( diff --git a/src/go/collectors/go.d.plugin/modules/springboot2/integrations/java_spring-boot_2_applications.md b/src/go/collectors/go.d.plugin/modules/springboot2/integrations/java_spring-boot_2_applications.md index 534f75f921..26465d66c6 100644 --- a/src/go/collectors/go.d.plugin/modules/springboot2/integrations/java_spring-boot_2_applications.md +++ b/src/go/collectors/go.d.plugin/modules/springboot2/integrations/java_spring-boot_2_applications.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/spr meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/springboot2/metadata.yaml" sidebar_label: "Java Spring-boot 2 applications" learn_status: "Published" -learn_rel_path: "Data Collection/APM" +learn_rel_path: "Collecting Metrics/APM" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -103,7 +103,7 @@ The configuration file name for this integration is `go.d/springboot2.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/springboot2/springboot2.go b/src/go/collectors/go.d.plugin/modules/springboot2/springboot2.go index cff9d9c076..7c84e28c2b 100644 --- a/src/go/collectors/go.d.plugin/modules/springboot2/springboot2.go +++ b/src/go/collectors/go.d.plugin/modules/springboot2/springboot2.go @@ -7,14 +7,14 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" - mtx "github.com/netdata/go.d.plugin/pkg/metrics" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/stm" - "github.com/netdata/go.d.plugin/pkg/web" + mtx "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/squidlog/charts.go b/src/go/collectors/go.d.plugin/modules/squidlog/charts.go index 610c562cf1..dfac224982 100644 --- a/src/go/collectors/go.d.plugin/modules/squidlog/charts.go +++ b/src/go/collectors/go.d.plugin/modules/squidlog/charts.go @@ -5,7 +5,7 @@ package squidlog import ( "errors" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) type ( diff --git a/src/go/collectors/go.d.plugin/modules/squidlog/collect.go b/src/go/collectors/go.d.plugin/modules/squidlog/collect.go index 20d3f86e88..04489525aa 100644 --- a/src/go/collectors/go.d.plugin/modules/squidlog/collect.go +++ b/src/go/collectors/go.d.plugin/modules/squidlog/collect.go @@ -8,10 +8,10 @@ import ( "strconv" "strings" - "github.com/netdata/go.d.plugin/pkg/logs" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (s SquidLog) logPanicStackIfAny() { diff --git a/src/go/collectors/go.d.plugin/modules/squidlog/init.go b/src/go/collectors/go.d.plugin/modules/squidlog/init.go index 60c2c45862..fe8c243284 100644 --- a/src/go/collectors/go.d.plugin/modules/squidlog/init.go +++ b/src/go/collectors/go.d.plugin/modules/squidlog/init.go @@ -7,7 +7,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/pkg/logs" + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs" ) func (s *SquidLog) createLogReader() error { diff --git a/src/go/collectors/go.d.plugin/modules/squidlog/integrations/squid_log_files.md b/src/go/collectors/go.d.plugin/modules/squidlog/integrations/squid_log_files.md index 472c912b9a..811c5a8f26 100644 --- a/src/go/collectors/go.d.plugin/modules/squidlog/integrations/squid_log_files.md +++ b/src/go/collectors/go.d.plugin/modules/squidlog/integrations/squid_log_files.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/squ meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/squidlog/metadata.yaml" sidebar_label: "Squid log files" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -105,7 +105,7 @@ The configuration file name for this integration is `go.d/squidlog.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/squidlog/metrics.go b/src/go/collectors/go.d.plugin/modules/squidlog/metrics.go index 95bc3d8ed4..3754e022b8 100644 --- a/src/go/collectors/go.d.plugin/modules/squidlog/metrics.go +++ b/src/go/collectors/go.d.plugin/modules/squidlog/metrics.go @@ -2,7 +2,7 @@ package squidlog -import "github.com/netdata/go.d.plugin/pkg/metrics" +import "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics" func newSummary() metrics.Summary { return &summary{metrics.NewSummary()} diff --git a/src/go/collectors/go.d.plugin/modules/squidlog/squidlog.go b/src/go/collectors/go.d.plugin/modules/squidlog/squidlog.go index 704bc9627c..aca40d9b45 100644 --- a/src/go/collectors/go.d.plugin/modules/squidlog/squidlog.go +++ b/src/go/collectors/go.d.plugin/modules/squidlog/squidlog.go @@ -5,8 +5,8 @@ package squidlog import ( _ "embed" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/logs" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/squidlog/squidlog_test.go b/src/go/collectors/go.d.plugin/modules/squidlog/squidlog_test.go index c6d818bf9b..cd1395c1e5 100644 --- a/src/go/collectors/go.d.plugin/modules/squidlog/squidlog_test.go +++ b/src/go/collectors/go.d.plugin/modules/squidlog/squidlog_test.go @@ -7,10 +7,10 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/logs" - "github.com/netdata/go.d.plugin/pkg/metrics" + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs" + "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/supervisord/charts.go b/src/go/collectors/go.d.plugin/modules/supervisord/charts.go index 2f09677fe3..2c7f08f045 100644 --- a/src/go/collectors/go.d.plugin/modules/supervisord/charts.go +++ b/src/go/collectors/go.d.plugin/modules/supervisord/charts.go @@ -5,7 +5,7 @@ package supervisord import ( "fmt" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/supervisord/collect.go b/src/go/collectors/go.d.plugin/modules/supervisord/collect.go index 64feea13d8..e04e321314 100644 --- a/src/go/collectors/go.d.plugin/modules/supervisord/collect.go +++ b/src/go/collectors/go.d.plugin/modules/supervisord/collect.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (s *Supervisord) collect() (map[string]int64, error) { diff --git a/src/go/collectors/go.d.plugin/modules/supervisord/init.go b/src/go/collectors/go.d.plugin/modules/supervisord/init.go index 0c5285c3b4..c52d962bd4 100644 --- a/src/go/collectors/go.d.plugin/modules/supervisord/init.go +++ b/src/go/collectors/go.d.plugin/modules/supervisord/init.go @@ -7,7 +7,7 @@ import ( "fmt" "net/url" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (s Supervisord) verifyConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/supervisord/integrations/supervisor.md b/src/go/collectors/go.d.plugin/modules/supervisord/integrations/supervisor.md index c5fff79b7e..ef9b0fad38 100644 --- a/src/go/collectors/go.d.plugin/modules/supervisord/integrations/supervisor.md +++ b/src/go/collectors/go.d.plugin/modules/supervisord/integrations/supervisor.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/sup meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/supervisord/metadata.yaml" sidebar_label: "Supervisor" learn_status: "Published" -learn_rel_path: "Data Collection/Processes and System Services" +learn_rel_path: "Collecting Metrics/Processes and System Services" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -112,7 +112,7 @@ The configuration file name for this integration is `go.d/supervisord.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/supervisord/supervisord.go b/src/go/collectors/go.d.plugin/modules/supervisord/supervisord.go index 1c99947109..1a03804f95 100644 --- a/src/go/collectors/go.d.plugin/modules/supervisord/supervisord.go +++ b/src/go/collectors/go.d.plugin/modules/supervisord/supervisord.go @@ -6,8 +6,8 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/systemdunits/charts.go b/src/go/collectors/go.d.plugin/modules/systemdunits/charts.go index 23a1bf75e7..210fc568d6 100644 --- a/src/go/collectors/go.d.plugin/modules/systemdunits/charts.go +++ b/src/go/collectors/go.d.plugin/modules/systemdunits/charts.go @@ -8,7 +8,7 @@ package systemdunits import ( "fmt" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "golang.org/x/text/cases" "golang.org/x/text/language" diff --git a/src/go/collectors/go.d.plugin/modules/systemdunits/init.go b/src/go/collectors/go.d.plugin/modules/systemdunits/init.go index d079443b15..e59290ace4 100644 --- a/src/go/collectors/go.d.plugin/modules/systemdunits/init.go +++ b/src/go/collectors/go.d.plugin/modules/systemdunits/init.go @@ -9,7 +9,7 @@ import ( "errors" "strings" - "github.com/netdata/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" ) func (s *SystemdUnits) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/systemdunits/integrations/systemd_units.md b/src/go/collectors/go.d.plugin/modules/systemdunits/integrations/systemd_units.md index 9fae020c8a..272c018aaf 100644 --- a/src/go/collectors/go.d.plugin/modules/systemdunits/integrations/systemd_units.md +++ b/src/go/collectors/go.d.plugin/modules/systemdunits/integrations/systemd_units.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/sys meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/systemdunits/metadata.yaml" sidebar_label: "Systemd Units" learn_status: "Published" -learn_rel_path: "Data Collection/Systemd" +learn_rel_path: "Collecting Metrics/Systemd" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -116,7 +116,7 @@ The configuration file name for this integration is `go.d/systemdunits.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/systemdunits/systemdunits.go b/src/go/collectors/go.d.plugin/modules/systemdunits/systemdunits.go index 3593b531e0..cddde2e5a7 100644 --- a/src/go/collectors/go.d.plugin/modules/systemdunits/systemdunits.go +++ b/src/go/collectors/go.d.plugin/modules/systemdunits/systemdunits.go @@ -9,9 +9,9 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/matcher" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/systemdunits/systemdunits_test.go b/src/go/collectors/go.d.plugin/modules/systemdunits/systemdunits_test.go index baa9ed46a1..fe1246c9a5 100644 --- a/src/go/collectors/go.d.plugin/modules/systemdunits/systemdunits_test.go +++ b/src/go/collectors/go.d.plugin/modules/systemdunits/systemdunits_test.go @@ -12,7 +12,7 @@ import ( "path/filepath" "testing" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/coreos/go-systemd/v22/dbus" "github.com/stretchr/testify/assert" diff --git a/src/go/collectors/go.d.plugin/modules/tengine/apiclient.go b/src/go/collectors/go.d.plugin/modules/tengine/apiclient.go index 5b39c60549..4f02510508 100644 --- a/src/go/collectors/go.d.plugin/modules/tengine/apiclient.go +++ b/src/go/collectors/go.d.plugin/modules/tengine/apiclient.go @@ -10,7 +10,7 @@ import ( "strconv" "strings" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/tengine/charts.go b/src/go/collectors/go.d.plugin/modules/tengine/charts.go index c929a3183c..59b191dd55 100644 --- a/src/go/collectors/go.d.plugin/modules/tengine/charts.go +++ b/src/go/collectors/go.d.plugin/modules/tengine/charts.go @@ -2,7 +2,7 @@ package tengine -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( // Charts is an alias for module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/tengine/collect.go b/src/go/collectors/go.d.plugin/modules/tengine/collect.go index 423f343d44..83dcba177d 100644 --- a/src/go/collectors/go.d.plugin/modules/tengine/collect.go +++ b/src/go/collectors/go.d.plugin/modules/tengine/collect.go @@ -3,7 +3,7 @@ package tengine import ( - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) func (t *Tengine) collect() (map[string]int64, error) { diff --git a/src/go/collectors/go.d.plugin/modules/tengine/integrations/tengine.md b/src/go/collectors/go.d.plugin/modules/tengine/integrations/tengine.md index c444d5cae9..43a467945d 100644 --- a/src/go/collectors/go.d.plugin/modules/tengine/integrations/tengine.md +++ b/src/go/collectors/go.d.plugin/modules/tengine/integrations/tengine.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ten meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/tengine/metadata.yaml" sidebar_label: "Tengine" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -99,7 +99,7 @@ The configuration file name for this integration is `go.d/tengine.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/tengine/tengine.go b/src/go/collectors/go.d.plugin/modules/tengine/tengine.go index 169b390aba..875e46d0d9 100644 --- a/src/go/collectors/go.d.plugin/modules/tengine/tengine.go +++ b/src/go/collectors/go.d.plugin/modules/tengine/tengine.go @@ -6,9 +6,9 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/tengine/tengine_test.go b/src/go/collectors/go.d.plugin/modules/tengine/tengine_test.go index 04fe5f9e7f..82228ead5a 100644 --- a/src/go/collectors/go.d.plugin/modules/tengine/tengine_test.go +++ b/src/go/collectors/go.d.plugin/modules/tengine/tengine_test.go @@ -8,7 +8,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/traefik/charts.go b/src/go/collectors/go.d.plugin/modules/traefik/charts.go index a1edb7d4e8..e4f50baf2f 100644 --- a/src/go/collectors/go.d.plugin/modules/traefik/charts.go +++ b/src/go/collectors/go.d.plugin/modules/traefik/charts.go @@ -5,7 +5,7 @@ package traefik import ( "fmt" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) var chartTmplEntrypointRequests = module.Chart{ diff --git a/src/go/collectors/go.d.plugin/modules/traefik/collect.go b/src/go/collectors/go.d.plugin/modules/traefik/collect.go index c8df960ca7..273d3d703b 100644 --- a/src/go/collectors/go.d.plugin/modules/traefik/collect.go +++ b/src/go/collectors/go.d.plugin/modules/traefik/collect.go @@ -6,8 +6,8 @@ import ( "errors" "strings" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/traefik/init.go b/src/go/collectors/go.d.plugin/modules/traefik/init.go index e96ba0b7c8..df4765c914 100644 --- a/src/go/collectors/go.d.plugin/modules/traefik/init.go +++ b/src/go/collectors/go.d.plugin/modules/traefik/init.go @@ -5,9 +5,9 @@ package traefik import ( "errors" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/prometheus/selector" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (t Traefik) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/traefik/integrations/traefik.md b/src/go/collectors/go.d.plugin/modules/traefik/integrations/traefik.md index b5405067e7..313840f14d 100644 --- a/src/go/collectors/go.d.plugin/modules/traefik/integrations/traefik.md +++ b/src/go/collectors/go.d.plugin/modules/traefik/integrations/traefik.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/tra meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/traefik/metadata.yaml" sidebar_label: "Traefik" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -93,7 +93,7 @@ The configuration file name for this integration is `go.d/traefik.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/traefik/traefik.go b/src/go/collectors/go.d.plugin/modules/traefik/traefik.go index a121b02363..294aacbee4 100644 --- a/src/go/collectors/go.d.plugin/modules/traefik/traefik.go +++ b/src/go/collectors/go.d.plugin/modules/traefik/traefik.go @@ -6,9 +6,9 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/traefik/traefik_test.go b/src/go/collectors/go.d.plugin/modules/traefik/traefik_test.go index c5804b672c..7e4e34e431 100644 --- a/src/go/collectors/go.d.plugin/modules/traefik/traefik_test.go +++ b/src/go/collectors/go.d.plugin/modules/traefik/traefik_test.go @@ -8,8 +8,8 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/unbound/charts.go b/src/go/collectors/go.d.plugin/modules/unbound/charts.go index b5d200e01a..0f0607664b 100644 --- a/src/go/collectors/go.d.plugin/modules/unbound/charts.go +++ b/src/go/collectors/go.d.plugin/modules/unbound/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "golang.org/x/text/cases" "golang.org/x/text/language" diff --git a/src/go/collectors/go.d.plugin/modules/unbound/init.go b/src/go/collectors/go.d.plugin/modules/unbound/init.go index 6ae9543f3d..c39d8f4496 100644 --- a/src/go/collectors/go.d.plugin/modules/unbound/init.go +++ b/src/go/collectors/go.d.plugin/modules/unbound/init.go @@ -7,9 +7,9 @@ import ( "errors" "net" - "github.com/netdata/go.d.plugin/modules/unbound/config" - "github.com/netdata/go.d.plugin/pkg/socket" - "github.com/netdata/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/modules/unbound/config" + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" ) func (u *Unbound) initConfig() (enabled bool) { diff --git a/src/go/collectors/go.d.plugin/modules/unbound/integrations/unbound.md b/src/go/collectors/go.d.plugin/modules/unbound/integrations/unbound.md index b3845b61b1..7a02819fab 100644 --- a/src/go/collectors/go.d.plugin/modules/unbound/integrations/unbound.md +++ b/src/go/collectors/go.d.plugin/modules/unbound/integrations/unbound.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/unb meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/unbound/metadata.yaml" sidebar_label: "Unbound" learn_status: "Published" -learn_rel_path: "Data Collection/DNS and DHCP Servers" +learn_rel_path: "Collecting Metrics/DNS and DHCP Servers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -160,7 +160,7 @@ The configuration file name for this integration is `go.d/unbound.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/unbound/unbound.go b/src/go/collectors/go.d.plugin/modules/unbound/unbound.go index 625ef75cd2..1e622d3ee2 100644 --- a/src/go/collectors/go.d.plugin/modules/unbound/unbound.go +++ b/src/go/collectors/go.d.plugin/modules/unbound/unbound.go @@ -6,11 +6,11 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/pkg/socket" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/unbound/unbound_test.go b/src/go/collectors/go.d.plugin/modules/unbound/unbound_test.go index fabea299d5..f0b9aaa21b 100644 --- a/src/go/collectors/go.d.plugin/modules/unbound/unbound_test.go +++ b/src/go/collectors/go.d.plugin/modules/unbound/unbound_test.go @@ -11,10 +11,10 @@ import ( "strings" "testing" - "github.com/netdata/go.d.plugin/pkg/socket" - "github.com/netdata/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/upsd/charts.go b/src/go/collectors/go.d.plugin/modules/upsd/charts.go index 14c18a34f7..72bd69f4f5 100644 --- a/src/go/collectors/go.d.plugin/modules/upsd/charts.go +++ b/src/go/collectors/go.d.plugin/modules/upsd/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/upsd/client.go b/src/go/collectors/go.d.plugin/modules/upsd/client.go index be0148bc53..c2b96ea4f0 100644 --- a/src/go/collectors/go.d.plugin/modules/upsd/client.go +++ b/src/go/collectors/go.d.plugin/modules/upsd/client.go @@ -8,7 +8,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/pkg/socket" + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/upsd/integrations/ups_nut.md b/src/go/collectors/go.d.plugin/modules/upsd/integrations/ups_nut.md index 3e315af44c..92e343a86d 100644 --- a/src/go/collectors/go.d.plugin/modules/upsd/integrations/ups_nut.md +++ b/src/go/collectors/go.d.plugin/modules/upsd/integrations/ups_nut.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ups meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/upsd/metadata.yaml" sidebar_label: "UPS (NUT)" learn_status: "Published" -learn_rel_path: "Data Collection/UPS" +learn_rel_path: "Collecting Metrics/UPS" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -122,7 +122,7 @@ The configuration file name for this integration is `go.d/upsd.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/upsd/upsd.go b/src/go/collectors/go.d.plugin/modules/upsd/upsd.go index ebe0f36bc0..0fdb06faa2 100644 --- a/src/go/collectors/go.d.plugin/modules/upsd/upsd.go +++ b/src/go/collectors/go.d.plugin/modules/upsd/upsd.go @@ -5,8 +5,8 @@ package upsd import ( "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func init() { diff --git a/src/go/collectors/go.d.plugin/modules/vcsa/charts.go b/src/go/collectors/go.d.plugin/modules/vcsa/charts.go index 0612118674..306b6a57ba 100644 --- a/src/go/collectors/go.d.plugin/modules/vcsa/charts.go +++ b/src/go/collectors/go.d.plugin/modules/vcsa/charts.go @@ -2,7 +2,7 @@ package vcsa -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" var ( vcsaHealthCharts = module.Charts{ diff --git a/src/go/collectors/go.d.plugin/modules/vcsa/client/client.go b/src/go/collectors/go.d.plugin/modules/vcsa/client/client.go index f1ae434979..64f53ff447 100644 --- a/src/go/collectors/go.d.plugin/modules/vcsa/client/client.go +++ b/src/go/collectors/go.d.plugin/modules/vcsa/client/client.go @@ -9,7 +9,7 @@ import ( "net/http" "sync" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) // Session: https://vmware.github.io/vsphere-automation-sdk-rest/vsphere/index.html#SVC_com.vmware.cis.session diff --git a/src/go/collectors/go.d.plugin/modules/vcsa/init.go b/src/go/collectors/go.d.plugin/modules/vcsa/init.go index 44c023a474..1122394288 100644 --- a/src/go/collectors/go.d.plugin/modules/vcsa/init.go +++ b/src/go/collectors/go.d.plugin/modules/vcsa/init.go @@ -5,8 +5,8 @@ package vcsa import ( "errors" - "github.com/netdata/go.d.plugin/modules/vcsa/client" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/modules/vcsa/client" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (vc *VCSA) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/vcsa/integrations/vcenter_server_appliance.md b/src/go/collectors/go.d.plugin/modules/vcsa/integrations/vcenter_server_appliance.md index 24cc7c2d64..f6cb31ac42 100644 --- a/src/go/collectors/go.d.plugin/modules/vcsa/integrations/vcenter_server_appliance.md +++ b/src/go/collectors/go.d.plugin/modules/vcsa/integrations/vcenter_server_appliance.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/vcs meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/vcsa/metadata.yaml" sidebar_label: "vCenter Server Appliance" learn_status: "Published" -learn_rel_path: "Data Collection/Containers and VMs" +learn_rel_path: "Collecting Metrics/Containers and VMs" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -149,7 +149,7 @@ The configuration file name for this integration is `go.d/vcsa.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/vcsa/vcsa.go b/src/go/collectors/go.d.plugin/modules/vcsa/vcsa.go index ccac96f3a2..1b319fe85a 100644 --- a/src/go/collectors/go.d.plugin/modules/vcsa/vcsa.go +++ b/src/go/collectors/go.d.plugin/modules/vcsa/vcsa.go @@ -6,9 +6,9 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/vernemq/charts.go b/src/go/collectors/go.d.plugin/modules/vernemq/charts.go index 54b86b9bd6..07f8958fa1 100644 --- a/src/go/collectors/go.d.plugin/modules/vernemq/charts.go +++ b/src/go/collectors/go.d.plugin/modules/vernemq/charts.go @@ -2,7 +2,7 @@ package vernemq -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( Charts = module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/vernemq/collect.go b/src/go/collectors/go.d.plugin/modules/vernemq/collect.go index 999be3e5fd..4ec6a1bf2a 100644 --- a/src/go/collectors/go.d.plugin/modules/vernemq/collect.go +++ b/src/go/collectors/go.d.plugin/modules/vernemq/collect.go @@ -6,8 +6,8 @@ import ( "errors" "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) func isValidVerneMQMetrics(pms prometheus.Series) bool { diff --git a/src/go/collectors/go.d.plugin/modules/vernemq/integrations/vernemq.md b/src/go/collectors/go.d.plugin/modules/vernemq/integrations/vernemq.md index af6b24a329..618d45e04c 100644 --- a/src/go/collectors/go.d.plugin/modules/vernemq/integrations/vernemq.md +++ b/src/go/collectors/go.d.plugin/modules/vernemq/integrations/vernemq.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/ver meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/vernemq/metadata.yaml" sidebar_label: "VerneMQ" learn_status: "Published" -learn_rel_path: "Data Collection/Message Brokers" +learn_rel_path: "Collecting Metrics/Message Brokers" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -179,7 +179,7 @@ The configuration file name for this integration is `go.d/vernemq.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/vernemq/vernemq.go b/src/go/collectors/go.d.plugin/modules/vernemq/vernemq.go index d86f3b1185..e4ccff4808 100644 --- a/src/go/collectors/go.d.plugin/modules/vernemq/vernemq.go +++ b/src/go/collectors/go.d.plugin/modules/vernemq/vernemq.go @@ -7,10 +7,10 @@ import ( "errors" "time" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/vernemq/vernemq_test.go b/src/go/collectors/go.d.plugin/modules/vernemq/vernemq_test.go index 5f07553cd7..eaf11cb752 100644 --- a/src/go/collectors/go.d.plugin/modules/vernemq/vernemq_test.go +++ b/src/go/collectors/go.d.plugin/modules/vernemq/vernemq_test.go @@ -8,7 +8,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/charts.go b/src/go/collectors/go.d.plugin/modules/vsphere/charts.go index 16137cfd7c..ed4db941df 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/charts.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/charts.go @@ -6,8 +6,8 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/client/client.go b/src/go/collectors/go.d.plugin/modules/vsphere/client/client.go index 40ed351c0b..827351cf81 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/client/client.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/client/client.go @@ -8,7 +8,7 @@ import ( "net/url" "time" - "github.com/netdata/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" "github.com/vmware/govmomi" "github.com/vmware/govmomi/performance" diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/client/client_test.go b/src/go/collectors/go.d.plugin/modules/vsphere/client/client_test.go index 5624f5c528..163829f41a 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/client/client_test.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/client/client_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/collect.go b/src/go/collectors/go.d.plugin/modules/vsphere/collect.go index 449f513219..1aa9af9c10 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/collect.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/collect.go @@ -7,7 +7,7 @@ import ( "fmt" "time" - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources" + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources" "github.com/vmware/govmomi/performance" ) diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/discover/build.go b/src/go/collectors/go.d.plugin/modules/vsphere/discover/build.go index 745bff60bc..3bf9bfb48f 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/discover/build.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/discover/build.go @@ -5,7 +5,7 @@ package discover import ( "time" - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources" + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources" "github.com/vmware/govmomi/vim25/mo" ) diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/discover/discover.go b/src/go/collectors/go.d.plugin/modules/vsphere/discover/discover.go index cba4101d8f..0d68b71c33 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/discover/discover.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/discover/discover.go @@ -7,10 +7,10 @@ import ( "strings" "time" - "github.com/netdata/go.d.plugin/modules/vsphere/match" - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources" + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/match" + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/logger" "github.com/vmware/govmomi/vim25/mo" "github.com/vmware/govmomi/vim25/types" ) diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/discover/discover_test.go b/src/go/collectors/go.d.plugin/modules/vsphere/discover/discover_test.go index b113ab3a62..01f83fd382 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/discover/discover_test.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/discover/discover_test.go @@ -8,9 +8,9 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/modules/vsphere/client" - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources" - "github.com/netdata/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/client" + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/discover/filter.go b/src/go/collectors/go.d.plugin/modules/vsphere/discover/filter.go index 9b015b2a52..73c1481e33 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/discover/filter.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/discover/filter.go @@ -5,7 +5,7 @@ package discover import ( "time" - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources" + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources" ) func (d Discoverer) matchHost(host *rs.Host) bool { diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/discover/hierarchy.go b/src/go/collectors/go.d.plugin/modules/vsphere/discover/hierarchy.go index e8d71467d0..4cea75dcda 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/discover/hierarchy.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/discover/hierarchy.go @@ -5,7 +5,7 @@ package discover import ( "time" - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources" + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources" ) func (d Discoverer) setHierarchy(res *rs.Resources) error { diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/discover/metric_lists.go b/src/go/collectors/go.d.plugin/modules/vsphere/discover/metric_lists.go index f2102cf6a6..0eecb81ea7 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/discover/metric_lists.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/discover/metric_lists.go @@ -6,7 +6,7 @@ import ( "sort" "time" - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources" + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources" "github.com/vmware/govmomi/performance" "github.com/vmware/govmomi/vim25/types" diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/init.go b/src/go/collectors/go.d.plugin/modules/vsphere/init.go index a0f9662203..704ac025df 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/init.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/init.go @@ -5,9 +5,9 @@ package vsphere import ( "errors" - "github.com/netdata/go.d.plugin/modules/vsphere/client" - "github.com/netdata/go.d.plugin/modules/vsphere/discover" - "github.com/netdata/go.d.plugin/modules/vsphere/scrape" + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/client" + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/discover" + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/scrape" ) func (vs *VSphere) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/integrations/vmware_vcenter_server.md b/src/go/collectors/go.d.plugin/modules/vsphere/integrations/vmware_vcenter_server.md index 91740a61b6..5bf5e00e27 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/integrations/vmware_vcenter_server.md +++ b/src/go/collectors/go.d.plugin/modules/vsphere/integrations/vmware_vcenter_server.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/vsp meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/vsphere/metadata.yaml" sidebar_label: "VMware vCenter Server" learn_status: "Published" -learn_rel_path: "Data Collection/Containers and VMs" +learn_rel_path: "Collecting Metrics/Containers and VMs" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -186,7 +186,7 @@ The configuration file name for this integration is `go.d/vsphere.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/match/match.go b/src/go/collectors/go.d.plugin/modules/vsphere/match/match.go index 24f9b865db..27282795f3 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/match/match.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/match/match.go @@ -6,8 +6,8 @@ import ( "fmt" "strings" - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources" - "github.com/netdata/go.d.plugin/pkg/matcher" + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" ) type HostMatcher interface { diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/match/match_test.go b/src/go/collectors/go.d.plugin/modules/vsphere/match/match_test.go index df353c1715..6bfe918533 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/match/match_test.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/match/match_test.go @@ -6,8 +6,8 @@ import ( "strings" "testing" - "github.com/netdata/go.d.plugin/modules/vsphere/resources" - "github.com/netdata/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" "github.com/stretchr/testify/assert" ) diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/scrape/scrape.go b/src/go/collectors/go.d.plugin/modules/vsphere/scrape/scrape.go index cae59b6e83..d803fa4140 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/scrape/scrape.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/scrape/scrape.go @@ -9,9 +9,9 @@ import ( "sync" "time" - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources" + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/logger" "github.com/vmware/govmomi/performance" "github.com/vmware/govmomi/vim25/types" ) diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/scrape/scrape_test.go b/src/go/collectors/go.d.plugin/modules/vsphere/scrape/scrape_test.go index 5078c96e9b..0576850f68 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/scrape/scrape_test.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/scrape/scrape_test.go @@ -8,10 +8,10 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/modules/vsphere/client" - "github.com/netdata/go.d.plugin/modules/vsphere/discover" - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources" - "github.com/netdata/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/client" + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/discover" + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/vsphere.go b/src/go/collectors/go.d.plugin/modules/vsphere/vsphere.go index d7af8a495a..76d9d24072 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/vsphere.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/vsphere.go @@ -7,10 +7,10 @@ import ( "sync" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/modules/vsphere/match" - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/match" + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/vmware/govmomi/performance" ) diff --git a/src/go/collectors/go.d.plugin/modules/vsphere/vsphere_test.go b/src/go/collectors/go.d.plugin/modules/vsphere/vsphere_test.go index 97c23d5ba0..86b630ae28 100644 --- a/src/go/collectors/go.d.plugin/modules/vsphere/vsphere_test.go +++ b/src/go/collectors/go.d.plugin/modules/vsphere/vsphere_test.go @@ -7,11 +7,11 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/modules/vsphere/discover" - "github.com/netdata/go.d.plugin/modules/vsphere/match" - rs "github.com/netdata/go.d.plugin/modules/vsphere/resources" + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/discover" + "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/match" + rs "github.com/netdata/netdata/go/go.d.plugin/modules/vsphere/resources" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "github.com/vmware/govmomi/performance" diff --git a/src/go/collectors/go.d.plugin/modules/weblog/charts.go b/src/go/collectors/go.d.plugin/modules/weblog/charts.go index 0d9477b108..749a26ce72 100644 --- a/src/go/collectors/go.d.plugin/modules/weblog/charts.go +++ b/src/go/collectors/go.d.plugin/modules/weblog/charts.go @@ -6,7 +6,7 @@ import ( "errors" "fmt" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) type ( diff --git a/src/go/collectors/go.d.plugin/modules/weblog/collect.go b/src/go/collectors/go.d.plugin/modules/weblog/collect.go index b6b2d39b46..d246207749 100644 --- a/src/go/collectors/go.d.plugin/modules/weblog/collect.go +++ b/src/go/collectors/go.d.plugin/modules/weblog/collect.go @@ -9,10 +9,10 @@ import ( "strconv" "strings" - "github.com/netdata/go.d.plugin/pkg/logs" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (w *WebLog) logPanicStackIfAny() { diff --git a/src/go/collectors/go.d.plugin/modules/weblog/init.go b/src/go/collectors/go.d.plugin/modules/weblog/init.go index 9ee45951c8..b456c817ad 100644 --- a/src/go/collectors/go.d.plugin/modules/weblog/init.go +++ b/src/go/collectors/go.d.plugin/modules/weblog/init.go @@ -7,8 +7,8 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/pkg/logs" - "github.com/netdata/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" ) type pattern struct { diff --git a/src/go/collectors/go.d.plugin/modules/weblog/integrations/web_server_log_files.md b/src/go/collectors/go.d.plugin/modules/weblog/integrations/web_server_log_files.md index 59f9809ea8..0b03a8a0e1 100644 --- a/src/go/collectors/go.d.plugin/modules/weblog/integrations/web_server_log_files.md +++ b/src/go/collectors/go.d.plugin/modules/weblog/integrations/web_server_log_files.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/web meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/weblog/metadata.yaml" sidebar_label: "Web server log files" learn_status: "Published" -learn_rel_path: "Data Collection/Web Servers and Web Proxies" +learn_rel_path: "Collecting Metrics/Web Servers and Web Proxies" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -163,7 +163,7 @@ The configuration file name for this integration is `go.d/web_log.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/weblog/metrics.go b/src/go/collectors/go.d.plugin/modules/weblog/metrics.go index 8d0284d13c..651221a999 100644 --- a/src/go/collectors/go.d.plugin/modules/weblog/metrics.go +++ b/src/go/collectors/go.d.plugin/modules/weblog/metrics.go @@ -3,7 +3,7 @@ package weblog import ( - "github.com/netdata/go.d.plugin/pkg/metrics" + "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics" ) func newWebLogSummary() metrics.Summary { diff --git a/src/go/collectors/go.d.plugin/modules/weblog/parser.go b/src/go/collectors/go.d.plugin/modules/weblog/parser.go index 11a6d2832a..662ec6ce21 100644 --- a/src/go/collectors/go.d.plugin/modules/weblog/parser.go +++ b/src/go/collectors/go.d.plugin/modules/weblog/parser.go @@ -8,7 +8,7 @@ import ( "regexp" "strings" - "github.com/netdata/go.d.plugin/pkg/logs" + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs" ) /* diff --git a/src/go/collectors/go.d.plugin/modules/weblog/parser_test.go b/src/go/collectors/go.d.plugin/modules/weblog/parser_test.go index 4e449b60cd..d60010aa50 100644 --- a/src/go/collectors/go.d.plugin/modules/weblog/parser_test.go +++ b/src/go/collectors/go.d.plugin/modules/weblog/parser_test.go @@ -6,7 +6,7 @@ import ( "fmt" "testing" - "github.com/netdata/go.d.plugin/pkg/logs" + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/weblog/weblog.go b/src/go/collectors/go.d.plugin/modules/weblog/weblog.go index 27bf43f9ac..9463054372 100644 --- a/src/go/collectors/go.d.plugin/modules/weblog/weblog.go +++ b/src/go/collectors/go.d.plugin/modules/weblog/weblog.go @@ -5,8 +5,8 @@ package weblog import ( _ "embed" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/logs" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/weblog/weblog_test.go b/src/go/collectors/go.d.plugin/modules/weblog/weblog_test.go index 6195d2e49b..523678eebe 100644 --- a/src/go/collectors/go.d.plugin/modules/weblog/weblog_test.go +++ b/src/go/collectors/go.d.plugin/modules/weblog/weblog_test.go @@ -11,10 +11,10 @@ import ( "strings" "testing" - "github.com/netdata/go.d.plugin/pkg/logs" - "github.com/netdata/go.d.plugin/pkg/metrics" + "github.com/netdata/netdata/go/go.d.plugin/pkg/logs" + "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/src/go/collectors/go.d.plugin/modules/whoisquery/charts.go b/src/go/collectors/go.d.plugin/modules/whoisquery/charts.go index c8e6fe363a..49c5089923 100644 --- a/src/go/collectors/go.d.plugin/modules/whoisquery/charts.go +++ b/src/go/collectors/go.d.plugin/modules/whoisquery/charts.go @@ -2,7 +2,7 @@ package whoisquery -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" var baseCharts = module.Charts{ { diff --git a/src/go/collectors/go.d.plugin/modules/whoisquery/init.go b/src/go/collectors/go.d.plugin/modules/whoisquery/init.go index 7db18a52eb..d420020954 100644 --- a/src/go/collectors/go.d.plugin/modules/whoisquery/init.go +++ b/src/go/collectors/go.d.plugin/modules/whoisquery/init.go @@ -5,7 +5,7 @@ package whoisquery import ( "errors" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (w *WhoisQuery) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/whoisquery/integrations/domain_expiration_date.md b/src/go/collectors/go.d.plugin/modules/whoisquery/integrations/domain_expiration_date.md index 3d2816d06e..ddd7dcf99c 100644 --- a/src/go/collectors/go.d.plugin/modules/whoisquery/integrations/domain_expiration_date.md +++ b/src/go/collectors/go.d.plugin/modules/whoisquery/integrations/domain_expiration_date.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/who meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/whoisquery/metadata.yaml" sidebar_label: "Domain expiration date" learn_status: "Published" -learn_rel_path: "Data Collection/Synthetic Checks" +learn_rel_path: "Collecting Metrics/Synthetic Checks" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -96,7 +96,7 @@ The configuration file name for this integration is `go.d/whoisquery.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/whoisquery/whoisquery.go b/src/go/collectors/go.d.plugin/modules/whoisquery/whoisquery.go index 6265b4fb60..3cc9470259 100644 --- a/src/go/collectors/go.d.plugin/modules/whoisquery/whoisquery.go +++ b/src/go/collectors/go.d.plugin/modules/whoisquery/whoisquery.go @@ -6,8 +6,8 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/windows/charts.go b/src/go/collectors/go.d.plugin/modules/windows/charts.go index 14db70395a..a41a953cab 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/charts.go +++ b/src/go/collectors/go.d.plugin/modules/windows/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect.go b/src/go/collectors/go.d.plugin/modules/windows/collect.go index 288774f99e..b20b08c276 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect.go @@ -3,7 +3,7 @@ package windows import ( - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const precision = 1000 diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_ad.go b/src/go/collectors/go.d.plugin/modules/windows/collect_ad.go index c386cf5bb9..3c07a9112c 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_ad.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_ad.go @@ -2,7 +2,7 @@ package windows -import "github.com/netdata/go.d.plugin/pkg/prometheus" +import "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" // Windows exporter: // https://github.com/prometheus-community/windows_exporter/blob/master/docs/collector.ad.md diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_adcs.go b/src/go/collectors/go.d.plugin/modules/windows/collect_adcs.go index 0d42d25aad..0142fcb9c7 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_adcs.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_adcs.go @@ -5,7 +5,7 @@ package windows import ( "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_adfs.go b/src/go/collectors/go.d.plugin/modules/windows/collect_adfs.go index 2f37c01b83..4ce0717bab 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_adfs.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_adfs.go @@ -5,7 +5,7 @@ package windows import ( "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_collector.go b/src/go/collectors/go.d.plugin/modules/windows/collect_collector.go index 1faf7d703e..6950ff5752 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_collector.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_collector.go @@ -3,7 +3,7 @@ package windows import ( - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_cpu.go b/src/go/collectors/go.d.plugin/modules/windows/collect_cpu.go index d5369cb40d..fc1412e3d6 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_cpu.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_cpu.go @@ -3,7 +3,7 @@ package windows import ( - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_exchange.go b/src/go/collectors/go.d.plugin/modules/windows/collect_exchange.go index 080f122f0a..040bae1e2d 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_exchange.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_exchange.go @@ -5,7 +5,7 @@ package windows import ( "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_hyperv.go b/src/go/collectors/go.d.plugin/modules/windows/collect_hyperv.go index 2caa88ba75..c37285acb6 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_hyperv.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_hyperv.go @@ -5,7 +5,7 @@ package windows import ( "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_iis.go b/src/go/collectors/go.d.plugin/modules/windows/collect_iis.go index 5e9cd03f16..3b15b6e899 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_iis.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_iis.go @@ -5,7 +5,7 @@ package windows import ( "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_logical_disk.go b/src/go/collectors/go.d.plugin/modules/windows/collect_logical_disk.go index bf84a2e9dc..9f5dab15b1 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_logical_disk.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_logical_disk.go @@ -5,7 +5,7 @@ package windows import ( "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_logon.go b/src/go/collectors/go.d.plugin/modules/windows/collect_logon.go index ba8ff3b8b8..a4e14d109b 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_logon.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_logon.go @@ -3,7 +3,7 @@ package windows import ( - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_memory.go b/src/go/collectors/go.d.plugin/modules/windows/collect_memory.go index 5b46f97e2a..5b4ed191dd 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_memory.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_memory.go @@ -3,7 +3,7 @@ package windows import ( - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_mssql.go b/src/go/collectors/go.d.plugin/modules/windows/collect_mssql.go index 56625004e8..53d88f5781 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_mssql.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_mssql.go @@ -5,7 +5,7 @@ package windows import ( "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_net.go b/src/go/collectors/go.d.plugin/modules/windows/collect_net.go index 6d49d56834..e72bf646fa 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_net.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_net.go @@ -5,7 +5,7 @@ package windows import ( "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_netframework.go b/src/go/collectors/go.d.plugin/modules/windows/collect_netframework.go index 46be727c3a..84012f71e4 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_netframework.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_netframework.go @@ -3,7 +3,7 @@ package windows import ( - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_os.go b/src/go/collectors/go.d.plugin/modules/windows/collect_os.go index 5fc1447c7b..17617f4801 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_os.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_os.go @@ -3,7 +3,7 @@ package windows import ( - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_process.go b/src/go/collectors/go.d.plugin/modules/windows/collect_process.go index e22fe22007..b1c729f302 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_process.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_process.go @@ -5,7 +5,7 @@ package windows import ( "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_service.go b/src/go/collectors/go.d.plugin/modules/windows/collect_service.go index 0615674130..fb58128ee2 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_service.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_service.go @@ -5,7 +5,7 @@ package windows import ( "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_system.go b/src/go/collectors/go.d.plugin/modules/windows/collect_system.go index 8072e07460..5f0bc9131d 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_system.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_system.go @@ -5,7 +5,7 @@ package windows import ( "time" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_tcp.go b/src/go/collectors/go.d.plugin/modules/windows/collect_tcp.go index cdcb0d8afb..20c8f8df73 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_tcp.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_tcp.go @@ -2,7 +2,7 @@ package windows -import "github.com/netdata/go.d.plugin/pkg/prometheus" +import "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" const ( metricTCPConnectionFailure = "windows_tcp_connection_failures_total" diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_thermalzone.go b/src/go/collectors/go.d.plugin/modules/windows/collect_thermalzone.go index 9832335434..578ebef9fd 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/collect_thermalzone.go +++ b/src/go/collectors/go.d.plugin/modules/windows/collect_thermalzone.go @@ -5,7 +5,7 @@ package windows import ( "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/windows/init.go b/src/go/collectors/go.d.plugin/modules/windows/init.go index 34cf836729..5a6771ef78 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/init.go +++ b/src/go/collectors/go.d.plugin/modules/windows/init.go @@ -6,8 +6,8 @@ import ( "errors" "net/http" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) func (w *Windows) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/windows/integrations/active_directory.md b/src/go/collectors/go.d.plugin/modules/windows/integrations/active_directory.md index d6d2652425..415b893cfe 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/integrations/active_directory.md +++ b/src/go/collectors/go.d.plugin/modules/windows/integrations/active_directory.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/win meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/windows/metadata.yaml" sidebar_label: "Active Directory" learn_status: "Published" -learn_rel_path: "Data Collection/Windows Systems" +learn_rel_path: "Collecting Metrics/Windows Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -652,7 +652,7 @@ The configuration file name for this integration is `go.d/windows.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/windows/integrations/hyperv.md b/src/go/collectors/go.d.plugin/modules/windows/integrations/hyperv.md index 8adf5eafe9..cd65c887d0 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/integrations/hyperv.md +++ b/src/go/collectors/go.d.plugin/modules/windows/integrations/hyperv.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/win meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/windows/metadata.yaml" sidebar_label: "HyperV" learn_status: "Published" -learn_rel_path: "Data Collection/Windows Systems" +learn_rel_path: "Collecting Metrics/Windows Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -652,7 +652,7 @@ The configuration file name for this integration is `go.d/windows.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/windows/integrations/ms_exchange.md b/src/go/collectors/go.d.plugin/modules/windows/integrations/ms_exchange.md index 3a452c4da1..44ab05bc0d 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/integrations/ms_exchange.md +++ b/src/go/collectors/go.d.plugin/modules/windows/integrations/ms_exchange.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/win meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/windows/metadata.yaml" sidebar_label: "MS Exchange" learn_status: "Published" -learn_rel_path: "Data Collection/Windows Systems" +learn_rel_path: "Collecting Metrics/Windows Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -652,7 +652,7 @@ The configuration file name for this integration is `go.d/windows.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/windows/integrations/ms_sql_server.md b/src/go/collectors/go.d.plugin/modules/windows/integrations/ms_sql_server.md index 2df4d8d91d..7181c1312d 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/integrations/ms_sql_server.md +++ b/src/go/collectors/go.d.plugin/modules/windows/integrations/ms_sql_server.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/win meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/windows/metadata.yaml" sidebar_label: "MS SQL Server" learn_status: "Published" -learn_rel_path: "Data Collection/Windows Systems" +learn_rel_path: "Collecting Metrics/Windows Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -652,7 +652,7 @@ The configuration file name for this integration is `go.d/windows.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/windows/integrations/net_framework.md b/src/go/collectors/go.d.plugin/modules/windows/integrations/net_framework.md index 8be407364f..5258e2affb 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/integrations/net_framework.md +++ b/src/go/collectors/go.d.plugin/modules/windows/integrations/net_framework.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/win meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/windows/metadata.yaml" sidebar_label: "NET Framework" learn_status: "Published" -learn_rel_path: "Data Collection/Windows Systems" +learn_rel_path: "Collecting Metrics/Windows Systems" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -652,7 +652,7 @@ The configuration file name for this integration is `go.d/windows.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/windows/integrations/windows.md b/src/go/collectors/go.d.plugin/modules/windows/integrations/windows.md index b72203fd88..b5358f547e 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/integrations/windows.md +++ b/src/go/collectors/go.d.plugin/modules/windows/integrations/windows.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/win meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/windows/metadata.yaml" sidebar_label: "Windows" learn_status: "Published" -learn_rel_path: "Data Collection/Windows Systems" +learn_rel_path: "Collecting Metrics/Windows Systems" most_popular: True message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -652,7 +652,7 @@ The configuration file name for this integration is `go.d/windows.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/windows/windows.go b/src/go/collectors/go.d.plugin/modules/windows/windows.go index e405887e06..62d10b6e66 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/windows.go +++ b/src/go/collectors/go.d.plugin/modules/windows/windows.go @@ -7,9 +7,9 @@ import ( "net/http" "time" - "github.com/netdata/go.d.plugin/agent/module" - "github.com/netdata/go.d.plugin/pkg/prometheus" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/windows/windows_test.go b/src/go/collectors/go.d.plugin/modules/windows/windows_test.go index b98e40de6d..c0039862cc 100644 --- a/src/go/collectors/go.d.plugin/modules/windows/windows_test.go +++ b/src/go/collectors/go.d.plugin/modules/windows/windows_test.go @@ -10,7 +10,7 @@ import ( "strings" "testing" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/wireguard/charts.go b/src/go/collectors/go.d.plugin/modules/wireguard/charts.go index 0c38298125..fe7f89e9b3 100644 --- a/src/go/collectors/go.d.plugin/modules/wireguard/charts.go +++ b/src/go/collectors/go.d.plugin/modules/wireguard/charts.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) const ( diff --git a/src/go/collectors/go.d.plugin/modules/wireguard/integrations/wireguard.md b/src/go/collectors/go.d.plugin/modules/wireguard/integrations/wireguard.md index 54cbf38cb0..a2025fe735 100644 --- a/src/go/collectors/go.d.plugin/modules/wireguard/integrations/wireguard.md +++ b/src/go/collectors/go.d.plugin/modules/wireguard/integrations/wireguard.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/wir meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/wireguard/metadata.yaml" sidebar_label: "WireGuard" learn_status: "Published" -learn_rel_path: "Data Collection/VPNs" +learn_rel_path: "Collecting Metrics/VPNs" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -115,7 +115,7 @@ The configuration file name for this integration is `go.d/wireguard.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/wireguard/wireguard.go b/src/go/collectors/go.d.plugin/modules/wireguard/wireguard.go index 6587dce3c4..adf38ab888 100644 --- a/src/go/collectors/go.d.plugin/modules/wireguard/wireguard.go +++ b/src/go/collectors/go.d.plugin/modules/wireguard/wireguard.go @@ -6,7 +6,7 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "golang.zx2c4.com/wireguard/wgctrl" "golang.zx2c4.com/wireguard/wgctrl/wgtypes" diff --git a/src/go/collectors/go.d.plugin/modules/wireguard/wireguard_test.go b/src/go/collectors/go.d.plugin/modules/wireguard/wireguard_test.go index 5e6434dccb..4b6e1d1ccb 100644 --- a/src/go/collectors/go.d.plugin/modules/wireguard/wireguard_test.go +++ b/src/go/collectors/go.d.plugin/modules/wireguard/wireguard_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/x509check/charts.go b/src/go/collectors/go.d.plugin/modules/x509check/charts.go index 50cef77e5e..2a497dfe0f 100644 --- a/src/go/collectors/go.d.plugin/modules/x509check/charts.go +++ b/src/go/collectors/go.d.plugin/modules/x509check/charts.go @@ -2,7 +2,7 @@ package x509check -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" var ( baseCharts = module.Charts{ diff --git a/src/go/collectors/go.d.plugin/modules/x509check/init.go b/src/go/collectors/go.d.plugin/modules/x509check/init.go index 361e110ba0..f0df7fdeff 100644 --- a/src/go/collectors/go.d.plugin/modules/x509check/init.go +++ b/src/go/collectors/go.d.plugin/modules/x509check/init.go @@ -5,7 +5,7 @@ package x509check import ( "errors" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) func (x *X509Check) validateConfig() error { diff --git a/src/go/collectors/go.d.plugin/modules/x509check/integrations/x.509_certificate.md b/src/go/collectors/go.d.plugin/modules/x509check/integrations/x.509_certificate.md index 2a070b30a4..bf1952ff4e 100644 --- a/src/go/collectors/go.d.plugin/modules/x509check/integrations/x.509_certificate.md +++ b/src/go/collectors/go.d.plugin/modules/x509check/integrations/x.509_certificate.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/x50 meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/x509check/metadata.yaml" sidebar_label: "X.509 certificate" learn_status: "Published" -learn_rel_path: "Data Collection/Synthetic Checks" +learn_rel_path: "Collecting Metrics/Synthetic Checks" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -98,7 +98,7 @@ The configuration file name for this integration is `go.d/x509check.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/x509check/provider.go b/src/go/collectors/go.d.plugin/modules/x509check/provider.go index c5ac4d7115..2a2d70f045 100644 --- a/src/go/collectors/go.d.plugin/modules/x509check/provider.go +++ b/src/go/collectors/go.d.plugin/modules/x509check/provider.go @@ -13,7 +13,7 @@ import ( "os" "time" - "github.com/netdata/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" ) type provider interface { diff --git a/src/go/collectors/go.d.plugin/modules/x509check/x509check.go b/src/go/collectors/go.d.plugin/modules/x509check/x509check.go index ed3a10b2fc..01fc1e7f8e 100644 --- a/src/go/collectors/go.d.plugin/modules/x509check/x509check.go +++ b/src/go/collectors/go.d.plugin/modules/x509check/x509check.go @@ -6,11 +6,11 @@ import ( _ "embed" "time" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" cfssllog "github.com/cloudflare/cfssl/log" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/modules/x509check/x509check_test.go b/src/go/collectors/go.d.plugin/modules/x509check/x509check_test.go index 2c628af0af..c8361e9af8 100644 --- a/src/go/collectors/go.d.plugin/modules/x509check/x509check_test.go +++ b/src/go/collectors/go.d.plugin/modules/x509check/x509check_test.go @@ -7,7 +7,7 @@ import ( "errors" "testing" - "github.com/netdata/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/modules/zookeeper/charts.go b/src/go/collectors/go.d.plugin/modules/zookeeper/charts.go index 5828ec3e15..2c2cf6a05d 100644 --- a/src/go/collectors/go.d.plugin/modules/zookeeper/charts.go +++ b/src/go/collectors/go.d.plugin/modules/zookeeper/charts.go @@ -2,7 +2,7 @@ package zookeeper -import "github.com/netdata/go.d.plugin/agent/module" +import "github.com/netdata/netdata/go/go.d.plugin/agent/module" type ( Charts = module.Charts diff --git a/src/go/collectors/go.d.plugin/modules/zookeeper/fetcher.go b/src/go/collectors/go.d.plugin/modules/zookeeper/fetcher.go index 7c3aae0eab..59afbe1376 100644 --- a/src/go/collectors/go.d.plugin/modules/zookeeper/fetcher.go +++ b/src/go/collectors/go.d.plugin/modules/zookeeper/fetcher.go @@ -7,7 +7,7 @@ import ( "fmt" "unsafe" - "github.com/netdata/go.d.plugin/pkg/socket" + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket" ) const limitReadLines = 2000 diff --git a/src/go/collectors/go.d.plugin/modules/zookeeper/fetcher_test.go b/src/go/collectors/go.d.plugin/modules/zookeeper/fetcher_test.go index cdc9c0e268..dbc5174b90 100644 --- a/src/go/collectors/go.d.plugin/modules/zookeeper/fetcher_test.go +++ b/src/go/collectors/go.d.plugin/modules/zookeeper/fetcher_test.go @@ -5,7 +5,7 @@ package zookeeper import ( "testing" - "github.com/netdata/go.d.plugin/pkg/socket" + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket" "github.com/stretchr/testify/assert" ) diff --git a/src/go/collectors/go.d.plugin/modules/zookeeper/integrations/zookeeper.md b/src/go/collectors/go.d.plugin/modules/zookeeper/integrations/zookeeper.md index c3d3337dc1..b64498aae3 100644 --- a/src/go/collectors/go.d.plugin/modules/zookeeper/integrations/zookeeper.md +++ b/src/go/collectors/go.d.plugin/modules/zookeeper/integrations/zookeeper.md @@ -3,7 +3,7 @@ custom_edit_url: "https://github.com/netdata/go.d.plugin/edit/master/modules/zoo meta_yaml: "https://github.com/netdata/go.d.plugin/edit/master/modules/zookeeper/metadata.yaml" sidebar_label: "ZooKeeper" learn_status: "Published" -learn_rel_path: "Data Collection/Service Discovery / Registry" +learn_rel_path: "Collecting Metrics/Service Discovery / Registry" most_popular: False message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE" endmeta--> @@ -105,7 +105,7 @@ The configuration file name for this integration is `go.d/zookeeper.conf`. You can edit the configuration file using the `edit-config` script from the -Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory). +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory). ```bash cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata diff --git a/src/go/collectors/go.d.plugin/modules/zookeeper/zookeeper.go b/src/go/collectors/go.d.plugin/modules/zookeeper/zookeeper.go index 29ab1f8588..4d39419069 100644 --- a/src/go/collectors/go.d.plugin/modules/zookeeper/zookeeper.go +++ b/src/go/collectors/go.d.plugin/modules/zookeeper/zookeeper.go @@ -8,11 +8,11 @@ import ( "fmt" "time" - "github.com/netdata/go.d.plugin/pkg/socket" - "github.com/netdata/go.d.plugin/pkg/tlscfg" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/socket" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" - "github.com/netdata/go.d.plugin/agent/module" + "github.com/netdata/netdata/go/go.d.plugin/agent/module" ) //go:embed "config_schema.json" diff --git a/src/go/collectors/go.d.plugin/pkg/logs/reader.go b/src/go/collectors/go.d.plugin/pkg/logs/reader.go index f3321984a8..ee526a9e32 100644 --- a/src/go/collectors/go.d.plugin/pkg/logs/reader.go +++ b/src/go/collectors/go.d.plugin/pkg/logs/reader.go @@ -10,7 +10,7 @@ import ( "path/filepath" "sort" - "github.com/netdata/go.d.plugin/logger" + "github.com/netdata/netdata/go/go.d.plugin/logger" ) const ( diff --git a/src/go/collectors/go.d.plugin/pkg/matcher/doc_test.go b/src/go/collectors/go.d.plugin/pkg/matcher/doc_test.go index bda44c5544..d04b39a545 100644 --- a/src/go/collectors/go.d.plugin/pkg/matcher/doc_test.go +++ b/src/go/collectors/go.d.plugin/pkg/matcher/doc_test.go @@ -2,7 +2,7 @@ package matcher_test -import "github.com/netdata/go.d.plugin/pkg/matcher" +import "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" func ExampleNew_string_format() { // create a string matcher, which perform full text match diff --git a/src/go/collectors/go.d.plugin/pkg/metrics/counter.go b/src/go/collectors/go.d.plugin/pkg/metrics/counter.go index a48cfd68b3..7231fc7a45 100644 --- a/src/go/collectors/go.d.plugin/pkg/metrics/counter.go +++ b/src/go/collectors/go.d.plugin/pkg/metrics/counter.go @@ -5,7 +5,7 @@ package metrics import ( "errors" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) type ( diff --git a/src/go/collectors/go.d.plugin/pkg/metrics/gauge.go b/src/go/collectors/go.d.plugin/pkg/metrics/gauge.go index 291cee5f71..6f0930f66e 100644 --- a/src/go/collectors/go.d.plugin/pkg/metrics/gauge.go +++ b/src/go/collectors/go.d.plugin/pkg/metrics/gauge.go @@ -5,7 +5,7 @@ package metrics import ( "time" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) type ( diff --git a/src/go/collectors/go.d.plugin/pkg/metrics/histogram.go b/src/go/collectors/go.d.plugin/pkg/metrics/histogram.go index 2ad5033f0a..caabf09afe 100644 --- a/src/go/collectors/go.d.plugin/pkg/metrics/histogram.go +++ b/src/go/collectors/go.d.plugin/pkg/metrics/histogram.go @@ -6,7 +6,7 @@ import ( "fmt" "sort" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) type ( diff --git a/src/go/collectors/go.d.plugin/pkg/metrics/metrics.go b/src/go/collectors/go.d.plugin/pkg/metrics/metrics.go index 30396c9ced..44a24056fd 100644 --- a/src/go/collectors/go.d.plugin/pkg/metrics/metrics.go +++ b/src/go/collectors/go.d.plugin/pkg/metrics/metrics.go @@ -2,7 +2,7 @@ package metrics -import "github.com/netdata/go.d.plugin/pkg/stm" +import "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" // Observer is an interface that wraps the Observe method, which is used by // Histogram and Summary to add observations. diff --git a/src/go/collectors/go.d.plugin/pkg/metrics/summary.go b/src/go/collectors/go.d.plugin/pkg/metrics/summary.go index c6261cfe2c..01b85f65ef 100644 --- a/src/go/collectors/go.d.plugin/pkg/metrics/summary.go +++ b/src/go/collectors/go.d.plugin/pkg/metrics/summary.go @@ -5,7 +5,7 @@ package metrics import ( "math" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) type ( diff --git a/src/go/collectors/go.d.plugin/pkg/metrics/unique_counter.go b/src/go/collectors/go.d.plugin/pkg/metrics/unique_counter.go index 0b9da5cdbf..dfc96126aa 100644 --- a/src/go/collectors/go.d.plugin/pkg/metrics/unique_counter.go +++ b/src/go/collectors/go.d.plugin/pkg/metrics/unique_counter.go @@ -4,7 +4,7 @@ package metrics import ( "github.com/axiomhq/hyperloglog" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" ) type ( diff --git a/src/go/collectors/go.d.plugin/pkg/prometheus/client.go b/src/go/collectors/go.d.plugin/pkg/prometheus/client.go index 7e359a99ec..51f596595a 100644 --- a/src/go/collectors/go.d.plugin/pkg/prometheus/client.go +++ b/src/go/collectors/go.d.plugin/pkg/prometheus/client.go @@ -13,8 +13,8 @@ import ( "os" "path/filepath" - "github.com/netdata/go.d.plugin/pkg/prometheus/selector" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" ) type ( diff --git a/src/go/collectors/go.d.plugin/pkg/prometheus/client_test.go b/src/go/collectors/go.d.plugin/pkg/prometheus/client_test.go index 45a68dd645..76199800ae 100644 --- a/src/go/collectors/go.d.plugin/pkg/prometheus/client_test.go +++ b/src/go/collectors/go.d.plugin/pkg/prometheus/client_test.go @@ -11,8 +11,8 @@ import ( "strings" "testing" - "github.com/netdata/go.d.plugin/pkg/prometheus/selector" - "github.com/netdata/go.d.plugin/pkg/web" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector" + "github.com/netdata/netdata/go/go.d.plugin/pkg/web" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/go/collectors/go.d.plugin/pkg/prometheus/parse.go b/src/go/collectors/go.d.plugin/pkg/prometheus/parse.go index 2586243335..0f6613d766 100644 --- a/src/go/collectors/go.d.plugin/pkg/prometheus/parse.go +++ b/src/go/collectors/go.d.plugin/pkg/prometheus/parse.go @@ -7,7 +7,7 @@ import ( "strconv" "strings" - "github.com/netdata/go.d.plugin/pkg/prometheus/selector" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector" "github.com/prometheus/prometheus/model/labels" "github.com/prometheus/prometheus/model/textparse" diff --git a/src/go/collectors/go.d.plugin/pkg/prometheus/parse_test.go b/src/go/collectors/go.d.plugin/pkg/prometheus/parse_test.go index ade471f0df..76c8e31f52 100644 --- a/src/go/collectors/go.d.plugin/pkg/prometheus/parse_test.go +++ b/src/go/collectors/go.d.plugin/pkg/prometheus/parse_test.go @@ -7,7 +7,7 @@ import ( "os" "testing" - "github.com/netdata/go.d.plugin/pkg/prometheus/selector" + "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector" "github.com/prometheus/prometheus/model/labels" "github.com/prometheus/prometheus/model/textparse" diff --git a/src/go/collectors/go.d.plugin/pkg/prometheus/selector/parse.go b/src/go/collectors/go.d.plugin/pkg/prometheus/selector/parse.go index 4a5216d429..29c1d4fbf6 100644 --- a/src/go/collectors/go.d.plugin/pkg/prometheus/selector/parse.go +++ b/src/go/collectors/go.d.plugin/pkg/prometheus/selector/parse.go @@ -7,7 +7,7 @@ import ( "regexp" "strings" - "github.com/netdata/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" ) var ( diff --git a/src/go/collectors/go.d.plugin/pkg/prometheus/selector/parse_test.go b/src/go/collectors/go.d.plugin/pkg/prometheus/selector/parse_test.go index ab70035d7b..ba764e0391 100644 --- a/src/go/collectors/go.d.plugin/pkg/prometheus/selector/parse_test.go +++ b/src/go/collectors/go.d.plugin/pkg/prometheus/selector/parse_test.go @@ -6,7 +6,7 @@ import ( "fmt" "testing" - "github.com/netdata/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" "github.com/prometheus/prometheus/model/labels" "github.com/stretchr/testify/assert" diff --git a/src/go/collectors/go.d.plugin/pkg/prometheus/selector/selector.go b/src/go/collectors/go.d.plugin/pkg/prometheus/selector/selector.go index 1537d33de3..28203fca13 100644 --- a/src/go/collectors/go.d.plugin/pkg/prometheus/selector/selector.go +++ b/src/go/collectors/go.d.plugin/pkg/prometheus/selector/selector.go @@ -3,7 +3,7 @@ package selector import ( - "github.com/netdata/go.d.plugin/pkg/matcher" + "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher" "github.com/prometheus/prometheus/model/labels" ) diff --git a/src/go/collectors/go.d.plugin/pkg/stm/stm_test.go b/src/go/collectors/go.d.plugin/pkg/stm/stm_test.go index 2fe2d793ae..04d63b32d7 100644 --- a/src/go/collectors/go.d.plugin/pkg/stm/stm_test.go +++ b/src/go/collectors/go.d.plugin/pkg/stm/stm_test.go @@ -5,9 +5,9 @@ package stm_test import ( "testing" - "github.com/netdata/go.d.plugin/pkg/stm" + "github.com/netdata/netdata/go/go.d.plugin/pkg/stm" - "github.com/netdata/go.d.plugin/pkg/metrics" + "github.com/netdata/netdata/go/go.d.plugin/pkg/metrics" "github.com/stretchr/testify/assert" ) diff --git a/src/go/collectors/go.d.plugin/pkg/web/client.go b/src/go/collectors/go.d.plugin/pkg/web/client.go index ae3ecd462c..3408b81262 100644 --- a/src/go/collectors/go.d.plugin/pkg/web/client.go +++ b/src/go/collectors/go.d.plugin/pkg/web/client.go @@ -9,7 +9,7 @@ import ( "net/http" "net/url" - "github.com/netdata/go.d.plugin/pkg/tlscfg" + "github.com/netdata/netdata/go/go.d.plugin/pkg/tlscfg" ) // ErrRedirectAttempted indicates that a redirect occurred.