@cryptotaxi247 / netdata-1 / commits / 12306a3e0

Assorted cleanup of CI/packaging related code. (#16938)

* Drop unused Dockerfile.test. It’s not been used for years, and it doesn’t even work at this point for it’s intended purpose. * Remove CodeClimate configuration. We’re not using it anymore, so there is no point to keeping the configuration around. * Remove the build_external directory. This isn’t used by any of our code AFAICT, and if it _is_ needed, it should actually be in some sub-directory of `tests` instead of a top-level directory whose name doesn’t even describe what it does. * Remove .gitattributes If there's any objection we can reinstate it. * Move coverity-scan.sh under packaging/utils * Move cmake files under packaging/cmake * Remove devcontainer * Fix up coverity script to run correctly from new location. --------- Co-authored-by: vkalintiris <vasilis@netdata.cloud>

Austin S. Hemmelgarn committed Feb 14, 2024 at 07:01 UTC 12306a3e05ba5778447c26f2e80a4c71da5bee0c
56 files changed +20 -9168
.codeclimate.yml deleted
-93
@@ -1,93 +0,0 @@
1 -version: "2"
2 -checks:
3 - argument-count:
4 - enabled: false
5 - config:
6 - threshold: 10
7 - complex-logic:
8 - enabled: false
9 - config:
10 - threshold: 10
11 - file-lines:
12 - enabled: false
13 - config:
14 - threshold: 5000
15 - method-complexity:
16 - enabled: false
17 - config:
18 - threshold: 20
19 - method-count:
20 - enabled: false
21 - config:
22 - threshold: 50
23 - method-lines:
24 - enabled: false
25 - config:
26 - threshold: 250
27 - nested-control-flow:
28 - enabled: false
29 - config:
30 - threshold: 4
31 - return-statements:
32 - enabled: false
33 - config:
34 - threshold: 4
35 - similar-code:
36 - enabled: false
37 - identical-code:
38 - enabled: false
39 -plugins:
40 - csslint:
41 - enabled: true
42 - duplication:
43 - enabled: false
44 - config:
45 - languages:
46 - - javascript:
47 - mass_threshold: 100
48 - - python:
49 - python_version: 3
50 - mass_threshold: 100
51 - checks:
52 - Similar code:
53 - enabled: false
54 - Identical code:
55 - enabled: false
56 - eslint:
57 - enabled: true
58 - checks:
59 - max-statements:
60 - enabled: false
61 - complexity:
62 - enabled: false
63 - no-eval:
64 - enabled: false
65 - no-extend-native:
66 - enabled: false
67 - no-void:
68 - enabled: false
69 - no-alert:
70 - enabled: false
71 - no-undef-init:
72 - enabled: false
73 - fixme:
74 - enabled: false
75 - phpmd:
76 - enabled: true
77 - radon:
78 - enabled: true
79 - checks:
80 - Complexity:
81 - enabled: false
82 -exclude_patterns:
83 - - ".gitignore"
84 - - ".githooks/"
85 - - "tests/"
86 - - "m4/"
87 - - "src/web/css/"
88 - - "src/web/lib/"
89 - - "src/web/fonts/"
90 - - "src/web/old/"
91 - - "collectors/python.d.plugin/python_modules/pyyaml2/"
92 - - "collectors/python.d.plugin/python_modules/pyyaml3/"
93 - - "collectors/python.d.plugin/python_modules/urllib3/"
.devcontainer/devcontainer.json deleted
-14
@@ -1,14 +0,0 @@
1 -{
2 - "image": "netdata/devenv",
3 - "extensions":[
4 - "golang.go",
5 - "exiasr.hadolint",
6 - "ms-python.python",
7 - "timonwong.shellcheck",
8 - "redhat.vscode-yaml",
9 - "dbaeumer.vscode-eslint",
10 - "jasonnutter.search-node-modules",
11 - "mgmcdermott.vscode-language-babel",
12 - ],
13 - "forwardPorts": [19999]
14 -}
\ No newline at end of file
.gitattributes deleted
-3
@@ -1,3 +0,0 @@
1 -*.c diff=cpp
2 -*.h diff=cpp
3 -*.ksy.in linguist-language=ksy
.github/labeler.yml
+1 -1
@@ -277,7 +277,7 @@ area/tests:
277 - any-glob-to-any-file:
278 - tests/**
279 - src/daemon/unit_test*
280 - - coverity-scan.sh
280 + - packaging/utils/coverity-scan.sh
281
282 area/web:
283 - any:
.github/workflows/coverity.yml
+2 -2
@@ -7,7 +7,7 @@ on:
7 pull_request:
8 paths:
9 - .github/workflows/coverity.yml
10 - - coverity-scan.sh
10 + - packaging/utils/coverity-scan.sh
11 env:
12 DISABLE_TELEMETRY: 1
13 concurrency:
@@ -42,7 +42,7 @@ jobs:
42 COVERITY_SCAN_TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
43 COVERITY_SCAN_SUBMIT_MAIL: ${{ secrets.COVERITY_SCAN_SUBMIT_MAIL }}
44 run: |
45 - bash -x ./coverity-scan.sh --with-install
45 + bash -x ./packaging/utils/coverity-scan.sh --with-install
46 - name: Failure Notification
47 uses: rtCamp/action-slack-notify@v2
48 env:
CMakeLists.txt
+2 -2
@@ -1522,7 +1522,7 @@ set_source_files_properties(JudyLTables.c PROPERTIES COMPILE_OPTIONS "-I${CMAKE_
1522 # build libnetdata
1523 #
1524
1525 -include(systemd.cmake)
1525 +include(packaging/cmake/systemd.cmake)
1526
1527 add_library(libnetdata STATIC ${LIBNETDATA_FILES})
1528
@@ -2229,7 +2229,7 @@ if (NOT NETDATA_USER)
2229 endif()
2230 set(VERSION "${GIT_DESCRIBE_OUTPUT}")
2231
2232 -configure_file(config.cmake.h.in config.h)
2232 +configure_file(packaging/cmake/config.cmake.h.in config.h)
2233
2234 #
2235 # install
Dockerfile.test deleted
-74
@@ -1,74 +0,0 @@
1 -# NOTE: This Dockerfile (`Dockerfile.test`) should only be used for dev/testing
2 -# and *NOT* in production. Use the top-level `Dockerfile` which points to
3 -# `./packaging/docker/Dockerfile`.
4 -#
5 -# TODO: Create a netdata/package-builder:alpine9
6 -#FROM netdata/package-builder:alpine AS build
7 -FROM alpine:3.9 AS build
8 -
9 -# Install Dependencies
10 -RUN apk add --no-cache -U alpine-sdk bash curl libuv-dev zlib-dev \
11 - util-linux-dev libmnl-dev gcc make git autoconf \
12 - automake pkgconfig python logrotate openssl-dev \
13 - cmake
14 -
15 -# Pass optional ./netdata-installer.sh args with --build-arg INSTALLER_ARGS=...
16 -ARG INSTALLER_ARGS=""
17 -
18 -# Copy Sources
19 -# Can also bind-mount sources with:
20 -# $ docker run -v $PWD:/netdata
21 -
22 -WORKDIR /netdata
23 -COPY . .
24 -
25 -# Build
26 -RUN ./netdata-installer.sh --dont-wait --dont-start-it --disable-go "${INSTALLER_ARGS}"
27 -
28 -FROM alpine:3.9 AS runtime
29 -
30 -# Install runtime dependencies
31 -RUN apk --no-cache -U add curl bash libuv zlib util-linux libmnl python
32 -
33 -# Create netdata user/group
34 -RUN addgroup -S netdata && \
35 - adduser -D -S -h /var/empty -s /bin/false -G netdata netdata
36 -
37 -# Copy binary from build layer
38 -COPY --from=build /usr/sbin/netdata /usr/sbin/netdata
39 -
40 -# Copy configuration files from build layer
41 -COPY --from=build /etc/netdata/ /etc/netdata/
42 -COPY --from=build /usr/lib/netdata/ /usr/lib/netdata/
43 -
44 -# Copy assets from build layer
45 -COPY --from=build /usr/share/netdata/ /usr/share/netdata/
46 -
47 -# Create some directories netdata needs
48 -RUN mkdir -p \
49 - /etc/netdata \
50 - /var/log/netdata \
51 - /var/lib/netdata \
52 - /var/cache/netdata \
53 - /usr/lib/netdata/conf.d \
54 - /usr/libexec/netdata/plugins.d
55 -
56 -# Fix permissions/ownerships
57 -RUN chown -R netdata:netdata \
58 - /etc/netdata/ \
59 - /usr/lib/netdata/ \
60 - /usr/share/netdata/ \
61 - /var/log/netdata \
62 - /var/lib/netdata \
63 - /var/cache/netdata \
64 - /usr/libexec/netdata
65 -
66 -VOLUME /etc/netdata
67 -VOLUME /var/lib/netdata
68 -VOLUME /var/log/netdata
69 -
70 -EXPOSE 19999/tcp
71 -
72 -USER netdata
73 -
74 -CMD ["/usr/sbin/netdata", "-D"]
build_external/README.md deleted
-131
@@ -1,131 +0,0 @@
1 -<!--
2 -title: "External build-system"
3 -custom_edit_url: https://github.com/netdata/netdata/edit/master/build_external/README.md
4 -sidebar_label: "External build-system"
5 -learn_status: "Published"
6 -learn_topic_type: "References"
7 -learn_rel_path: "Installation/Package maintainers"
8 --->
9 -
10 -# External build-system
11 -
12 -This wraps the build-system in Docker so that the host system and the target system are
13 -decoupled. This allows:
14 -
15 -- Cross-compilation (e.g. linux development from macOS)
16 -- Cross-distro (e.g. using CentOS user-land while developing on Debian)
17 -- Multi-host scenarios (e.g. parent-child configurations)
18 -- Bleeding-edge scenarios (e.g. using the ACLK (**currently for internal-use only**))
19 -
20 -The advantage of these scenarios is that they allow **reproducible** builds and testing
21 -for developers. This is the first iteration of the build-system to allow the team to use
22 -it and get used to it.
23 -
24 -For configurations that involve building and running the agent alone, we still use
25 -`docker-compose` for consistency with more complex configurations. The more complex
26 -configurations allow the agent to be run in conjunction with parts of the cloud
27 -infrastructure (these parts of the code are not public), or with external brokers
28 -(such as VerneMQ for MQTT), or with other external tools (such as TSDB to allow the agent to
29 -export metrics). Note: no external TSDB scenarios are available in the first iteration,
30 -they will be added in subsequent iterations.
31 -
32 -This differs from the packaging dockerfiles as it designed to be used for local development.
33 -The main difference is that these files are designed to support incremental compilation in
34 -the following way:
35 -
36 -1. The initial build should be performed using `bin/clean-install.sh` to create a docker
37 - image with the agent built from the source tree and installed into standard system paths
38 - using `netdata-installer.sh`. In addition to the steps performed by the standard packaging
39 - builds a manifest is created to allow subsequent builds to be made incrementally using
40 - `make` inside the container. Any libraries that are required for 'bleeding-edge' development
41 - are added on top of the standard install.
42 -2. When the `bin/make-install.sh` script is used the docker container will be updated with
43 - a sanitized version of the current build-tree. The manifest will be used to line up the
44 - state of the incoming docker cache with `make`'s view of the file-system according to the
45 - manifest. This means the `make install` inside the container will only rebuild changes
46 - since the last time the disk image was created.
47 -
48 -The exact improvement on the compile-cycle depends on the speed of the network connection
49 -to pull the netdata dependencies, but should shrink the time considerably. For example,
50 -on a macbook pro the initial install takes about 1min + network delay [Note: there is
51 -something bad happening with the standard installer at the end of the container build as
52 -it tries to kill the running agent - this is very slow and bad] and the incremental
53 -step only takes 15s. On a debian host with a fast network this reduces 1m30 -> 13s.
54 -
55 -## Examples
56 -
57 -1. Simple cross-compilation / cross-distro builds.
58 -
59 -```bash
60 -build_external/bin/clean-install.sh arch current
61 -docker run -it --rm arch_current_dev
62 -echo >>daemon/main.c # Simulate edit by touching file
63 -build_external/bin/make-install.sh arch current
64 -docker run -it --rm arch_current_dev
65 -```
66 -
67 -Currently there is no detection of when the installer needs to be rerun (really this is
68 -when the `autoreconf` / `configure` step must be rerun). Netdata was not written with
69 -multi-stage builds in mind and we need to work out how to do this in the future. For now
70 -it is up to you to know when you need to rerun the clean build step.
71 -
72 -```bash
73 -build_external/bin/clean-install.sh arch current
74 -build_external/bin/clean-install.sh ubuntu 19.10
75 -docker run -it --rm arch_current_dev
76 -echo >>daemon/main.c # Simulate edit by touching file
77 -build_external/bin/make-install.sh arch current
78 -docker run -it --rm arch_current_dev
79 -echo >>daemon/daemon.c # Simulate second edit step
80 -build_external/bin/make-install.sh arch current # Observe a single file is rebuilt
81 -build_external/bin/make-install.sh arch current # Observe both files are rebuilt
82 -```
83 -
84 -The state of the build in the two containers is independent.
85 -
86 -2. Single agent config in docker-compose
87 -
88 -This functions the same as the previous example but is wrapped in docker-compose to
89 -allow injection into more complex test configurations.
90 -
91 -```bash
92 -Distro=debian Version=10 docker-compose -f projects/only-agent/docker-compose.yml up
93 -```
94 -
95 -Note: it is possible to run multiple copies of the agent using the `--scale` option for
96 -`docker-compose up`.
97 -
98 -```bash
99 -Distro=debian Version=10 docker-compose -f projects/only-agent/docker-compose.yml up --scale agent=3
100 -```
101 -
102 -3. A simple parent-child scenario
103 -
104 -```bash
105 -# Need to call clean-install on the configs used in the parent-child containers
106 -docker-compose -f parent-child/docker-compose.yml up --scale agent_child1=2
107 -```
108 -
109 -Note: this is not production ready yet, but it is left in so that we can see how it behaves
110 -and improve it. Currently it produces the following problems:
111 - * Only the base-configuration in the compose without scaling works.
112 - * The containers are hard-coded in the compose.
113 - * There is no way to separate the agent configurations, so running multiple agent child nodes with the same GUID kills
114 - the parent which exits with a fatal condition.
115 -
116 -4. The ACLK
117 -
118 -This is for internal use only as it requires access to a private repo. Clone the vernemq-docker
119 -repo and follow the instructions within to build an image called `vernemq`.
120 -
121 -```bash
122 -build_external/bin/clean-install.sh arch current # Only needed first time
123 -docker-compose -f build_external/projects/aclk-testing/vernemq-compose.yml -f build_external/projects/aclk-testing/agent-compose.yml up --build
124 -```
125 -
126 -Notes:
127 -* We are currently limited to arch because of restrictions on libwebsockets
128 -* There is not yet a good way to configure the target agent container from the docker-compose command line.
129 -* Several other containers should be in this compose (a paho client, tshark etc).
130 -
131 -
build_external/bin/clean-install.sh deleted
-54
@@ -1,54 +0,0 @@
1 -#!/usr/bin/env bash
2 -
3 -DISTRO="$1"
4 -VERSION="$2"
5 -BuildBase="$(cd "$(dirname "$0")" && cd .. && pwd)"
6 -
7 -# This is temporary - not all of the package-builder images from the helper-images repo
8 -# are available on Docker Hub. When everything falls under the "happy case" below this
9 -# can be deleted in a future iteration. This is written in a weird way for portability,
10 -# can't rely on bash 4.0+ to allow case fall-through with ;&
11 -
12 -if cat <<HAPPY_CASE | grep "$DISTRO-$VERSION"
13 - opensuse-15.1
14 - fedora-29
15 - debian-9
16 - debian-8
17 - fedora-30
18 - opensuse-15.0
19 - ubuntu-19.04
20 - centos-7
21 - fedora-31
22 - ubuntu-16.04
23 - ubuntu-18.04
24 - ubuntu-19.10
25 - debian-10
26 - centos-8
27 - ubuntu-1804
28 - ubuntu-1904
29 - ubuntu-1910
30 - debian-stretch
31 - debian-jessie
32 - debian-buster
33 -HAPPY_CASE
34 -then
35 - docker build -f "$BuildBase/clean-install.Dockerfile" -t "${DISTRO}_${VERSION}_dev" "$BuildBase/.." \
36 - --build-arg "DISTRO=$DISTRO" --build-arg "VERSION=$VERSION" \
37 - --build-arg EXTRA_CFLAGS="-DACLK_SSL_ALLOW_SELF_SIGNED"
38 -else
39 - case "$DISTRO-$VERSION" in
40 - arch-current)
41 - docker build -f "$BuildBase/clean-install-arch.Dockerfile" -t "${DISTRO}_${VERSION}_dev" "$BuildBase/.." \
42 - --build-arg "DISTRO=$DISTRO" --build-arg "VERSION=$VERSION" \
43 - --build-arg EXTRA_CFLAGS="-DACLK_SSL_ALLOW_SELF_SIGNED" # --no-cache
44 - ;;
45 - arch-extras) # Add valgrind to the container
46 - docker build -f "$BuildBase/clean-install-arch-extras.Dockerfile" -t "${DISTRO}_${VERSION}_dev" "$BuildBase/.." \
47 - --build-arg "DISTRO=$DISTRO" --build-arg "VERSION=$VERSION" \
48 - --build-arg EXTRA_CFLAGS="-DACLK_SSL_ALLOW_SELF_SIGNED" # --no-cache
49 - ;;
50 - *)
51 - echo "Unknown $DISTRO-$VERSION"
52 - ;;
53 - esac
54 -fi
build_external/bin/make-install.sh deleted
-8
@@ -1,8 +0,0 @@
1 -#!/usr/bin/env bash
2 -
3 -DISTRO="$1"
4 -VERSION="$2"
5 -BuildBase="$(cd "$(dirname "$0")" && cd .. && pwd)"
6 -
7 -docker build -f "$BuildBase/make-install.Dockerfile" -t "${DISTRO}_${VERSION}_dev:latest" "$BuildBase/.." \
8 - --build-arg "DISTRO=${DISTRO}" --build-arg "VERSION=${VERSION}"
build_external/clean-install-arch-debug.Dockerfile deleted
-63
@@ -1,63 +0,0 @@
1 -FROM archlinux/base:latest
2 -
3 -# There is some redundancy between this file and the archlinux Dockerfile in the helper images
4 -# repo and also with the clean-install.Dockerfile. Once the help image is available on Docker
5 -# Hub this file can be deleted.
6 -RUN echo sdlsjdkls
7 -RUN pacman -Syyu --noconfirm
8 -RUN pacman --noconfirm --needed -S autoconf \
9 - autoconf-archive \
10 - autogen \
11 - automake \
12 - gcc \
13 - make \
14 - git \
15 - libuv \
16 - lz4 \
17 - netcat \
18 - openssl \
19 - pkgconfig \
20 - python \
21 - libvirt \
22 - cmake \
23 - valgrind \
24 - gdb
25 -
26 -ARG EXTRA_CFLAGS
27 -COPY . /opt/netdata/source
28 -WORKDIR /opt/netdata/source
29 -
30 -RUN git config --global user.email "root@container"
31 -RUN git config --global user.name "Fake root"
32 -
33 -# RUN make distclean -> not safe if tree state changed on host since last config
34 -# Kill everything that is not in .gitignore preserving any fresh changes, i.e. untracked changes will be
35 -# deleted but local changes to tracked files will be preserved.
36 -RUN if git status --porcelain | grep '^[MADRC]'; then \
37 - git stash && git clean -dxf && (git stash apply || true) \
38 - else \
39 - git clean -dxf ; \
40 - fi
41 -
42 -# Not everybody is updating distclean properly - fix.
43 -RUN find . -name '*.Po' -exec rm \{\} \;
44 -RUN rm -rf autom4te.cache
45 -RUN rm -rf .git/
46 -RUN find . -type f >/opt/netdata/manifest
47 -
48 -RUN CFLAGS="-Og -g -ggdb -Wall -Wextra -Wformat-signedness -DNETDATA_INTERNAL_CHECKS=1\
49 - -DNETDATA_VERIFY_LOCKS=1 ${EXTRA_CFLAGS}" ./netdata-installer.sh --require-cloud --disable-lto
50 -
51 -RUN ln -sf /dev/stdout /var/log/netdata/access.log && \
52 - ln -sf /dev/stdout /var/log/netdata/debug.log && \
53 - ln -sf /dev/stderr /var/log/netdata/error.log && \
54 - ln -sf /dev/stdout /var/log/netdata/fluentbit.log
55 -
56 -RUN printf >/opt/netdata/source/gdb_batch '\
57 -set args -D \n\
58 -handle SIG32 nostop \n\
59 -run \n\
60 -bt'
61 -
62 -#CMD ["/usr/sbin/valgrind", "--leak-check=full", "/usr/sbin/netdata", "-D"]
63 -CMD ["/usr/bin/gdb", "-x", "/opt/netdata/source/gdb_batch", "/usr/sbin/netdata"]
build_external/clean-install-arch-extras.Dockerfile deleted
-59
@@ -1,59 +0,0 @@
1 -FROM archlinux/base:latest
2 -
3 -# There is some redundancy between this file and the archlinux Dockerfile in the helper images
4 -# repo and also with the clean-install.Dockerfile. Once the help image is available on Docker
5 -# Hub this file can be deleted.
6 -RUN echo sdlsjdkls
7 -RUN pacman -Syyu --noconfirm
8 -RUN pacman --noconfirm --needed -S autoconf \
9 - autoconf-archive \
10 - autogen \
11 - automake \
12 - gcc \
13 - make \
14 - git \
15 - libuv \
16 - lz4 \
17 - netcat \
18 - openssl \
19 - pkgconfig \
20 - python \
21 - libvirt \
22 - cmake \
23 - valgrind \
24 - gdb
25 -
26 -ARG EXTRA_CFLAGS
27 -COPY . /opt/netdata/source
28 -WORKDIR /opt/netdata/source
29 -
30 -RUN git config --global user.email "root@container"
31 -RUN git config --global user.name "Fake root"
32 -
33 -# RUN make distclean -> not safe if tree state changed on host since last config
34 -# Kill everything that is not in .gitignore preserving any fresh changes, i.e. untracked changes will be
35 -# deleted but local changes to tracked files will be preserved.
36 -RUN if git status --porcelain | grep '^[MADRC]'; then \
37 - git stash && git clean -dxf && (git stash apply || true) \
38 - else \
39 - git clean -dxf ; \
40 - fi
41 -
42 -# Not everybody is updating distclean properly - fix.
43 -RUN find . -name '*.Po' -exec rm \{\} \;
44 -RUN rm -rf autom4te.cache
45 -RUN rm -rf .git/
46 -RUN find . -type f >/opt/netdata/manifest
47 -
48 -RUN CFLAGS="-Og -g -ggdb -Wall -Wextra -Wformat-signedness -DNETDATA_INTERNAL_CHECKS=1\
49 - -DNETDATA_VERIFY_LOCKS=1 ${EXTRA_CFLAGS}" ./netdata-installer.sh --require-cloud --disable-lto
50 -
51 -RUN ln -sf /dev/stdout /var/log/netdata/access.log && \
52 - ln -sf /dev/stdout /var/log/netdata/debug.log && \
53 - ln -sf /dev/stderr /var/log/netdata/error.log && \
54 - ln -sf /dev/stdout /var/log/netdata/fluentbit.log
55 -
56 -RUN rm /var/lib/netdata/registry/netdata.public.unique.id
57 -
58 -CMD ["/usr/sbin/valgrind", "--leak-check=full", "/usr/sbin/netdata", "-D"]
59 -
build_external/clean-install-arch.Dockerfile deleted
-55
@@ -1,55 +0,0 @@
1 -FROM archlinux/base:latest
2 -
3 -# There is some redundancy between this file and the archlinux Dockerfile in the helper images
4 -# repo and also with the clean-install.Dockerfile. Once the help image is available on Docker
5 -# Hub this file can be deleted.
6 -
7 -RUN pacman -Sy
8 -RUN pacman --noconfirm --needed -S autoconf \
9 - autoconf-archive \
10 - autogen \
11 - automake \
12 - gcc \
13 - make \
14 - git \
15 - libuv \
16 - lz4 \
17 - netcat \
18 - openssl \
19 - pkgconfig \
20 - python \
21 - libvirt \
22 - cmake
23 -
24 -ARG ACLK=no
25 -ARG EXTRA_CFLAGS
26 -COPY . /opt/netdata/source
27 -WORKDIR /opt/netdata/source
28 -
29 -RUN git config --global user.email "root@container"
30 -RUN git config --global user.name "Fake root"
31 -
32 -# RUN make distclean -> not safe if tree state changed on host since last config
33 -# Kill everything that is not in .gitignore preserving any fresh changes, i.e. untracked changes will be
34 -# deleted but local changes to tracked files will be preserved.
35 -RUN if git status --porcelain | grep '^[MADRC]'; then \
36 - git stash && git clean -dxf && (git stash apply || true) \
37 - else \
38 - git clean -dxf ; \
39 - fi
40 -
41 -# Not everybody is updating distclean properly - fix.
42 -RUN find . -name '*.Po' -exec rm \{\} \;
43 -RUN rm -rf autom4te.cache
44 -RUN rm -rf .git/
45 -RUN find . -type f >/opt/netdata/manifest
46 -
47 -RUN CFLAGS="-O1 -ggdb -Wall -Wextra -Wformat-signedness -DNETDATA_INTERNAL_CHECKS=1\
48 - -DNETDATA_VERIFY_LOCKS=1 ${EXTRA_CFLAGS}" ./netdata-installer.sh --disable-lto
49 -
50 -RUN ln -sf /dev/stdout /var/log/netdata/access.log && \
51 - ln -sf /dev/stdout /var/log/netdata/debug.log && \
52 - ln -sf /dev/stderr /var/log/netdata/error.log && \
53 - ln -sf /dev/stdout /var/log/netdata/fluentbit.log
54 -
55 -CMD ["/usr/sbin/netdata", "-D"]
build_external/clean-install.Dockerfile deleted
-40
@@ -1,40 +0,0 @@
1 -ARG DISTRO=arch
2 -ARG VERSION=current
3 -FROM netdata/package-builders:${DISTRO}${VERSION}
4 -
5 -ARG ACLK=no
6 -ARG EXTRA_CFLAGS
7 -
8 -COPY . /opt/netdata/source
9 -WORKDIR /opt/netdata/source
10 -
11 -RUN git config --global user.email "root@container"
12 -RUN git config --global user.name "Fake root"
13 -
14 -# RUN make distclean -> not safe if tree state changed on host since last config
15 -# Kill everything that is not in .gitignore preserving any fresh changes, i.e. untracked changes will be
16 -# deleted but local changes to tracked files will be preserved.
17 -RUN if git status --porcelain | grep '^[MADRC]'; then \
18 - git stash && git clean -dxf && (git stash apply || true) \
19 - else \
20 - git clean -dxf ; \
21 - fi
22 -
23 -# Not everybody is updating distclean properly - fix.
24 -RUN find . -name '*.Po' -exec rm \{\} \;
25 -RUN rm -rf autom4te.cache
26 -RUN rm -rf .git/
27 -RUN find . -type f >/opt/netdata/manifest
28 -
29 -RUN CFLAGS="-O1 -ggdb -Wall -Wextra -Wformat-signedness -DNETDATA_INTERNAL_CHECKS=1\
30 - -DNETDATA_VERIFY_LOCKS=1 ${EXTRA_CFLAGS}" ./netdata-installer.sh --disable-lto
31 -
32 -RUN ln -sf /dev/stdout /var/log/netdata/access.log && \
33 - ln -sf /dev/stdout /var/log/netdata/debug.log && \
34 - ln -sf /dev/stderr /var/log/netdata/error.log && \
35 - ln -sf /dev/stdout /var/log/netdata/fluentbit.log
36 -
37 -RUN rm /var/lib/netdata/registry/netdata.public.unique.id
38 -
39 -CMD ["/usr/sbin/netdata","-D"]
40 -ENTRYPOINT []
build_external/make-install.Dockerfile deleted
-11
@@ -1,11 +0,0 @@
1 -ARG DISTRO=arch
2 -ARG VERSION=current
3 -
4 -FROM ${DISTRO}_${VERSION}_dev:latest
5 -
6 -# Sanitize new source tree by removing config-time state
7 -COPY . /opt/netdata/latest
8 -WORKDIR /opt/netdata/latest
9 -RUN while read -r f; do cp -p "$f" "../source/$f"; done <../manifest
10 -WORKDIR /opt/netdata/source
11 -RUN make install
build_external/scenarios/aclk-testing/agent-compose.yml deleted
-18
@@ -1,18 +0,0 @@
1 -version: '3.3'
2 -services:
3 - agent_parent:
4 - build:
5 - context: ../../..
6 - dockerfile: build_external/make-install.Dockerfile
7 - args:
8 - - DISTRO=arch
9 - - VERSION=current
10 - image: arch_current_dev:latest
11 - command: >
12 - sh -c "echo -n 00000000-0000-0000-0000-000000000000 >/var/lib/netdata/cloud.d/claimed_id &&
13 - echo '[agent_cloud_link]' >>/etc/netdata/netdata.conf &&
14 - echo ' agent cloud link hostname = vernemq' >>/etc/netdata/netdata.conf &&
15 - echo ' agent cloud link port = 9002' >>/etc/netdata/netdata.conf &&
16 - /usr/sbin/netdata -D"
17 - ports:
18 - - 20000:19999
build_external/scenarios/aclk-testing/agent-valgrind-compose.yml deleted
-18
@@ -1,18 +0,0 @@
1 -version: '3.3'
2 -services:
3 - agent_parent:
4 - build:
5 - context: ../../..
6 - dockerfile: build_external/make-install.Dockerfile
7 - args:
8 - - DISTRO=arch
9 - - VERSION=extras
10 - image: arch_extras_dev:latest
11 - command: >
12 - sh -c "echo -n 00000000-0000-0000-0000-000000000000 >/var/lib/netdata/cloud.d/claimed_id &&
13 - echo '[agent_cloud_link]' >>/etc/netdata/netdata.conf &&
14 - echo ' agent cloud link hostname = vernemq' >>/etc/netdata/netdata.conf &&
15 - echo ' agent cloud link port = 9002' >>/etc/netdata/netdata.conf &&
16 - /usr/sbin/valgrind --leak-check=full /usr/sbin/netdata -D -W debug_flags=0x200000000"
17 - ports:
18 - - 20000:19999
build_external/scenarios/aclk-testing/agent_netdata.conf deleted
-7155
@@ -1,7155 +0,0 @@
1 -# netdata configuration
2 -#
3 -# You can download the latest version of this file, using:
4 -#
5 -# wget -O /etc/netdata/netdata.conf http://localhost:19999/netdata.conf
6 -# or
7 -# curl -o /etc/netdata/netdata.conf http://localhost:19999/netdata.conf
8 -#
9 -# You can uncomment and change any of the options below.
10 -# The value shown in the commented settings, is the default value.
11 -#
12 -
13 -# global netdata configuration
14 -
15 -[global]
16 - # glibc malloc arena max for plugins = 1
17 - # glibc malloc arena max for netdata = 1
18 - # hostname = b073e16793c4
19 - # history = 3996
20 - # update every = 1
21 - # memory mode = dbengine
22 - # page cache size = 32
23 - # dbengine disk space = 256
24 - # host access prefix =
25 - # memory deduplication (ksm) = yes
26 - # timezone = Etc/UTC
27 - # run as user = netdata
28 - # OOM score = 1000
29 - # process scheduling policy = idle
30 - # pthread stack size = 8388608
31 - # cleanup obsolete charts after seconds = 3600
32 - # gap when lost iterations above = 1
33 - # cleanup orphan hosts after seconds = 3600
34 - # delete obsolete charts files = yes
35 - # delete orphan hosts files = yes
36 - # enable zero metrics = no
37 -
38 -[web]
39 - # ssl key = /etc/netdata/ssl/key.pem
40 - # ssl certificate = /etc/netdata/ssl/cert.pem
41 - # ses max window = 15
42 - # des max window = 15
43 - # mode = static-threaded
44 - # listen backlog = 4096
45 - # default port = 19999
46 - # bind to = *
47 - # disconnect idle clients after seconds = 60
48 - # timeout for first request = 60
49 - # accept a streaming request every seconds = 0
50 - # respect do not track policy = no
51 - # x-frame-options response header =
52 - # allow connections from = localhost *
53 - # allow connections by dns = heuristic
54 - # allow dashboard from = localhost *
55 - # allow dashboard by dns = heuristic
56 - # allow badges from = *
57 - # allow badges by dns = heuristic
58 - # allow streaming from = *
59 - # allow streaming by dns = heuristic
60 - # allow netdata.conf from = localhost fd* 10.* 192.168.* 172.16.* 172.17.* 172.18.* 172.19.* 172.20.* 172.21.* 172.22.* 172.23.* 172.24.* 172.25.* 172.26.* 172.27.* 172.28.* 172.29.* 172.30.* 172.31.*
61 - # allow netdata.conf by dns = no
62 - # allow management from = localhost
63 - # allow management by dns = heuristic
64 - # enable gzip compression = yes
65 - # gzip compression strategy = default
66 - # gzip compression level = 3
67 - # web server threads = 6
68 - # web server max sockets = 262144
69 -
70 -[plugins]
71 - # checks = no
72 - # proc = yes
73 - # diskspace = yes
74 - # cgroups = yes
75 - # tc = yes
76 - # idlejitter = yes
77 - # enable running new plugins = yes
78 - # check for new plugins every = 60
79 - # slabinfo = no
80 - # go.d = yes
81 - # apps = yes
82 - # charts.d = yes
83 - # python.d = yes
84 - # perf = yes
85 - # ioping = yes
86 -
87 -[health]
88 - # silencers file = /var/lib/netdata/health.silencers.json
89 - # enabled = yes
90 - # default repeat warning = never
91 - # default repeat critical = never
92 - # in memory max health log entries = 1000
93 - # script to execute on alarm = /usr/libexec/netdata/plugins.d/alarm-notify.sh
94 - # rotate log every lines = 2000
95 - # run at least every seconds = 10
96 - # postpone alarms during hibernation for seconds = 60
97 -
98 -[registry]
99 - # enabled = no
100 - # registry db directory = /var/lib/netdata/registry
101 - # netdata unique id file = /var/lib/netdata/registry/netdata.public.unique.id
102 - # registry db file = /var/lib/netdata/registry/registry.db
103 - # registry log file = /var/lib/netdata/registry/registry-log.db
104 - # registry save db every new entries = 1000000
105 - # registry expire idle persons days = 365
106 - # registry domain =
107 - # registry to announce = https://registry.my-netdata.io
108 - # registry hostname = b073e16793c4
109 - # verify browser cookies support = yes
110 - # max URL length = 1024
111 - # max URL name length = 50
112 - # netdata management api key file = /var/lib/netdata/netdata.api.key
113 - # allow from = *
114 - # allow by dns = heuristic
115 -
116 -[cloud]
117 - # cloud base url = https://netdata.cloud
118 -
119 -[statsd]
120 - # enabled = yes
121 - # update every (flushInterval) = 1
122 - # udp messages to process at once = 10
123 - # create private charts for metrics matching = *
124 - # max private charts allowed = 200
125 - # max private charts hard limit = 1000
126 - # private charts memory mode = dbengine
127 - # private charts history = 3996
128 - # decimal detail = 1000
129 - # disconnect idle tcp clients after seconds = 600
130 - # private charts hidden = no
131 - # histograms and timers percentile (percentThreshold) = 95.00000
132 - # add dimension for number of events received = yes
133 - # gaps on gauges (deleteGauges) = no
134 - # gaps on counters (deleteCounters) = no
135 - # gaps on meters (deleteMeters) = no
136 - # gaps on sets (deleteSets) = no
137 - # gaps on histograms (deleteHistograms) = no
138 - # gaps on timers (deleteTimers) = no
139 - # statsd server max TCP sockets = 262144
140 - # listen backlog = 4096
141 - # default port = 8125
142 - # bind to = udp:localhost tcp:localhost
143 -
144 -
145 -# per plugin configuration
146 -
147 -[plugin:cgroups]
148 - # cgroups plugin resource charts = yes
149 - # update every = 1
150 - # check for new cgroups every = 10
151 - # use unified cgroups = no
152 - # containers priority = 40000
153 - # enable cpuacct stat (total CPU) = auto
154 - # enable cpuacct usage (per core CPU) = auto
155 - # enable memory (used mem including cache) = auto
156 - # enable detailed memory = auto
157 - # enable memory limits fail count = auto
158 - # enable swap memory = auto
159 - # enable blkio bandwidth = auto
160 - # enable blkio operations = auto
161 - # enable blkio throttle bandwidth = auto
162 - # enable blkio throttle operations = auto
163 - # enable blkio queued operations = auto
164 - # enable blkio merged operations = auto
165 - # enable cpu pressure = auto
166 - # enable io some pressure = auto
167 - # enable io full pressure = auto
168 - # enable memory some pressure = auto
169 - # enable memory full pressure = auto
170 - # recheck zero blkio every iterations = 10
171 - # recheck zero memory failcnt every iterations = 10
172 - # recheck zero detailed memory every iterations = 10
173 - # enable systemd services = yes
174 - # enable systemd services detailed memory = no
175 - # report used memory without cache = yes
176 - # path to /sys/fs/cgroup/cpuacct = /sys/fs/cgroup/cpu,cpuacct
177 - # path to /sys/fs/cgroup/cpuset = /sys/fs/cgroup/cpuset
178 - # path to /sys/fs/cgroup/blkio = /sys/fs/cgroup/blkio
179 - # path to /sys/fs/cgroup/memory = /sys/fs/cgroup/memory
180 - # path to /sys/fs/cgroup/devices = /sys/fs/cgroup/devices
181 - # max cgroups to allow = 1000
182 - # max cgroups depth to monitor = 0
183 - # enable by default cgroups matching = !*/init.scope !/system.slice/run-*.scope *.scope /machine.slice/*.service !*/vcpu* !*/emulator !*.mount !*.partition !*.service !*.socket !*.slice !*.swap !*.user !/ !/docker !/libvirt !/lxc !/lxc/*/* !/lxc.monitor !/lxc.pivot !/lxc.payload !/machine !/qemu !/system !/systemd !/user *
184 - # search for cgroups in subpaths matching = !*/init.scope !*-qemu !*.libvirt-qemu !/init.scope !/system !/systemd !/user !/user.slice !/lxc/*/* !/lxc.monitor !/lxc.payload/*/* *
185 - # script to get cgroup names = /usr/libexec/netdata/plugins.d/cgroup-name.sh
186 - # script to get cgroup network interfaces = /usr/libexec/netdata/plugins.d/cgroup-network
187 - # run script to rename cgroups matching = !/ !*.mount !*.socket !*.partition /machine.slice/*.service !*.service !*.slice !*.swap !*.user !init.scope !*.scope/vcpu* !*.scope/emulator *.scope *docker* *lxc* *qemu* *kubepods* *.libvirt-qemu *
188 - # cgroups to match as systemd services = !/system.slice/*/*.service /system.slice/*.service
189 -
190 -[plugin:proc]
191 - # netdata server resources = yes
192 - # /proc/pagetypeinfo = no
193 - # /proc/stat = yes
194 - # /proc/uptime = yes
195 - # /proc/loadavg = yes
196 - # /proc/sys/kernel/random/entropy_avail = yes
197 - # /proc/pressure = yes
198 - # /proc/interrupts = yes
199 - # /proc/softirqs = yes
200 - # /proc/vmstat = yes
201 - # /proc/meminfo = yes
202 - # /sys/kernel/mm/ksm = yes
203 - # /sys/block/zram = yes
204 - # /sys/devices/system/edac/mc = yes
205 - # /sys/devices/system/node = yes
206 - # /proc/net/dev = yes
207 - # /proc/net/sockstat = yes
208 - # /proc/net/sockstat6 = yes
209 - # /proc/net/netstat = yes
210 - # /proc/net/snmp = yes
211 - # /proc/net/snmp6 = yes
212 - # /proc/net/sctp/snmp = yes
213 - # /proc/net/softnet_stat = yes
214 - # /proc/net/ip_vs/stats = yes
215 - # /proc/net/stat/conntrack = yes
216 - # /proc/net/stat/synproxy = yes
217 - # /proc/diskstats = yes
218 - # /proc/mdstat = yes
219 - # /proc/net/rpc/nfsd = yes
220 - # /proc/net/rpc/nfs = yes
221 - # /proc/spl/kstat/zfs/arcstats = yes
222 - # /sys/fs/btrfs = yes
223 - # ipc = yes
224 - # /sys/class/power_supply = yes
225 -
226 -[plugin:proc:diskspace]
227 - # remove charts of unmounted disks = yes
228 - # update every = 1
229 - # check for new mount points every = 15
230 - # exclude space metrics on paths = /proc/* /sys/* /var/run/user/* /run/user/* /snap/* /var/lib/docker/*
231 - # exclude space metrics on filesystems = *gvfs *gluster* *s3fs *ipfs *davfs2 *httpfs *sshfs *gdfs *moosefs fusectl autofs
232 - # space usage for all disks = auto
233 - # inodes usage for all disks = auto
234 -
235 -[plugin:tc]
236 - # script to run to get tc values = /usr/libexec/netdata/plugins.d/tc-qos-helper.sh
237 -
238 -[plugin:idlejitter]
239 - # loop time in ms = 20
240 -
241 -[plugin:go.d]
242 - # update every = 1
243 - # command options =
244 -
245 -[plugin:apps]
246 - # update every = 1
247 - # command options =
248 -
249 -[plugin:charts.d]
250 - # update every = 1
251 - # command options =
252 -
253 -[plugin:python.d]
254 - # update every = 1
255 - # command options =
256 -
257 -[plugin:perf]
258 - # update every = 1
259 - # command options =
260 -
261 -[plugin:ioping]
262 - # update every = 1
263 - # command options =
264 -
265 -[plugin:proc:/proc/stat]
266 - # cpu utilization = yes
267 - # per cpu core utilization = yes
268 - # cpu interrupts = yes
269 - # context switches = yes
270 - # processes started = yes
271 - # processes running = yes
272 - # keep per core files open = yes
273 - # keep cpuidle files open = yes
274 - # core_throttle_count = auto
275 - # package_throttle_count = no
276 - # cpu frequency = yes
277 - # cpu idle states = yes
278 - # core_throttle_count filename to monitor = /sys/devices/system/cpu/%s/thermal_throttle/core_throttle_count
279 - # package_throttle_count filename to monitor = /sys/devices/system/cpu/%s/thermal_throttle/package_throttle_count
280 - # scaling_cur_freq filename to monitor = /sys/devices/system/cpu/%s/cpufreq/scaling_cur_freq
281 - # time_in_state filename to monitor = /sys/devices/system/cpu/%s/cpufreq/stats/time_in_state
282 - # schedstat filename to monitor = /proc/schedstat
283 - # cpuidle name filename to monitor = /sys/devices/system/cpu/cpu%zu/cpuidle/state%zu/name
284 - # cpuidle time filename to monitor = /sys/devices/system/cpu/cpu%zu/cpuidle/state%zu/time
285 - # filename to monitor = /proc/stat
286 -
287 -[plugin:proc:diskspace:/]
288 - # space usage = auto
289 - # inodes usage = auto
290 -
291 -[plugin:proc:diskspace:/dev]
292 - # space usage = auto
293 - # inodes usage = auto
294 -
295 -[plugin:proc:diskspace:/sys/fs/cgroup]
296 - # space usage = no
297 - # inodes usage = no
298 -
299 -[plugin:proc:diskspace:/sys/fs/cgroup/systemd]
300 - # space usage = no
301 - # inodes usage = no
302 -
303 -[plugin:proc:diskspace:/sys/fs/cgroup/cpu,cpuacct]
304 - # space usage = no
305 - # inodes usage = no
306 -
307 -[plugin:proc:diskspace:/sys/fs/cgroup/devices]
308 - # space usage = no
309 - # inodes usage = no
310 -
311 -[plugin:proc:diskspace:/sys/fs/cgroup/blkio]
312 - # space usage = no
313 - # inodes usage = no
314 -
315 -[plugin:proc:diskspace:/sys/fs/cgroup/perf_event]
316 - # space usage = no
317 - # inodes usage = no
318 -
319 -[plugin:proc:diskspace:/sys/fs/cgroup/rdma]
320 - # space usage = no
321 - # inodes usage = no
322 -
323 -[plugin:proc:diskspace:/sys/fs/cgroup/net_cls,net_prio]
324 - # space usage = no
325 - # inodes usage = no
326 -
327 -[plugin:proc:diskspace:/sys/fs/cgroup/pids]
328 - # space usage = no
329 - # inodes usage = no
330 -
331 -[plugin:proc:diskspace:/sys/fs/cgroup/cpuset]
332 - # space usage = no
333 - # inodes usage = no
334 -
335 -[plugin:proc:diskspace:/sys/fs/cgroup/memory]
336 - # space usage = no
337 - # inodes usage = no
338 -
339 -[plugin:proc:diskspace:/sys/fs/cgroup/freezer]
340 - # space usage = no
341 - # inodes usage = no
342 -
343 -[plugin:proc:diskspace:/dev/shm]
344 - # space usage = auto
345 - # inodes usage = auto
346 -
347 -[plugin:proc:diskspace:/etc/resolv.conf]
348 - # space usage = no
349 - # inodes usage = no
350 -
351 -[plugin:proc:diskspace:/etc/hostname]
352 - # space usage = no
353 - # inodes usage = no
354 -
355 -[plugin:proc:diskspace:/etc/hosts]
356 - # space usage = no
357 - # inodes usage = no
358 -
359 -[plugin:proc:diskspace:/proc/asound]
360 - # space usage = no
361 - # inodes usage = no
362 -
363 -[plugin:proc:diskspace:/proc/acpi]
364 - # space usage = no
365 - # inodes usage = no
366 -
367 -[plugin:proc:diskspace:/proc/kcore]
368 - # space usage = no
369 - # inodes usage = no
370 -
371 -[plugin:proc:diskspace:/proc/keys]
372 - # space usage = no
373 - # inodes usage = no
374 -
375 -[plugin:proc:diskspace:/proc/timer_list]
376 - # space usage = no
377 - # inodes usage = no
378 -
379 -[plugin:proc:diskspace:/proc/sched_debug]
380 - # space usage = no
381 - # inodes usage = no
382 -
383 -[plugin:proc:diskspace:/sys/firmware]
384 - # space usage = no
385 - # inodes usage = no
386 -
387 -[plugin:proc:/proc/uptime]
388 - # filename to monitor = /proc/uptime
389 -
390 -[plugin:proc:/proc/loadavg]
391 - # filename to monitor = /proc/loadavg
392 - # enable load average = yes
393 - # enable total processes = yes
394 -
395 -[plugin:proc:/proc/sys/kernel/random/entropy_avail]
396 - # filename to monitor = /proc/sys/kernel/random/entropy_avail
397 -
398 -[plugin:proc:/proc/pressure]
399 - # base path of pressure metrics = /proc/pressure
400 - # enable cpu some pressure = yes
401 - # enable memory some pressure = yes
402 - # enable memory full pressure = yes
403 - # enable io some pressure = yes
404 - # enable io full pressure = yes
405 -
406 -[plugin:proc:/proc/interrupts]
407 - # interrupts per core = auto
408 - # filename to monitor = /proc/interrupts
409 -
410 -[plugin:proc:/proc/softirqs]
411 - # interrupts per core = auto
412 - # filename to monitor = /proc/softirqs
413 -
414 -[plugin:proc:/proc/vmstat]
415 - # swap i/o = auto
416 - # disk i/o = yes
417 - # memory page faults = yes
418 - # system-wide numa metric summary = auto
419 - # filename to monitor = /proc/vmstat
420 -
421 -[plugin:proc:/sys/devices/system/node]
422 - # directory to monitor = /sys/devices/system/node
423 - # enable per-node numa metrics = auto
424 -
425 -[plugin:proc:/proc/meminfo]
426 - # system ram = yes
427 - # system swap = auto
428 - # hardware corrupted ECC = auto
429 - # committed memory = yes
430 - # writeback memory = yes
431 - # kernel memory = yes
432 - # slab memory = yes
433 - # hugepages = auto
434 - # transparent hugepages = auto
435 - # filename to monitor = /proc/meminfo
436 -
437 -[plugin:proc:/sys/kernel/mm/ksm]
438 - # /sys/kernel/mm/ksm/pages_shared = /sys/kernel/mm/ksm/pages_shared
439 - # /sys/kernel/mm/ksm/pages_sharing = /sys/kernel/mm/ksm/pages_sharing
440 - # /sys/kernel/mm/ksm/pages_unshared = /sys/kernel/mm/ksm/pages_unshared
441 - # /sys/kernel/mm/ksm/pages_volatile = /sys/kernel/mm/ksm/pages_volatile
442 -
443 -[plugin:proc:/sys/devices/system/edac/mc]
444 - # directory to monitor = /sys/devices/system/edac/mc
445 -
446 -[plugin:proc:/proc/net/dev]
447 - # filename to monitor = /proc/net/dev
448 - # path to get virtual interfaces = /sys/devices/virtual/net/%s
449 - # path to get net device speed = /sys/class/net/%s/speed
450 - # path to get net device duplex = /sys/class/net/%s/duplex
451 - # path to get net device operstate = /sys/class/net/%s/operstate
452 - # enable new interfaces detected at runtime = auto
453 - # bandwidth for all interfaces = auto
454 - # packets for all interfaces = auto
455 - # errors for all interfaces = auto
456 - # drops for all interfaces = auto
457 - # fifo for all interfaces = auto
458 - # compressed packets for all interfaces = auto
459 - # frames, collisions, carrier counters for all interfaces = auto
460 - # disable by default interfaces matching = lo fireqos* *-ifb
461 - # refresh interface speed every seconds = 10
462 - # refresh interface duplex every seconds = 10
463 - # refresh interface operstate every seconds = 10
464 -
465 -[plugin:proc:/proc/net/dev:lo]
466 - # enabled = no
467 - # virtual = yes
468 -
469 -[plugin:proc:/proc/net/dev:eth0]
470 - # enabled = yes
471 - # virtual = yes
472 - # bandwidth = auto
473 - # packets = auto
474 - # errors = auto
475 - # drops = auto
476 - # fifo = auto
477 - # compressed = auto
478 - # events = auto
479 -
480 -[plugin:proc:/proc/net/sockstat]
481 - # ipv4 sockets = auto
482 - # ipv4 TCP sockets = auto
483 - # ipv4 TCP memory = auto
484 - # ipv4 UDP sockets = auto
485 - # ipv4 UDP memory = auto
486 - # ipv4 UDPLITE sockets = auto
487 - # ipv4 RAW sockets = auto
488 - # ipv4 FRAG sockets = auto
489 - # ipv4 FRAG memory = auto
490 - # update constants every = 60
491 - # filename to monitor = /proc/net/sockstat
492 -
493 -[plugin:proc:/proc/net/sockstat6]
494 - # ipv6 TCP sockets = auto
495 - # ipv6 UDP sockets = auto
496 - # ipv6 UDPLITE sockets = auto
497 - # ipv6 RAW sockets = auto
498 - # ipv6 FRAG sockets = auto
499 - # filename to monitor = /proc/net/sockstat6
500 -
501 -[plugin:proc:/proc/net/netstat]
502 - # bandwidth = auto
503 - # input errors = auto
504 - # multicast bandwidth = auto
505 - # broadcast bandwidth = auto
506 - # multicast packets = auto
507 - # broadcast packets = auto
508 - # ECN packets = auto
509 - # TCP reorders = auto
510 - # TCP SYN cookies = auto
511 - # TCP out-of-order queue = auto
512 - # TCP connection aborts = auto
513 - # TCP memory pressures = auto
514 - # TCP SYN queue = auto
515 - # TCP accept queue = auto
516 - # filename to monitor = /proc/net/netstat
517 -
518 -[plugin:proc:/proc/net/snmp]
519 - # ipv4 packets = auto
520 - # ipv4 fragments sent = auto
521 - # ipv4 fragments assembly = auto
522 - # ipv4 errors = auto
523 - # ipv4 TCP connections = auto
524 - # ipv4 TCP packets = auto
525 - # ipv4 TCP errors = auto
526 - # ipv4 TCP opens = auto
527 - # ipv4 TCP handshake issues = auto
528 - # ipv4 UDP packets = auto
529 - # ipv4 UDP errors = auto
530 - # ipv4 ICMP packets = auto
531 - # ipv4 ICMP messages = auto
532 - # ipv4 UDPLite packets = auto
533 - # filename to monitor = /proc/net/snmp
534 -
535 -[plugin:proc:/proc/net/snmp6]
536 - # ipv6 packets = auto
537 - # ipv6 fragments sent = auto
538 - # ipv6 fragments assembly = auto
539 - # ipv6 errors = auto
540 - # ipv6 UDP packets = auto
541 - # ipv6 UDP errors = auto
542 - # ipv6 UDPlite packets = auto
543 - # ipv6 UDPlite errors = auto
544 - # bandwidth = auto
545 - # multicast bandwidth = auto
546 - # broadcast bandwidth = auto
547 - # multicast packets = auto
548 - # icmp = auto
549 - # icmp redirects = auto
550 - # icmp errors = auto
551 - # icmp echos = auto
552 - # icmp group membership = auto
553 - # icmp router = auto
554 - # icmp neighbor = auto
555 - # icmp mldv2 = auto
556 - # icmp types = auto
557 - # ect = auto
558 - # filename to monitor = /proc/net/snmp6
559 -
560 -[plugin:proc:/proc/net/sctp/snmp]
561 - # established associations = auto
562 - # association transitions = auto
563 - # fragmentation = auto
564 - # packets = auto
565 - # packet errors = auto
566 - # chunk types = auto
567 - # filename to monitor = /proc/net/sctp/snmp
568 -
569 -[plugin:proc:/proc/net/softnet_stat]
570 - # softnet_stat per core = yes
571 - # filename to monitor = /proc/net/softnet_stat
572 -
573 -[plugin:proc:/proc/net/ip_vs_stats]
574 - # IPVS bandwidth = yes
575 - # IPVS connections = yes
576 - # IPVS packets = yes
577 - # filename to monitor = /proc/net/ip_vs_stats
578 -
579 -[plugin:proc:/proc/net/stat/nf_conntrack]
580 - # filename to monitor = /proc/net/stat/nf_conntrack
581 - # netfilter new connections = yes
582 - # netfilter connection changes = yes
583 - # netfilter connection expectations = yes
584 - # netfilter connection searches = yes
585 - # netfilter errors = yes
586 - # netfilter connections = yes
587 -
588 -[plugin:proc:/proc/sys/net/netfilter/nf_conntrack_max]
589 - # filename to monitor = /proc/sys/net/netfilter/nf_conntrack_max
590 - # read every seconds = 10
591 -
592 -[plugin:proc:/proc/net/stat/synproxy]
593 - # SYNPROXY entries = auto
594 - # SYNPROXY cookies = auto
595 - # SYNPROXY SYN received = auto
596 - # SYNPROXY connections reopened = auto
597 - # filename to monitor = /proc/net/stat/synproxy
598 -
599 -[plugin:proc:/proc/diskstats]
600 - # enable new disks detected at runtime = yes
601 - # performance metrics for physical disks = auto
602 - # performance metrics for virtual disks = auto
603 - # performance metrics for partitions = no
604 - # bandwidth for all disks = auto
605 - # operations for all disks = auto
606 - # merged operations for all disks = auto
607 - # i/o time for all disks = auto
608 - # queued operations for all disks = auto
609 - # utilization percentage for all disks = auto
610 - # backlog for all disks = auto
611 - # bcache for all disks = auto
612 - # bcache priority stats update every = 0
613 - # remove charts of removed disks = yes
614 - # path to get block device = /sys/block/%s
615 - # path to get block device bcache = /sys/block/%s/bcache
616 - # path to get virtual block device = /sys/devices/virtual/block/%s
617 - # path to get block device infos = /sys/dev/block/%lu:%lu/%s
618 - # path to device mapper = /dev/mapper
619 - # path to /dev/disk/by-label = /dev/disk/by-label
620 - # path to /dev/disk/by-id = /dev/disk/by-id
621 - # path to /dev/vx/dsk = /dev/vx/dsk
622 - # name disks by id = no
623 - # preferred disk ids = *
624 - # exclude disks = loop* ram*
625 - # filename to monitor = /proc/diskstats
626 - # performance metrics for disks with major 8 = yes
627 -
628 -[plugin:proc:/proc/diskstats:sda]
629 - # enable = yes
630 - # enable performance metrics = yes
631 - # bandwidth = auto
632 - # operations = auto
633 - # merged operations = auto
634 - # i/o time = auto
635 - # queued operations = auto
636 - # utilization percentage = auto
637 - # backlog = auto
638 -
639 -[plugin:proc:/proc/diskstats:sda1]
640 - # enable = yes
641 - # enable performance metrics = no
642 - # bandwidth = no
643 - # operations = no
644 - # merged operations = no
645 - # i/o time = no
646 - # queued operations = no
647 - # utilization percentage = no
648 - # backlog = no
649 -
650 -[plugin:proc:/proc/diskstats:sda2]
651 - # enable = yes
652 - # enable performance metrics = no
653 - # bandwidth = no
654 - # operations = no
655 - # merged operations = no
656 - # i/o time = no
657 - # queued operations = no
658 - # utilization percentage = no
659 - # backlog = no
660 -
661 -[plugin:proc:/proc/diskstats:sda3]
662 - # enable = yes
663 - # enable performance metrics = no
664 - # bandwidth = no
665 - # operations = no
666 - # merged operations = no
667 - # i/o time = no
668 - # queued operations = no
669 - # utilization percentage = no
670 - # backlog = no
671 -
672 -[plugin:proc:/proc/diskstats:sda4]
673 - # enable = yes
674 - # enable performance metrics = no
675 - # bandwidth = no
676 - # operations = no
677 - # merged operations = no
678 - # i/o time = no
679 - # queued operations = no
680 - # utilization percentage = no
681 - # backlog = no
682 -
683 -[plugin:proc:/proc/diskstats:sda5]
684 - # enable = yes
685 - # enable performance metrics = no
686 - # bandwidth = no
687 - # operations = no
688 - # merged operations = no
689 - # i/o time = no
690 - # queued operations = no
691 - # utilization percentage = no
692 - # backlog = no
693 -
694 -[plugin:proc:/proc/diskstats:sdb]
695 - # enable = yes
696 - # enable performance metrics = yes
697 - # bandwidth = auto
698 - # operations = auto
699 - # merged operations = auto
700 - # i/o time = auto
701 - # queued operations = auto
702 - # utilization percentage = auto
703 - # backlog = auto
704 -
705 -[plugin:proc:/proc/diskstats:sdb1]
706 - # enable = yes
707 - # enable performance metrics = no
708 - # bandwidth = no
709 - # operations = no
710 - # merged operations = no
711 - # i/o time = no
712 - # queued operations = no
713 - # utilization percentage = no
714 - # backlog = no
715 -
716 -[plugin:proc:/proc/diskstats:sdb2]
717 - # enable = yes
718 - # enable performance metrics = no
719 - # bandwidth = no
720 - # operations = no
721 - # merged operations = no
722 - # i/o time = no
723 - # queued operations = no
724 - # utilization percentage = no
725 - # backlog = no
726 -
727 -[plugin:proc:/proc/diskstats:sdb3]
728 - # enable = yes
729 - # enable performance metrics = no
730 - # bandwidth = no
731 - # operations = no
732 - # merged operations = no
733 - # i/o time = no
734 - # queued operations = no
735 - # utilization percentage = no
736 - # backlog = no
737 -
738 -[plugin:proc:/proc/diskstats:sdb4]
739 - # enable = yes
740 - # enable performance metrics = no
741 - # bandwidth = no
742 - # operations = no
743 - # merged operations = no
744 - # i/o time = no
745 - # queued operations = no
746 - # utilization percentage = no
747 - # backlog = no
748 -
749 -[plugin:proc:/proc/diskstats:sdb5]
750 - # enable = yes
751 - # enable performance metrics = no
752 - # bandwidth = no
753 - # operations = no
754 - # merged operations = no
755 - # i/o time = no
756 - # queued operations = no
757 - # utilization percentage = no
758 - # backlog = no
759 -
760 -[plugin:proc:/proc/mdstat]
761 - # faulty devices = yes
762 - # nonredundant arrays availability = yes
763 - # mismatch count = auto
764 - # disk stats = yes
765 - # operation status = yes
766 - # make charts obsolete = yes
767 - # filename to monitor = /proc/mdstat
768 - # mismatch_cnt filename to monitor = /sys/block/%s/md/mismatch_cnt
769 -
770 -[plugin:proc:/proc/net/rpc/nfsd]
771 - # filename to monitor = /proc/net/rpc/nfsd
772 -
773 -[plugin:proc:/proc/net/rpc/nfs]
774 - # filename to monitor = /proc/net/rpc/nfs
775 -
776 -[plugin:proc:/proc/spl/kstat/zfs/arcstats]
777 - # filename to monitor = /proc/spl/kstat/zfs/arcstats
778 -
779 -[plugin:proc:/sys/fs/btrfs]
780 - # path to monitor = /sys/fs/btrfs
781 - # check for btrfs changes every = 60
782 - # physical disks allocation = auto
783 - # data allocation = auto
784 - # metadata allocation = auto
785 - # system allocation = auto
786 -
787 -[plugin:proc:ipc]
788 - # message queues = yes
789 - # semaphore totals = yes
790 - # shared memory totals = yes
791 - # msg filename to monitor = /proc/sysvipc/msg
792 - # shm filename to monitor = /proc/sysvipc/shm
793 - # max dimensions in memory allowed = 50
794 -
795 -[plugin:proc:/sys/class/power_supply]
796 - # battery capacity = yes
797 - # battery charge = no
798 - # battery energy = no
799 - # power supply voltage = no
800 - # keep files open = auto
801 - # directory to monitor = /sys/class/power_supply
802 -
803 -
804 -# per chart configuration
805 -
806 -[system.idlejitter]
807 - history = 5
808 - # enabled = yes
809 - # cache directory = /var/cache/netdata/system.idlejitter
810 - # chart type = area
811 - # type = system
812 - # family = idlejitter
813 - # units = microseconds lost/s
814 - # context = system.idlejitter
815 - # priority = 800
816 - # name = system.idlejitter
817 - # title = CPU Idle Jitter
818 - # dim min name = min
819 - # dim min algorithm = absolute
820 - # dim min multiplier = 1
821 - # dim min divisor = 1
822 - # dim max name = max
823 - # dim max algorithm = absolute
824 - # dim max multiplier = 1
825 - # dim max divisor = 1
826 - # dim average name = average
827 - # dim average algorithm = absolute
828 - # dim average multiplier = 1
829 - # dim average divisor = 1
830 -
831 -[netdata.statsd_metrics]
832 - history = 5
833 - # enabled = yes
834 - # cache directory = /var/cache/netdata/netdata.statsd_metrics
835 - # chart type = stacked
836 - # type = netdata
837 - # family = statsd
838 - # units = metrics
839 - # context = netdata.statsd_metrics
840 - # priority = 132010
841 - # name = netdata.statsd_metrics
842 - # title = Metrics in the netdata statsd database
843 - # dim gauges name = gauges
844 - # dim gauges algorithm = absolute
845 - # dim gauges multiplier = 1
846 - # dim gauges divisor = 1
847 - # dim counters name = counters
848 - # dim counters algorithm = absolute
849 - # dim counters multiplier = 1
850 - # dim counters divisor = 1
851 - # dim timers name = timers
852 - # dim timers algorithm = absolute
853 - # dim timers multiplier = 1
854 - # dim timers divisor = 1
855 - # dim meters name = meters
856 - # dim meters algorithm = absolute
857 - # dim meters multiplier = 1
858 - # dim meters divisor = 1
859 - # dim histograms name = histograms
860 - # dim histograms algorithm = absolute
861 - # dim histograms multiplier = 1
862 - # dim histograms divisor = 1
863 - # dim sets name = sets
864 - # dim sets algorithm = absolute
865 - # dim sets multiplier = 1
866 - # dim sets divisor = 1
867 -
868 -[netdata.statsd_useful_metrics]
869 - history = 5
870 - # enabled = yes
871 - # cache directory = /var/cache/netdata/netdata.statsd_useful_metrics
872 - # chart type = stacked
873 - # type = netdata
874 - # family = statsd
875 - # units = metrics
876 - # context = netdata.statsd_useful_metrics
877 - # priority = 132010
878 - # name = netdata.statsd_useful_metrics
879 - # title = Useful metrics in the netdata statsd database
880 - # dim gauges name = gauges
881 - # dim gauges algorithm = absolute
882 - # dim gauges multiplier = 1
883 - # dim gauges divisor = 1
884 - # dim counters name = counters
885 - # dim counters algorithm = absolute
886 - # dim counters multiplier = 1
887 - # dim counters divisor = 1
888 - # dim timers name = timers
889 - # dim timers algorithm = absolute
890 - # dim timers multiplier = 1
891 - # dim timers divisor = 1
892 - # dim meters name = meters
893 - # dim meters algorithm = absolute
894 - # dim meters multiplier = 1
895 - # dim meters divisor = 1
896 - # dim histograms name = histograms
897 - # dim histograms algorithm = absolute
898 - # dim histograms multiplier = 1
899 - # dim histograms divisor = 1
900 - # dim sets name = sets
901 - # dim sets algorithm = absolute
902 - # dim sets multiplier = 1
903 - # dim sets divisor = 1
904 -
905 -[netdata.statsd_events]
906 - history = 5
907 - # enabled = yes
908 - # cache directory = /var/cache/netdata/netdata.statsd_events
909 - # chart type = stacked
910 - # type = netdata
911 - # family = statsd
912 - # units = events/s
913 - # context = netdata.statsd_events
914 - # priority = 132011
915 - # name = netdata.statsd_events
916 - # title = Events processed by the netdata statsd server
917 - # dim gauges name = gauges
918 - # dim gauges algorithm = incremental
919 - # dim gauges multiplier = 1
920 - # dim gauges divisor = 1
921 - # dim counters name = counters
922 - # dim counters algorithm = incremental
923 - # dim counters multiplier = 1
924 - # dim counters divisor = 1
925 - # dim timers name = timers
926 - # dim timers algorithm = incremental
927 - # dim timers multiplier = 1
928 - # dim timers divisor = 1
929 - # dim meters name = meters
930 - # dim meters algorithm = incremental
931 - # dim meters multiplier = 1
932 - # dim meters divisor = 1
933 - # dim histograms name = histograms
934 - # dim histograms algorithm = incremental
935 - # dim histograms multiplier = 1
936 - # dim histograms divisor = 1
937 - # dim sets name = sets
938 - # dim sets algorithm = incremental
939 - # dim sets multiplier = 1
940 - # dim sets divisor = 1
941 - # dim unknown name = unknown
942 - # dim unknown algorithm = incremental
943 - # dim unknown multiplier = 1
944 - # dim unknown divisor = 1
945 - # dim errors name = errors
946 - # dim errors algorithm = incremental
947 - # dim errors multiplier = 1
948 - # dim errors divisor = 1
949 -
950 -[netdata.statsd_reads]
951 - history = 5
952 - # enabled = yes
953 - # cache directory = /var/cache/netdata/netdata.statsd_reads
954 - # chart type = stacked
955 - # type = netdata
956 - # family = statsd
957 - # units = reads/s
958 - # context = netdata.statsd_reads
959 - # priority = 132012
960 - # name = netdata.statsd_reads
961 - # title = Read operations made by the netdata statsd server
962 - # dim tcp name = tcp
963 - # dim tcp algorithm = incremental
964 - # dim tcp multiplier = 1
965 - # dim tcp divisor = 1
966 - # dim udp name = udp
967 - # dim udp algorithm = incremental
968 - # dim udp multiplier = 1
969 - # dim udp divisor = 1
970 -
971 -[netdata.statsd_bytes]
972 - history = 5
973 - # enabled = yes
974 - # cache directory = /var/cache/netdata/netdata.statsd_bytes
975 - # chart type = stacked
976 - # type = netdata
977 - # family = statsd
978 - # units = kilobits/s
979 - # context = netdata.statsd_bytes
980 - # priority = 132013
981 - # name = netdata.statsd_bytes
982 - # title = Bytes read by the netdata statsd server
983 - # dim tcp name = tcp
984 - # dim tcp algorithm = incremental
985 - # dim tcp multiplier = 8
986 - # dim tcp divisor = 1000
987 - # dim udp name = udp
988 - # dim udp algorithm = incremental
989 - # dim udp multiplier = 8
990 - # dim udp divisor = 1000
991 -
992 -[netdata.statsd_packets]
993 - history = 5
994 - # enabled = yes
995 - # cache directory = /var/cache/netdata/netdata.statsd_packets
996 - # chart type = stacked
997 - # type = netdata
998 - # family = statsd
999 - # units = packets/s
1000 - # context = netdata.statsd_packets
1001 - # priority = 132014
1002 - # name = netdata.statsd_packets
1003 - # title = Network packets processed by the netdata statsd server
1004 - # dim tcp name = tcp
1005 - # dim tcp algorithm = incremental
1006 - # dim tcp multiplier = 1
1007 - # dim tcp divisor = 1
1008 - # dim udp name = udp
1009 - # dim udp algorithm = incremental
1010 - # dim udp multiplier = 1
1011 - # dim udp divisor = 1
1012 -
1013 -[netdata.tcp_connects]
1014 - history = 5
1015 - # enabled = yes
1016 - # cache directory = /var/cache/netdata/netdata.tcp_connects
1017 - # chart type = line
1018 - # type = netdata
1019 - # family = statsd
1020 - # units = events
1021 - # context = netdata.tcp_connects
1022 - # priority = 132015
1023 - # name = netdata.tcp_connects
1024 - # title = statsd server TCP connects and disconnects
1025 - # dim connects name = connects
1026 - # dim connects algorithm = incremental
1027 - # dim connects multiplier = 1
1028 - # dim connects divisor = 1
1029 - # dim disconnects name = disconnects
1030 - # dim disconnects algorithm = incremental
1031 - # dim disconnects multiplier = -1
1032 - # dim disconnects divisor = 1
1033 -
1034 -[netdata.tcp_connected]
1035 - history = 5
1036 - # enabled = yes
1037 - # cache directory = /var/cache/netdata/netdata.tcp_connected
1038 - # chart type = line
1039 - # type = netdata
1040 - # family = statsd
1041 - # units = sockets
1042 - # context = netdata.tcp_connected
1043 - # priority = 132016
1044 - # name = netdata.tcp_connected
1045 - # title = statsd server TCP connected sockets
1046 - # dim connected name = connected
1047 - # dim connected algorithm = absolute
1048 - # dim connected multiplier = 1
1049 - # dim connected divisor = 1
1050 -
1051 -[netdata.private_charts]
1052 - history = 5
1053 - # enabled = yes
1054 - # cache directory = /var/cache/netdata/netdata.private_charts
1055 - # chart type = area
1056 - # type = netdata
1057 - # family = statsd
1058 - # units = charts
1059 - # context = netdata.private_charts
1060 - # priority = 132020
1061 - # name = netdata.private_charts
1062 - # title = Private metric charts created by the netdata statsd server
1063 - # dim charts name = charts
1064 - # dim charts algorithm = absolute
1065 - # dim charts multiplier = 1
1066 - # dim charts divisor = 1
1067 -
1068 -[netdata.plugin_statsd_charting_cpu]
1069 - history = 5
1070 - # enabled = yes
1071 - # cache directory = /var/cache/netdata/netdata.plugin_statsd_charting_cpu
1072 - # chart type = stacked
1073 - # type = netdata
1074 - # family = statsd
1075 - # units = milliseconds/s
1076 - # context = netdata.statsd_cpu
1077 - # priority = 132001
1078 - # name = netdata.plugin_statsd_charting_cpu
1079 - # title = Netdata statsd charting thread CPU usage
1080 - # dim user name = user
1081 - # dim user algorithm = incremental
1082 - # dim user multiplier = 1
1083 - # dim user divisor = 1000
1084 - # dim system name = system
1085 - # dim system algorithm = incremental
1086 - # dim system multiplier = 1
1087 - # dim system divisor = 1000
1088 -
1089 -[netdata.plugin_statsd_collector1_cpu]
1090 - history = 5
1091 - # enabled = yes
1092 - # cache directory = /var/cache/netdata/netdata.plugin_statsd_collector1_cpu
1093 - # chart type = stacked
1094 - # type = netdata
1095 - # family = statsd
1096 - # units = milliseconds/s
1097 - # context = netdata.statsd_cpu
1098 - # priority = 132002
1099 - # name = netdata.plugin_statsd_collector1_cpu
1100 - # title = Netdata statsd collector thread No 1 CPU usage
1101 - # dim user name = user
1102 - # dim user algorithm = incremental
1103 - # dim user multiplier = 1
1104 - # dim user divisor = 1000
1105 - # dim system name = system
1106 - # dim system algorithm = incremental
1107 - # dim system multiplier = 1
1108 - # dim system divisor = 1000
1109 -
1110 -[system.cpu]
1111 - history = 5
1112 - # enabled = yes
1113 - # cache directory = /var/cache/netdata/system.cpu
1114 - # chart type = stacked
1115 - # type = system
1116 - # family = cpu
1117 - # units = percentage
1118 - # context = system.cpu
1119 - # priority = 100
1120 - # name = system.cpu
1121 - # title = Total CPU utilization
1122 - # dim guest_nice name = guest_nice
1123 - # dim guest_nice algorithm = percentage-of-incremental-row
1124 - # dim guest_nice multiplier = 1
1125 - # dim guest_nice divisor = 1
1126 - # dim guest name = guest
1127 - # dim guest algorithm = percentage-of-incremental-row
1128 - # dim guest multiplier = 1
1129 - # dim guest divisor = 1
1130 - # dim steal name = steal
1131 - # dim steal algorithm = percentage-of-incremental-row
1132 - # dim steal multiplier = 1
1133 - # dim steal divisor = 1
1134 - # dim softirq name = softirq
1135 - # dim softirq algorithm = percentage-of-incremental-row
1136 - # dim softirq multiplier = 1
1137 - # dim softirq divisor = 1
1138 - # dim irq name = irq
1139 - # dim irq algorithm = percentage-of-incremental-row
1140 - # dim irq multiplier = 1
1141 - # dim irq divisor = 1
1142 - # dim user name = user
1143 - # dim user algorithm = percentage-of-incremental-row
1144 - # dim user multiplier = 1
1145 - # dim user divisor = 1
1146 - # dim system name = system
1147 - # dim system algorithm = percentage-of-incremental-row
1148 - # dim system multiplier = 1
1149 - # dim system divisor = 1
1150 - # dim nice name = nice
1151 - # dim nice algorithm = percentage-of-incremental-row
1152 - # dim nice multiplier = 1
1153 - # dim nice divisor = 1
1154 - # dim iowait name = iowait
1155 - # dim iowait algorithm = percentage-of-incremental-row
1156 - # dim iowait multiplier = 1
1157 - # dim iowait divisor = 1
1158 - # dim idle name = idle
1159 - # dim idle algorithm = percentage-of-incremental-row
1160 - # dim idle multiplier = 1
1161 - # dim idle divisor = 1
1162 -
1163 -[cpu.cpu0]
1164 - history = 5
1165 - # enabled = yes
1166 - # cache directory = /var/cache/netdata/cpu.cpu0
1167 - # chart type = stacked
1168 - # type = cpu
1169 - # family = utilization
1170 - # units = percentage
1171 - # context = cpu.cpu
1172 - # priority = 1001
1173 - # name = cpu.cpu0
1174 - # title = Core utilization
1175 - # dim guest_nice name = guest_nice
1176 - # dim guest_nice algorithm = percentage-of-incremental-row
1177 - # dim guest_nice multiplier = 1
1178 - # dim guest_nice divisor = 1
1179 - # dim guest name = guest
1180 - # dim guest algorithm = percentage-of-incremental-row
1181 - # dim guest multiplier = 1
1182 - # dim guest divisor = 1
1183 - # dim steal name = steal
1184 - # dim steal algorithm = percentage-of-incremental-row
1185 - # dim steal multiplier = 1
1186 - # dim steal divisor = 1
1187 - # dim softirq name = softirq
1188 - # dim softirq algorithm = percentage-of-incremental-row
1189 - # dim softirq multiplier = 1
1190 - # dim softirq divisor = 1
1191 - # dim irq name = irq
1192 - # dim irq algorithm = percentage-of-incremental-row
1193 - # dim irq multiplier = 1
1194 - # dim irq divisor = 1
1195 - # dim user name = user
1196 - # dim user algorithm = percentage-of-incremental-row
1197 - # dim user multiplier = 1
1198 - # dim user divisor = 1
1199 - # dim system name = system
1200 - # dim system algorithm = percentage-of-incremental-row
1201 - # dim system multiplier = 1
1202 - # dim system divisor = 1
1203 - # dim nice name = nice
1204 - # dim nice algorithm = percentage-of-incremental-row
1205 - # dim nice multiplier = 1
1206 - # dim nice divisor = 1
1207 - # dim iowait name = iowait
1208 - # dim iowait algorithm = percentage-of-incremental-row
1209 - # dim iowait multiplier = 1
1210 - # dim iowait divisor = 1
1211 - # dim idle name = idle
1212 - # dim idle algorithm = percentage-of-incremental-row
1213 - # dim idle multiplier = 1
1214 - # dim idle divisor = 1
1215 -
1216 -[cpu.cpu1]
1217 - history = 5
1218 - # enabled = yes
1219 - # cache directory = /var/cache/netdata/cpu.cpu1
1220 - # chart type = stacked
1221 - # type = cpu
1222 - # family = utilization
1223 - # units = percentage
1224 - # context = cpu.cpu
1225 - # priority = 1002
1226 - # name = cpu.cpu1
1227 - # title = Core utilization
1228 - # dim guest_nice name = guest_nice
1229 - # dim guest_nice algorithm = percentage-of-incremental-row
1230 - # dim guest_nice multiplier = 1
1231 - # dim guest_nice divisor = 1
1232 - # dim guest name = guest
1233 - # dim guest algorithm = percentage-of-incremental-row
1234 - # dim guest multiplier = 1
1235 - # dim guest divisor = 1
1236 - # dim steal name = steal
1237 - # dim steal algorithm = percentage-of-incremental-row
1238 - # dim steal multiplier = 1
1239 - # dim steal divisor = 1
1240 - # dim softirq name = softirq
1241 - # dim softirq algorithm = percentage-of-incremental-row
1242 - # dim softirq multiplier = 1
1243 - # dim softirq divisor = 1
1244 - # dim irq name = irq
1245 - # dim irq algorithm = percentage-of-incremental-row
1246 - # dim irq multiplier = 1
1247 - # dim irq divisor = 1
1248 - # dim user name = user
1249 - # dim user algorithm = percentage-of-incremental-row
1250 - # dim user multiplier = 1
1251 - # dim user divisor = 1
1252 - # dim system name = system
1253 - # dim system algorithm = percentage-of-incremental-row
1254 - # dim system multiplier = 1
1255 - # dim system divisor = 1
1256 - # dim nice name = nice
1257 - # dim nice algorithm = percentage-of-incremental-row
1258 - # dim nice multiplier = 1
1259 - # dim nice divisor = 1
1260 - # dim iowait name = iowait
1261 - # dim iowait algorithm = percentage-of-incremental-row
1262 - # dim iowait multiplier = 1
1263 - # dim iowait divisor = 1
1264 - # dim idle name = idle
1265 - # dim idle algorithm = percentage-of-incremental-row
1266 - # dim idle multiplier = 1
1267 - # dim idle divisor = 1
1268 -
1269 -[disk_space._]
1270 - history = 5
1271 - # enabled = yes
1272 - # cache directory = /var/cache/netdata/disk_space._
1273 - # chart type = stacked
1274 - # type = disk_space
1275 - # family = /
1276 - # units = GiB
1277 - # context = disk.space
1278 - # priority = 2023
1279 - # name = disk_space._
1280 - # title = Disk Space Usage for / [overlay]
1281 - # dim avail name = avail
1282 - # dim avail algorithm = absolute
1283 - # dim avail multiplier = 4096
1284 - # dim avail divisor = 1073741824
1285 - # dim used name = used
1286 - # dim used algorithm = absolute
1287 - # dim used multiplier = 4096
1288 - # dim used divisor = 1073741824
1289 - # dim reserved_for_root name = reserved for root
1290 - # dim reserved_for_root algorithm = absolute
1291 - # dim reserved_for_root multiplier = 4096
1292 - # dim reserved_for_root divisor = 1073741824
1293 -
1294 -[disk_inodes._]
1295 - history = 5
1296 - # enabled = yes
1297 - # cache directory = /var/cache/netdata/disk_inodes._
1298 - # chart type = stacked
1299 - # type = disk_inodes
1300 - # family = /
1301 - # units = inodes
1302 - # context = disk.inodes
1303 - # priority = 2024
1304 - # name = disk_inodes._
1305 - # title = Disk Files (inodes) Usage for / [overlay]
1306 - # dim avail name = avail
1307 - # dim avail algorithm = absolute
1308 - # dim avail multiplier = 1
1309 - # dim avail divisor = 1
1310 - # dim used name = used
1311 - # dim used algorithm = absolute
1312 - # dim used multiplier = 1
1313 - # dim used divisor = 1
1314 - # dim reserved_for_root name = reserved for root
1315 - # dim reserved_for_root algorithm = absolute
1316 - # dim reserved_for_root multiplier = 1
1317 - # dim reserved_for_root divisor = 1
1318 -
1319 -[disk_space._dev]
1320 - history = 5
1321 - # enabled = yes
1322 - # cache directory = /var/cache/netdata/disk_space._dev
1323 - # chart type = stacked
1324 - # type = disk_space
1325 - # family = /dev
1326 - # units = GiB
1327 - # context = disk.space
1328 - # priority = 2023
1329 - # name = disk_space._dev
1330 - # title = Disk Space Usage for /dev [tmpfs]
1331 - # dim avail name = avail
1332 - # dim avail algorithm = absolute
1333 - # dim avail multiplier = 4096
1334 - # dim avail divisor = 1073741824
1335 - # dim used name = used
1336 - # dim used algorithm = absolute
1337 - # dim used multiplier = 4096
1338 - # dim used divisor = 1073741824
1339 - # dim reserved_for_root name = reserved for root
1340 - # dim reserved_for_root algorithm = absolute
1341 - # dim reserved_for_root multiplier = 4096
1342 - # dim reserved_for_root divisor = 1073741824
1343 -
1344 -[disk_inodes._dev]
1345 - history = 5
1346 - # enabled = yes
1347 - # cache directory = /var/cache/netdata/disk_inodes._dev
1348 - # chart type = stacked
1349 - # type = disk_inodes
1350 - # family = /dev
1351 - # units = inodes
1352 - # context = disk.inodes
1353 - # priority = 2024
1354 - # name = disk_inodes._dev
1355 - # title = Disk Files (inodes) Usage for /dev [tmpfs]
1356 - # dim avail name = avail
1357 - # dim avail algorithm = absolute
1358 - # dim avail multiplier = 1
1359 - # dim avail divisor = 1
1360 - # dim used name = used
1361 - # dim used algorithm = absolute
1362 - # dim used multiplier = 1
1363 - # dim used divisor = 1
1364 - # dim reserved_for_root name = reserved for root
1365 - # dim reserved_for_root algorithm = absolute
1366 - # dim reserved_for_root multiplier = 1
1367 - # dim reserved_for_root divisor = 1
1368 -
1369 -[disk_space._dev_shm]
1370 - history = 5
1371 - # enabled = yes
1372 - # cache directory = /var/cache/netdata/disk_space._dev_shm
1373 - # chart type = stacked
1374 - # type = disk_space
1375 - # family = /dev/shm
1376 - # units = GiB
1377 - # context = disk.space
1378 - # priority = 2023
1379 - # name = disk_space._dev_shm
1380 - # title = Disk Space Usage for /dev/shm [shm]
1381 - # dim avail name = avail
1382 - # dim avail algorithm = absolute
1383 - # dim avail multiplier = 4096
1384 - # dim avail divisor = 1073741824
1385 - # dim used name = used
1386 - # dim used algorithm = absolute
1387 - # dim used multiplier = 4096
1388 - # dim used divisor = 1073741824
1389 - # dim reserved_for_root name = reserved for root
1390 - # dim reserved_for_root algorithm = absolute
1391 - # dim reserved_for_root multiplier = 4096
1392 - # dim reserved_for_root divisor = 1073741824
1393 -
1394 -[disk_inodes._dev_shm]
1395 - history = 5
1396 - # enabled = yes
1397 - # cache directory = /var/cache/netdata/disk_inodes._dev_shm
1398 - # chart type = stacked
1399 - # type = disk_inodes
1400 - # family = /dev/shm
1401 - # units = inodes
1402 - # context = disk.inodes
1403 - # priority = 2024
1404 - # name = disk_inodes._dev_shm
1405 - # title = Disk Files (inodes) Usage for /dev/shm [shm]
1406 - # dim avail name = avail
1407 - # dim avail algorithm = absolute
1408 - # dim avail multiplier = 1
1409 - # dim avail divisor = 1
1410 - # dim used name = used
1411 - # dim used algorithm = absolute
1412 - # dim used multiplier = 1
1413 - # dim used divisor = 1
1414 - # dim reserved_for_root name = reserved for root
1415 - # dim reserved_for_root algorithm = absolute
1416 - # dim reserved_for_root multiplier = 1
1417 - # dim reserved_for_root divisor = 1
1418 -
1419 -[cpu.cpu2]
1420 - history = 5
1421 - # enabled = yes
1422 - # cache directory = /var/cache/netdata/cpu.cpu2
1423 - # chart type = stacked
1424 - # type = cpu
1425 - # family = utilization
1426 - # units = percentage
1427 - # context = cpu.cpu
1428 - # priority = 1003
1429 - # name = cpu.cpu2
1430 - # title = Core utilization
1431 - # dim guest_nice name = guest_nice
1432 - # dim guest_nice algorithm = percentage-of-incremental-row
1433 - # dim guest_nice multiplier = 1
1434 - # dim guest_nice divisor = 1
1435 - # dim guest name = guest
1436 - # dim guest algorithm = percentage-of-incremental-row
1437 - # dim guest multiplier = 1
1438 - # dim guest divisor = 1
1439 - # dim steal name = steal
1440 - # dim steal algorithm = percentage-of-incremental-row
1441 - # dim steal multiplier = 1
1442 - # dim steal divisor = 1
1443 - # dim softirq name = softirq
1444 - # dim softirq algorithm = percentage-of-incremental-row
1445 - # dim softirq multiplier = 1
1446 - # dim softirq divisor = 1
1447 - # dim irq name = irq
1448 - # dim irq algorithm = percentage-of-incremental-row
1449 - # dim irq multiplier = 1
1450 - # dim irq divisor = 1
1451 - # dim user name = user
1452 - # dim user algorithm = percentage-of-incremental-row
1453 - # dim user multiplier = 1
1454 - # dim user divisor = 1
1455 - # dim system name = system
1456 - # dim system algorithm = percentage-of-incremental-row
1457 - # dim system multiplier = 1
1458 - # dim system divisor = 1
1459 - # dim nice name = nice
1460 - # dim nice algorithm = percentage-of-incremental-row
1461 - # dim nice multiplier = 1
1462 - # dim nice divisor = 1
1463 - # dim iowait name = iowait
1464 - # dim iowait algorithm = percentage-of-incremental-row
1465 - # dim iowait multiplier = 1
1466 - # dim iowait divisor = 1
1467 - # dim idle name = idle
1468 - # dim idle algorithm = percentage-of-incremental-row
1469 - # dim idle multiplier = 1
1470 - # dim idle divisor = 1
1471 -
1472 -[cpu.cpu3]
1473 - history = 5
1474 - # enabled = yes
1475 - # cache directory = /var/cache/netdata/cpu.cpu3
1476 - # chart type = stacked
1477 - # type = cpu
1478 - # family = utilization
1479 - # units = percentage
1480 - # context = cpu.cpu
1481 - # priority = 1004
1482 - # name = cpu.cpu3
1483 - # title = Core utilization
1484 - # dim guest_nice name = guest_nice
1485 - # dim guest_nice algorithm = percentage-of-incremental-row
1486 - # dim guest_nice multiplier = 1
1487 - # dim guest_nice divisor = 1
1488 - # dim guest name = guest
1489 - # dim guest algorithm = percentage-of-incremental-row
1490 - # dim guest multiplier = 1
1491 - # dim guest divisor = 1
1492 - # dim steal name = steal
1493 - # dim steal algorithm = percentage-of-incremental-row
1494 - # dim steal multiplier = 1
1495 - # dim steal divisor = 1
1496 - # dim softirq name = softirq
1497 - # dim softirq algorithm = percentage-of-incremental-row
1498 - # dim softirq multiplier = 1
1499 - # dim softirq divisor = 1
1500 - # dim irq name = irq
1501 - # dim irq algorithm = percentage-of-incremental-row
1502 - # dim irq multiplier = 1
1503 - # dim irq divisor = 1
1504 - # dim user name = user
1505 - # dim user algorithm = percentage-of-incremental-row
1506 - # dim user multiplier = 1
1507 - # dim user divisor = 1
1508 - # dim system name = system
1509 - # dim system algorithm = percentage-of-incremental-row
1510 - # dim system multiplier = 1
1511 - # dim system divisor = 1
1512 - # dim nice name = nice
1513 - # dim nice algorithm = percentage-of-incremental-row
1514 - # dim nice multiplier = 1
1515 - # dim nice divisor = 1
1516 - # dim iowait name = iowait
1517 - # dim iowait algorithm = percentage-of-incremental-row
1518 - # dim iowait multiplier = 1
1519 - # dim iowait divisor = 1
1520 - # dim idle name = idle
1521 - # dim idle algorithm = percentage-of-incremental-row
1522 - # dim idle multiplier = 1
1523 - # dim idle divisor = 1
1524 -
1525 -[cpu.cpu4]
1526 - history = 5
1527 - # enabled = yes
1528 - # cache directory = /var/cache/netdata/cpu.cpu4
1529 - # chart type = stacked
1530 - # type = cpu
1531 - # family = utilization
1532 - # units = percentage
1533 - # context = cpu.cpu
1534 - # priority = 1005
1535 - # name = cpu.cpu4
1536 - # title = Core utilization
1537 - # dim guest_nice name = guest_nice
1538 - # dim guest_nice algorithm = percentage-of-incremental-row
1539 - # dim guest_nice multiplier = 1
1540 - # dim guest_nice divisor = 1
1541 - # dim guest name = guest
1542 - # dim guest algorithm = percentage-of-incremental-row
1543 - # dim guest multiplier = 1
1544 - # dim guest divisor = 1
1545 - # dim steal name = steal
1546 - # dim steal algorithm = percentage-of-incremental-row
1547 - # dim steal multiplier = 1
1548 - # dim steal divisor = 1
1549 - # dim softirq name = softirq
1550 - # dim softirq algorithm = percentage-of-incremental-row
1551 - # dim softirq multiplier = 1
1552 - # dim softirq divisor = 1
1553 - # dim irq name = irq
1554 - # dim irq algorithm = percentage-of-incremental-row
1555 - # dim irq multiplier = 1
1556 - # dim irq divisor = 1
1557 - # dim user name = user
1558 - # dim user algorithm = percentage-of-incremental-row
1559 - # dim user multiplier = 1
1560 - # dim user divisor = 1
1561 - # dim system name = system
1562 - # dim system algorithm = percentage-of-incremental-row
1563 - # dim system multiplier = 1
1564 - # dim system divisor = 1
1565 - # dim nice name = nice
1566 - # dim nice algorithm = percentage-of-incremental-row
1567 - # dim nice multiplier = 1
1568 - # dim nice divisor = 1
1569 - # dim iowait name = iowait
1570 - # dim iowait algorithm = percentage-of-incremental-row
1571 - # dim iowait multiplier = 1
1572 - # dim iowait divisor = 1
1573 - # dim idle name = idle
1574 - # dim idle algorithm = percentage-of-incremental-row
1575 - # dim idle multiplier = 1
1576 - # dim idle divisor = 1
1577 -
1578 -[cpu.cpu5]
1579 - history = 5
1580 - # enabled = yes
1581 - # cache directory = /var/cache/netdata/cpu.cpu5
1582 - # chart type = stacked
1583 - # type = cpu
1584 - # family = utilization
1585 - # units = percentage
1586 - # context = cpu.cpu
1587 - # priority = 1006
1588 - # name = cpu.cpu5
1589 - # title = Core utilization
1590 - # dim guest_nice name = guest_nice
1591 - # dim guest_nice algorithm = percentage-of-incremental-row
1592 - # dim guest_nice multiplier = 1
1593 - # dim guest_nice divisor = 1
1594 - # dim guest name = guest
1595 - # dim guest algorithm = percentage-of-incremental-row
1596 - # dim guest multiplier = 1
1597 - # dim guest divisor = 1
1598 - # dim steal name = steal
1599 - # dim steal algorithm = percentage-of-incremental-row
1600 - # dim steal multiplier = 1
1601 - # dim steal divisor = 1
1602 - # dim softirq name = softirq
1603 - # dim softirq algorithm = percentage-of-incremental-row
1604 - # dim softirq multiplier = 1
1605 - # dim softirq divisor = 1
1606 - # dim irq name = irq
1607 - # dim irq algorithm = percentage-of-incremental-row
1608 - # dim irq multiplier = 1
1609 - # dim irq divisor = 1
1610 - # dim user name = user
1611 - # dim user algorithm = percentage-of-incremental-row
1612 - # dim user multiplier = 1
1613 - # dim user divisor = 1
1614 - # dim system name = system
1615 - # dim system algorithm = percentage-of-incremental-row
1616 - # dim system multiplier = 1
1617 - # dim system divisor = 1
1618 - # dim nice name = nice
1619 - # dim nice algorithm = percentage-of-incremental-row
1620 - # dim nice multiplier = 1
1621 - # dim nice divisor = 1
1622 - # dim iowait name = iowait
1623 - # dim iowait algorithm = percentage-of-incremental-row
1624 - # dim iowait multiplier = 1
1625 - # dim iowait divisor = 1
1626 - # dim idle name = idle
1627 - # dim idle algorithm = percentage-of-incremental-row
1628 - # dim idle multiplier = 1
1629 - # dim idle divisor = 1
1630 -
1631 -[cpu.cpu6]
1632 - history = 5
1633 - # enabled = yes
1634 - # cache directory = /var/cache/netdata/cpu.cpu6
1635 - # chart type = stacked
1636 - # type = cpu
1637 - # family = utilization
1638 - # units = percentage
1639 - # context = cpu.cpu
1640 - # priority = 1007
1641 - # name = cpu.cpu6
1642 - # title = Core utilization
1643 - # dim guest_nice name = guest_nice
1644 - # dim guest_nice algorithm = percentage-of-incremental-row
1645 - # dim guest_nice multiplier = 1
1646 - # dim guest_nice divisor = 1
1647 - # dim guest name = guest
1648 - # dim guest algorithm = percentage-of-incremental-row
1649 - # dim guest multiplier = 1
1650 - # dim guest divisor = 1
1651 - # dim steal name = steal
1652 - # dim steal algorithm = percentage-of-incremental-row
1653 - # dim steal multiplier = 1
1654 - # dim steal divisor = 1
1655 - # dim softirq name = softirq
1656 - # dim softirq algorithm = percentage-of-incremental-row
1657 - # dim softirq multiplier = 1
1658 - # dim softirq divisor = 1
1659 - # dim irq name = irq
1660 - # dim irq algorithm = percentage-of-incremental-row
1661 - # dim irq multiplier = 1
1662 - # dim irq divisor = 1
1663 - # dim user name = user
1664 - # dim user algorithm = percentage-of-incremental-row
1665 - # dim user multiplier = 1
1666 - # dim user divisor = 1
1667 - # dim system name = system
1668 - # dim system algorithm = percentage-of-incremental-row
1669 - # dim system multiplier = 1
1670 - # dim system divisor = 1
1671 - # dim nice name = nice
1672 - # dim nice algorithm = percentage-of-incremental-row
1673 - # dim nice multiplier = 1
1674 - # dim nice divisor = 1
1675 - # dim iowait name = iowait
1676 - # dim iowait algorithm = percentage-of-incremental-row
1677 - # dim iowait multiplier = 1
1678 - # dim iowait divisor = 1
1679 - # dim idle name = idle
1680 - # dim idle algorithm = percentage-of-incremental-row
1681 - # dim idle multiplier = 1
1682 - # dim idle divisor = 1
1683 -
1684 -[cpu.cpu7]
1685 - history = 5
1686 - # enabled = yes
1687 - # cache directory = /var/cache/netdata/cpu.cpu7
1688 - # chart type = stacked
1689 - # type = cpu
1690 - # family = utilization
1691 - # units = percentage
1692 - # context = cpu.cpu
1693 - # priority = 1008
1694 - # name = cpu.cpu7
1695 - # title = Core utilization
1696 - # dim guest_nice name = guest_nice
1697 - # dim guest_nice algorithm = percentage-of-incremental-row
1698 - # dim guest_nice multiplier = 1
1699 - # dim guest_nice divisor = 1
1700 - # dim guest name = guest
1701 - # dim guest algorithm = percentage-of-incremental-row
1702 - # dim guest multiplier = 1
1703 - # dim guest divisor = 1
1704 - # dim steal name = steal
1705 - # dim steal algorithm = percentage-of-incremental-row
1706 - # dim steal multiplier = 1
1707 - # dim steal divisor = 1
1708 - # dim softirq name = softirq
1709 - # dim softirq algorithm = percentage-of-incremental-row
1710 - # dim softirq multiplier = 1
1711 - # dim softirq divisor = 1
1712 - # dim irq name = irq
1713 - # dim irq algorithm = percentage-of-incremental-row
1714 - # dim irq multiplier = 1
1715 - # dim irq divisor = 1
1716 - # dim user name = user
1717 - # dim user algorithm = percentage-of-incremental-row
1718 - # dim user multiplier = 1
1719 - # dim user divisor = 1
1720 - # dim system name = system
1721 - # dim system algorithm = percentage-of-incremental-row
1722 - # dim system multiplier = 1
1723 - # dim system divisor = 1
1724 - # dim nice name = nice
1725 - # dim nice algorithm = percentage-of-incremental-row
1726 - # dim nice multiplier = 1
1727 - # dim nice divisor = 1
1728 - # dim iowait name = iowait
1729 - # dim iowait algorithm = percentage-of-incremental-row
1730 - # dim iowait multiplier = 1
1731 - # dim iowait divisor = 1
1732 - # dim idle name = idle
1733 - # dim idle algorithm = percentage-of-incremental-row
1734 - # dim idle multiplier = 1
1735 - # dim idle divisor = 1
1736 -
1737 -[system.intr]
1738 - history = 5
1739 - # enabled = yes
1740 - # cache directory = /var/cache/netdata/system.intr
1741 - # chart type = line
1742 - # type = system
1743 - # family = interrupts
1744 - # units = interrupts/s
1745 - # context = system.intr
1746 - # priority = 900
1747 - # name = system.intr
1748 - # title = CPU Interrupts
1749 - # dim interrupts name = interrupts
1750 - # dim interrupts algorithm = incremental
1751 - # dim interrupts multiplier = 1
1752 - # dim interrupts divisor = 1
1753 -
1754 -[system.ctxt]
1755 - history = 5
1756 - # enabled = yes
1757 - # cache directory = /var/cache/netdata/system.ctxt
1758 - # chart type = line
1759 - # type = system
1760 - # family = processes
1761 - # units = context switches/s
1762 - # context = system.ctxt
1763 - # priority = 800
1764 - # name = system.ctxt
1765 - # title = CPU Context Switches
1766 - # dim switches name = switches
1767 - # dim switches algorithm = incremental
1768 - # dim switches multiplier = 1
1769 - # dim switches divisor = 1
1770 -
1771 -[system.forks]
1772 - history = 5
1773 - # enabled = yes
1774 - # cache directory = /var/cache/netdata/system.forks
1775 - # chart type = line
1776 - # type = system
1777 - # family = processes
1778 - # units = processes/s
1779 - # context = system.forks
1780 - # priority = 700
1781 - # name = system.forks
1782 - # title = Started Processes
1783 - # dim started name = started
1784 - # dim started algorithm = incremental
1785 - # dim started multiplier = 1
1786 - # dim started divisor = 1
1787 -
1788 -[system.processes]
1789 - history = 5
1790 - # enabled = yes
1791 - # cache directory = /var/cache/netdata/system.processes
1792 - # chart type = line
1793 - # type = system
1794 - # family = processes
1795 - # units = processes
1796 - # context = system.processes
1797 - # priority = 600
1798 - # name = system.processes
1799 - # title = System Processes
1800 - # dim running name = running
1801 - # dim running algorithm = absolute
1802 - # dim running multiplier = 1
1803 - # dim running divisor = 1
1804 - # dim blocked name = blocked
1805 - # dim blocked algorithm = absolute
1806 - # dim blocked multiplier = -1
1807 - # dim blocked divisor = 1
1808 -
1809 -[cpu.core_throttling]
1810 - history = 5
1811 - # enabled = yes
1812 - # cache directory = /var/cache/netdata/cpu.core_throttling
1813 - # chart type = line
1814 - # type = cpu
1815 - # family = throttling
1816 - # units = events/s
1817 - # context = cpu.core_throttling
1818 - # priority = 5001
1819 - # name = cpu.core_throttling
1820 - # title = Core Thermal Throttling Events
1821 - # dim cpu0 name = cpu0
1822 - # dim cpu0 algorithm = incremental
1823 - # dim cpu0 multiplier = 1
1824 - # dim cpu0 divisor = 1
1825 - # dim cpu1 name = cpu1
1826 - # dim cpu1 algorithm = incremental
1827 - # dim cpu1 multiplier = 1
1828 - # dim cpu1 divisor = 1
1829 - # dim cpu2 name = cpu2
1830 - # dim cpu2 algorithm = incremental
1831 - # dim cpu2 multiplier = 1
1832 - # dim cpu2 divisor = 1
1833 - # dim cpu3 name = cpu3
1834 - # dim cpu3 algorithm = incremental
1835 - # dim cpu3 multiplier = 1
1836 - # dim cpu3 divisor = 1
1837 - # dim cpu4 name = cpu4
1838 - # dim cpu4 algorithm = incremental
1839 - # dim cpu4 multiplier = 1
1840 - # dim cpu4 divisor = 1
1841 - # dim cpu5 name = cpu5
1842 - # dim cpu5 algorithm = incremental
1843 - # dim cpu5 multiplier = 1
1844 - # dim cpu5 divisor = 1
1845 - # dim cpu6 name = cpu6
1846 - # dim cpu6 algorithm = incremental
1847 - # dim cpu6 multiplier = 1
1848 - # dim cpu6 divisor = 1
1849 - # dim cpu7 name = cpu7
1850 - # dim cpu7 algorithm = incremental
1851 - # dim cpu7 multiplier = 1
1852 - # dim cpu7 divisor = 1
1853 -
1854 -[cpu.cpufreq]
1855 - history = 5
1856 - # enabled = yes
1857 - # cache directory = /var/cache/netdata/cpu.cpufreq
1858 - # chart type = line
1859 - # type = cpu
1860 - # family = cpufreq
1861 - # units = MHz
1862 - # context = cpufreq.cpufreq
1863 - # priority = 5003
1864 - # name = cpu.cpufreq
1865 - # title = Current CPU Frequency
1866 - # dim cpu0 name = cpu0
1867 - # dim cpu0 algorithm = absolute
1868 - # dim cpu0 multiplier = 1
1869 - # dim cpu0 divisor = 1000
1870 - # dim cpu1 name = cpu1
1871 - # dim cpu1 algorithm = absolute
1872 - # dim cpu1 multiplier = 1
1873 - # dim cpu1 divisor = 1000
1874 - # dim cpu2 name = cpu2
1875 - # dim cpu2 algorithm = absolute
1876 - # dim cpu2 multiplier = 1
1877 - # dim cpu2 divisor = 1000
1878 - # dim cpu3 name = cpu3
1879 - # dim cpu3 algorithm = absolute
1880 - # dim cpu3 multiplier = 1
1881 - # dim cpu3 divisor = 1000
1882 - # dim cpu4 name = cpu4
1883 - # dim cpu4 algorithm = absolute
1884 - # dim cpu4 multiplier = 1
1885 - # dim cpu4 divisor = 1000
1886 - # dim cpu5 name = cpu5
1887 - # dim cpu5 algorithm = absolute
1888 - # dim cpu5 multiplier = 1
1889 - # dim cpu5 divisor = 1000
1890 - # dim cpu6 name = cpu6
1891 - # dim cpu6 algorithm = absolute
1892 - # dim cpu6 multiplier = 1
1893 - # dim cpu6 divisor = 1000
1894 - # dim cpu7 name = cpu7
1895 - # dim cpu7 algorithm = absolute
1896 - # dim cpu7 multiplier = 1
1897 - # dim cpu7 divisor = 1000
1898 -
1899 -[netdata.plugin_cgroups_cpu]
1900 - history = 5
1901 - # enabled = yes
1902 - # cache directory = /var/cache/netdata/netdata.plugin_cgroups_cpu
1903 - # chart type = stacked
1904 - # type = netdata
1905 - # family = cgroups
1906 - # units = milliseconds/s
1907 - # context = netdata.plugin_cgroups_cpu
1908 - # priority = 132000
1909 - # name = netdata.plugin_cgroups_cpu
1910 - # title = Netdata CGroups Plugin CPU usage
1911 - # dim user name = user
1912 - # dim user algorithm = incremental
1913 - # dim user multiplier = 1
1914 - # dim user divisor = 1000
1915 - # dim system name = system
1916 - # dim system algorithm = incremental
1917 - # dim system multiplier = 1
1918 - # dim system divisor = 1000
1919 -
1920 -[netdata.plugin_diskspace]
1921 - history = 5
1922 - # enabled = yes
1923 - # cache directory = /var/cache/netdata/netdata.plugin_diskspace
1924 - # chart type = stacked
1925 - # type = netdata
1926 - # family = diskspace
1927 - # units = milliseconds/s
1928 - # context = netdata.plugin_diskspace
1929 - # priority = 132020
1930 - # name = netdata.plugin_diskspace
1931 - # title = Netdata Disk Space Plugin CPU usage
1932 - # dim user name = user
1933 - # dim user algorithm = incremental
1934 - # dim user multiplier = 1
1935 - # dim user divisor = 1000
1936 - # dim system name = system
1937 - # dim system algorithm = incremental
1938 - # dim system multiplier = 1
1939 - # dim system divisor = 1000
1940 -
1941 -[netdata.plugin_diskspace_dt]
1942 - history = 5
1943 - # enabled = yes
1944 - # cache directory = /var/cache/netdata/netdata.plugin_diskspace_dt
1945 - # chart type = area
1946 - # type = netdata
1947 - # family = diskspace
1948 - # units = milliseconds/run
1949 - # context = netdata.plugin_diskspace_dt
1950 - # priority = 132021
1951 - # name = netdata.plugin_diskspace_dt
1952 - # title = Netdata Disk Space Plugin Duration
1953 - # dim duration name = duration
1954 - # dim duration algorithm = absolute
1955 - # dim duration multiplier = 1
1956 - # dim duration divisor = 1000
1957 -
1958 -[cpu.cpu0_cpuidle]
1959 - history = 5
1960 - # enabled = yes
1961 - # cache directory = /var/cache/netdata/cpu.cpu0_cpuidle
1962 - # chart type = stacked
1963 - # type = cpu
1964 - # family = cpuidle
1965 - # units = percentage
1966 - # context = cpuidle.cpuidle
1967 - # priority = 6000
1968 - # name = cpu.cpu0_cpuidle
1969 - # title = C-state residency time
1970 - # dim cpu0_active_time name = C0 (active)
1971 - # dim cpu0_active_time algorithm = percentage-of-incremental-row
1972 - # dim cpu0_active_time multiplier = 1
1973 - # dim cpu0_active_time divisor = 1
1974 - # dim cpu0_cpuidle_state0_time name = POLL
1975 - # dim cpu0_cpuidle_state0_time algorithm = percentage-of-incremental-row
1976 - # dim cpu0_cpuidle_state0_time multiplier = 1
1977 - # dim cpu0_cpuidle_state0_time divisor = 1
1978 - # dim cpu0_cpuidle_state1_time name = C1
1979 - # dim cpu0_cpuidle_state1_time algorithm = percentage-of-incremental-row
1980 - # dim cpu0_cpuidle_state1_time multiplier = 1
1981 - # dim cpu0_cpuidle_state1_time divisor = 1
1982 - # dim cpu0_cpuidle_state2_time name = C1E
1983 - # dim cpu0_cpuidle_state2_time algorithm = percentage-of-incremental-row
1984 - # dim cpu0_cpuidle_state2_time multiplier = 1
1985 - # dim cpu0_cpuidle_state2_time divisor = 1
1986 - # dim cpu0_cpuidle_state3_time name = C3
1987 - # dim cpu0_cpuidle_state3_time algorithm = percentage-of-incremental-row
1988 - # dim cpu0_cpuidle_state3_time multiplier = 1
1989 - # dim cpu0_cpuidle_state3_time divisor = 1
1990 - # dim cpu0_cpuidle_state4_time name = C6
1991 - # dim cpu0_cpuidle_state4_time algorithm = percentage-of-incremental-row
1992 - # dim cpu0_cpuidle_state4_time multiplier = 1
1993 - # dim cpu0_cpuidle_state4_time divisor = 1
1994 - # dim cpu0_cpuidle_state5_time name = C7s
1995 - # dim cpu0_cpuidle_state5_time algorithm = percentage-of-incremental-row
1996 - # dim cpu0_cpuidle_state5_time multiplier = 1
1997 - # dim cpu0_cpuidle_state5_time divisor = 1
1998 -
1999 -[cpu.cpu1_cpuidle]
2000 - history = 5
2001 - # enabled = yes
2002 - # cache directory = /var/cache/netdata/cpu.cpu1_cpuidle
2003 - # chart type = stacked
2004 - # type = cpu
2005 - # family = cpuidle
2006 - # units = percentage
2007 - # context = cpuidle.cpuidle
2008 - # priority = 6001
2009 - # name = cpu.cpu1_cpuidle
2010 - # title = C-state residency time
2011 - # dim cpu1_active_time name = C0 (active)
2012 - # dim cpu1_active_time algorithm = percentage-of-incremental-row
2013 - # dim cpu1_active_time multiplier = 1
2014 - # dim cpu1_active_time divisor = 1
2015 - # dim cpu1_cpuidle_state0_time name = POLL
2016 - # dim cpu1_cpuidle_state0_time algorithm = percentage-of-incremental-row
2017 - # dim cpu1_cpuidle_state0_time multiplier = 1
2018 - # dim cpu1_cpuidle_state0_time divisor = 1
2019 - # dim cpu1_cpuidle_state1_time name = C1
2020 - # dim cpu1_cpuidle_state1_time algorithm = percentage-of-incremental-row
2021 - # dim cpu1_cpuidle_state1_time multiplier = 1
2022 - # dim cpu1_cpuidle_state1_time divisor = 1
2023 - # dim cpu1_cpuidle_state2_time name = C1E
2024 - # dim cpu1_cpuidle_state2_time algorithm = percentage-of-incremental-row
2025 - # dim cpu1_cpuidle_state2_time multiplier = 1
2026 - # dim cpu1_cpuidle_state2_time divisor = 1
2027 - # dim cpu1_cpuidle_state3_time name = C3
2028 - # dim cpu1_cpuidle_state3_time algorithm = percentage-of-incremental-row
2029 - # dim cpu1_cpuidle_state3_time multiplier = 1
2030 - # dim cpu1_cpuidle_state3_time divisor = 1
2031 - # dim cpu1_cpuidle_state4_time name = C6
2032 - # dim cpu1_cpuidle_state4_time algorithm = percentage-of-incremental-row
2033 - # dim cpu1_cpuidle_state4_time multiplier = 1
2034 - # dim cpu1_cpuidle_state4_time divisor = 1
2035 - # dim cpu1_cpuidle_state5_time name = C7s
2036 - # dim cpu1_cpuidle_state5_time algorithm = percentage-of-incremental-row
2037 - # dim cpu1_cpuidle_state5_time multiplier = 1
2038 - # dim cpu1_cpuidle_state5_time divisor = 1
2039 -
2040 -[cpu.cpu2_cpuidle]
2041 - history = 5
2042 - # enabled = yes
2043 - # cache directory = /var/cache/netdata/cpu.cpu2_cpuidle
2044 - # chart type = stacked
2045 - # type = cpu
2046 - # family = cpuidle
2047 - # units = percentage
2048 - # context = cpuidle.cpuidle
2049 - # priority = 6002
2050 - # name = cpu.cpu2_cpuidle
2051 - # title = C-state residency time
2052 - # dim cpu2_active_time name = C0 (active)
2053 - # dim cpu2_active_time algorithm = percentage-of-incremental-row
2054 - # dim cpu2_active_time multiplier = 1
2055 - # dim cpu2_active_time divisor = 1
2056 - # dim cpu2_cpuidle_state0_time name = POLL
2057 - # dim cpu2_cpuidle_state0_time algorithm = percentage-of-incremental-row
2058 - # dim cpu2_cpuidle_state0_time multiplier = 1
2059 - # dim cpu2_cpuidle_state0_time divisor = 1
2060 - # dim cpu2_cpuidle_state1_time name = C1
2061 - # dim cpu2_cpuidle_state1_time algorithm = percentage-of-incremental-row
2062 - # dim cpu2_cpuidle_state1_time multiplier = 1
2063 - # dim cpu2_cpuidle_state1_time divisor = 1
2064 - # dim cpu2_cpuidle_state2_time name = C1E
2065 - # dim cpu2_cpuidle_state2_time algorithm = percentage-of-incremental-row
2066 - # dim cpu2_cpuidle_state2_time multiplier = 1
2067 - # dim cpu2_cpuidle_state2_time divisor = 1
2068 - # dim cpu2_cpuidle_state3_time name = C3
2069 - # dim cpu2_cpuidle_state3_time algorithm = percentage-of-incremental-row
2070 - # dim cpu2_cpuidle_state3_time multiplier = 1
2071 - # dim cpu2_cpuidle_state3_time divisor = 1
2072 - # dim cpu2_cpuidle_state4_time name = C6
2073 - # dim cpu2_cpuidle_state4_time algorithm = percentage-of-incremental-row
2074 - # dim cpu2_cpuidle_state4_time multiplier = 1
2075 - # dim cpu2_cpuidle_state4_time divisor = 1
2076 - # dim cpu2_cpuidle_state5_time name = C7s
2077 - # dim cpu2_cpuidle_state5_time algorithm = percentage-of-incremental-row
2078 - # dim cpu2_cpuidle_state5_time multiplier = 1
2079 - # dim cpu2_cpuidle_state5_time divisor = 1
2080 -
2081 -[cpu.cpu3_cpuidle]
2082 - history = 5
2083 - # enabled = yes
2084 - # cache directory = /var/cache/netdata/cpu.cpu3_cpuidle
2085 - # chart type = stacked
2086 - # type = cpu
2087 - # family = cpuidle
2088 - # units = percentage
2089 - # context = cpuidle.cpuidle
2090 - # priority = 6003
2091 - # name = cpu.cpu3_cpuidle
2092 - # title = C-state residency time
2093 - # dim cpu3_active_time name = C0 (active)
2094 - # dim cpu3_active_time algorithm = percentage-of-incremental-row
2095 - # dim cpu3_active_time multiplier = 1
2096 - # dim cpu3_active_time divisor = 1
2097 - # dim cpu3_cpuidle_state0_time name = POLL
2098 - # dim cpu3_cpuidle_state0_time algorithm = percentage-of-incremental-row
2099 - # dim cpu3_cpuidle_state0_time multiplier = 1
2100 - # dim cpu3_cpuidle_state0_time divisor = 1
2101 - # dim cpu3_cpuidle_state1_time name = C1
2102 - # dim cpu3_cpuidle_state1_time algorithm = percentage-of-incremental-row
2103 - # dim cpu3_cpuidle_state1_time multiplier = 1
2104 - # dim cpu3_cpuidle_state1_time divisor = 1
2105 - # dim cpu3_cpuidle_state2_time name = C1E
2106 - # dim cpu3_cpuidle_state2_time algorithm = percentage-of-incremental-row
2107 - # dim cpu3_cpuidle_state2_time multiplier = 1
2108 - # dim cpu3_cpuidle_state2_time divisor = 1
2109 - # dim cpu3_cpuidle_state3_time name = C3
2110 - # dim cpu3_cpuidle_state3_time algorithm = percentage-of-incremental-row
2111 - # dim cpu3_cpuidle_state3_time multiplier = 1
2112 - # dim cpu3_cpuidle_state3_time divisor = 1
2113 - # dim cpu3_cpuidle_state4_time name = C6
2114 - # dim cpu3_cpuidle_state4_time algorithm = percentage-of-incremental-row
2115 - # dim cpu3_cpuidle_state4_time multiplier = 1
2116 - # dim cpu3_cpuidle_state4_time divisor = 1
2117 - # dim cpu3_cpuidle_state5_time name = C7s
2118 - # dim cpu3_cpuidle_state5_time algorithm = percentage-of-incremental-row
2119 - # dim cpu3_cpuidle_state5_time multiplier = 1
2120 - # dim cpu3_cpuidle_state5_time divisor = 1
2121 -
2122 -[cpu.cpu4_cpuidle]
2123 - history = 5
2124 - # enabled = yes
2125 - # cache directory = /var/cache/netdata/cpu.cpu4_cpuidle
2126 - # chart type = stacked
2127 - # type = cpu
2128 - # family = cpuidle
2129 - # units = percentage
2130 - # context = cpuidle.cpuidle
2131 - # priority = 6004
2132 - # name = cpu.cpu4_cpuidle
2133 - # title = C-state residency time
2134 - # dim cpu4_active_time name = C0 (active)
2135 - # dim cpu4_active_time algorithm = percentage-of-incremental-row
2136 - # dim cpu4_active_time multiplier = 1
2137 - # dim cpu4_active_time divisor = 1
2138 - # dim cpu4_cpuidle_state0_time name = POLL
2139 - # dim cpu4_cpuidle_state0_time algorithm = percentage-of-incremental-row
2140 - # dim cpu4_cpuidle_state0_time multiplier = 1
2141 - # dim cpu4_cpuidle_state0_time divisor = 1
2142 - # dim cpu4_cpuidle_state1_time name = C1
2143 - # dim cpu4_cpuidle_state1_time algorithm = percentage-of-incremental-row
2144 - # dim cpu4_cpuidle_state1_time multiplier = 1
2145 - # dim cpu4_cpuidle_state1_time divisor = 1
2146 - # dim cpu4_cpuidle_state2_time name = C1E
2147 - # dim cpu4_cpuidle_state2_time algorithm = percentage-of-incremental-row
2148 - # dim cpu4_cpuidle_state2_time multiplier = 1
2149 - # dim cpu4_cpuidle_state2_time divisor = 1
2150 - # dim cpu4_cpuidle_state3_time name = C3
2151 - # dim cpu4_cpuidle_state3_time algorithm = percentage-of-incremental-row
2152 - # dim cpu4_cpuidle_state3_time multiplier = 1
2153 - # dim cpu4_cpuidle_state3_time divisor = 1
2154 - # dim cpu4_cpuidle_state4_time name = C6
2155 - # dim cpu4_cpuidle_state4_time algorithm = percentage-of-incremental-row
2156 - # dim cpu4_cpuidle_state4_time multiplier = 1
2157 - # dim cpu4_cpuidle_state4_time divisor = 1
2158 - # dim cpu4_cpuidle_state5_time name = C7s
2159 - # dim cpu4_cpuidle_state5_time algorithm = percentage-of-incremental-row
2160 - # dim cpu4_cpuidle_state5_time multiplier = 1
2161 - # dim cpu4_cpuidle_state5_time divisor = 1
2162 -
2163 -[cpu.cpu5_cpuidle]
2164 - history = 5
2165 - # enabled = yes
2166 - # cache directory = /var/cache/netdata/cpu.cpu5_cpuidle
2167 - # chart type = stacked
2168 - # type = cpu
2169 - # family = cpuidle
2170 - # units = percentage
2171 - # context = cpuidle.cpuidle
2172 - # priority = 6005
2173 - # name = cpu.cpu5_cpuidle
2174 - # title = C-state residency time
2175 - # dim cpu5_active_time name = C0 (active)
2176 - # dim cpu5_active_time algorithm = percentage-of-incremental-row
2177 - # dim cpu5_active_time multiplier = 1
2178 - # dim cpu5_active_time divisor = 1
2179 - # dim cpu5_cpuidle_state0_time name = POLL
2180 - # dim cpu5_cpuidle_state0_time algorithm = percentage-of-incremental-row
2181 - # dim cpu5_cpuidle_state0_time multiplier = 1
2182 - # dim cpu5_cpuidle_state0_time divisor = 1
2183 - # dim cpu5_cpuidle_state1_time name = C1
2184 - # dim cpu5_cpuidle_state1_time algorithm = percentage-of-incremental-row
2185 - # dim cpu5_cpuidle_state1_time multiplier = 1
2186 - # dim cpu5_cpuidle_state1_time divisor = 1
2187 - # dim cpu5_cpuidle_state2_time name = C1E
2188 - # dim cpu5_cpuidle_state2_time algorithm = percentage-of-incremental-row
2189 - # dim cpu5_cpuidle_state2_time multiplier = 1
2190 - # dim cpu5_cpuidle_state2_time divisor = 1
2191 - # dim cpu5_cpuidle_state3_time name = C3
2192 - # dim cpu5_cpuidle_state3_time algorithm = percentage-of-incremental-row
2193 - # dim cpu5_cpuidle_state3_time multiplier = 1
2194 - # dim cpu5_cpuidle_state3_time divisor = 1
2195 - # dim cpu5_cpuidle_state4_time name = C6
2196 - # dim cpu5_cpuidle_state4_time algorithm = percentage-of-incremental-row
2197 - # dim cpu5_cpuidle_state4_time multiplier = 1
2198 - # dim cpu5_cpuidle_state4_time divisor = 1
2199 - # dim cpu5_cpuidle_state5_time name = C7s
2200 - # dim cpu5_cpuidle_state5_time algorithm = percentage-of-incremental-row
2201 - # dim cpu5_cpuidle_state5_time multiplier = 1
2202 - # dim cpu5_cpuidle_state5_time divisor = 1
2203 -
2204 -[cpu.cpu6_cpuidle]
2205 - history = 5
2206 - # enabled = yes
2207 - # cache directory = /var/cache/netdata/cpu.cpu6_cpuidle
2208 - # chart type = stacked
2209 - # type = cpu
2210 - # family = cpuidle
2211 - # units = percentage
2212 - # context = cpuidle.cpuidle
2213 - # priority = 6006
2214 - # name = cpu.cpu6_cpuidle
2215 - # title = C-state residency time
2216 - # dim cpu6_active_time name = C0 (active)
2217 - # dim cpu6_active_time algorithm = percentage-of-incremental-row
2218 - # dim cpu6_active_time multiplier = 1
2219 - # dim cpu6_active_time divisor = 1
2220 - # dim cpu6_cpuidle_state0_time name = POLL
2221 - # dim cpu6_cpuidle_state0_time algorithm = percentage-of-incremental-row
2222 - # dim cpu6_cpuidle_state0_time multiplier = 1
2223 - # dim cpu6_cpuidle_state0_time divisor = 1
2224 - # dim cpu6_cpuidle_state1_time name = C1
2225 - # dim cpu6_cpuidle_state1_time algorithm = percentage-of-incremental-row
2226 - # dim cpu6_cpuidle_state1_time multiplier = 1
2227 - # dim cpu6_cpuidle_state1_time divisor = 1
2228 - # dim cpu6_cpuidle_state2_time name = C1E
2229 - # dim cpu6_cpuidle_state2_time algorithm = percentage-of-incremental-row
2230 - # dim cpu6_cpuidle_state2_time multiplier = 1
2231 - # dim cpu6_cpuidle_state2_time divisor = 1
2232 - # dim cpu6_cpuidle_state3_time name = C3
2233 - # dim cpu6_cpuidle_state3_time algorithm = percentage-of-incremental-row
2234 - # dim cpu6_cpuidle_state3_time multiplier = 1
2235 - # dim cpu6_cpuidle_state3_time divisor = 1
2236 - # dim cpu6_cpuidle_state4_time name = C6
2237 - # dim cpu6_cpuidle_state4_time algorithm = percentage-of-incremental-row
2238 - # dim cpu6_cpuidle_state4_time multiplier = 1
2239 - # dim cpu6_cpuidle_state4_time divisor = 1
2240 - # dim cpu6_cpuidle_state5_time name = C7s
2241 - # dim cpu6_cpuidle_state5_time algorithm = percentage-of-incremental-row
2242 - # dim cpu6_cpuidle_state5_time multiplier = 1
2243 - # dim cpu6_cpuidle_state5_time divisor = 1
2244 -
2245 -[cpu.cpu7_cpuidle]
2246 - history = 5
2247 - # enabled = yes
2248 - # cache directory = /var/cache/netdata/cpu.cpu7_cpuidle
2249 - # chart type = stacked
2250 - # type = cpu
2251 - # family = cpuidle
2252 - # units = percentage
2253 - # context = cpuidle.cpuidle
2254 - # priority = 6007
2255 - # name = cpu.cpu7_cpuidle
2256 - # title = C-state residency time
2257 - # dim cpu7_active_time name = C0 (active)
2258 - # dim cpu7_active_time algorithm = percentage-of-incremental-row
2259 - # dim cpu7_active_time multiplier = 1
2260 - # dim cpu7_active_time divisor = 1
2261 - # dim cpu7_cpuidle_state0_time name = POLL
2262 - # dim cpu7_cpuidle_state0_time algorithm = percentage-of-incremental-row
2263 - # dim cpu7_cpuidle_state0_time multiplier = 1
2264 - # dim cpu7_cpuidle_state0_time divisor = 1
2265 - # dim cpu7_cpuidle_state1_time name = C1
2266 - # dim cpu7_cpuidle_state1_time algorithm = percentage-of-incremental-row
2267 - # dim cpu7_cpuidle_state1_time multiplier = 1
2268 - # dim cpu7_cpuidle_state1_time divisor = 1
2269 - # dim cpu7_cpuidle_state2_time name = C1E
2270 - # dim cpu7_cpuidle_state2_time algorithm = percentage-of-incremental-row
2271 - # dim cpu7_cpuidle_state2_time multiplier = 1
2272 - # dim cpu7_cpuidle_state2_time divisor = 1
2273 - # dim cpu7_cpuidle_state3_time name = C3
2274 - # dim cpu7_cpuidle_state3_time algorithm = percentage-of-incremental-row
2275 - # dim cpu7_cpuidle_state3_time multiplier = 1
2276 - # dim cpu7_cpuidle_state3_time divisor = 1
2277 - # dim cpu7_cpuidle_state4_time name = C6
2278 - # dim cpu7_cpuidle_state4_time algorithm = percentage-of-incremental-row
2279 - # dim cpu7_cpuidle_state4_time multiplier = 1
2280 - # dim cpu7_cpuidle_state4_time divisor = 1
2281 - # dim cpu7_cpuidle_state5_time name = C7s
2282 - # dim cpu7_cpuidle_state5_time algorithm = percentage-of-incremental-row
2283 - # dim cpu7_cpuidle_state5_time multiplier = 1
2284 - # dim cpu7_cpuidle_state5_time divisor = 1
2285 -
2286 -[system.uptime]
2287 - history = 5
2288 - # enabled = yes
2289 - # cache directory = /var/cache/netdata/system.uptime
2290 - # chart type = line
2291 - # type = system
2292 - # family = uptime
2293 - # units = seconds
2294 - # context = system.uptime
2295 - # priority = 1000
2296 - # name = system.uptime
2297 - # title = System Uptime
2298 - # dim uptime name = uptime
2299 - # dim uptime algorithm = absolute
2300 - # dim uptime multiplier = 1
2301 - # dim uptime divisor = 1000
2302 -
2303 -[system.load]
2304 - history = 5
2305 - # enabled = yes
2306 - # cache directory = /var/cache/netdata/system.load
2307 - # chart type = line
2308 - # type = system
2309 - # family = load
2310 - # units = load
2311 - # context = system.load
2312 - # priority = 100
2313 - # name = system.load
2314 - # title = System Load Average
2315 - # dim load1 name = load1
2316 - # dim load1 algorithm = absolute
2317 - # dim load1 multiplier = 1
2318 - # dim load1 divisor = 1000
2319 - # dim load5 name = load5
2320 - # dim load5 algorithm = absolute
2321 - # dim load5 multiplier = 1
2322 - # dim load5 divisor = 1000
2323 - # dim load15 name = load15
2324 - # dim load15 algorithm = absolute
2325 - # dim load15 multiplier = 1
2326 - # dim load15 divisor = 1000
2327 -
2328 -[system.active_processes]
2329 - history = 5
2330 - # enabled = yes
2331 - # cache directory = /var/cache/netdata/system.active_processes
2332 - # chart type = line
2333 - # type = system
2334 - # family = processes
2335 - # units = processes
2336 - # context = system.active_processes
2337 - # priority = 750
2338 - # name = system.active_processes
2339 - # title = System Active Processes
2340 - # dim active name = active
2341 - # dim active algorithm = absolute
2342 - # dim active multiplier = 1
2343 - # dim active divisor = 1
2344 -
2345 -[system.entropy]
2346 - history = 5
2347 - # enabled = yes
2348 - # cache directory = /var/cache/netdata/system.entropy
2349 - # chart type = line
2350 - # type = system
2351 - # family = entropy
2352 - # units = entropy
2353 - # context = system.entropy
2354 - # priority = 1000
2355 - # name = system.entropy
2356 - # title = Available Entropy
2357 - # dim entropy name = entropy
2358 - # dim entropy algorithm = absolute
2359 - # dim entropy multiplier = 1
2360 - # dim entropy divisor = 1
2361 -
2362 -[system.interrupts]
2363 - history = 5
2364 - # enabled = yes
2365 - # cache directory = /var/cache/netdata/system.interrupts
2366 - # chart type = stacked
2367 - # type = system
2368 - # family = interrupts
2369 - # units = interrupts/s
2370 - # context = system.interrupts
2371 - # priority = 1000
2372 - # name = system.interrupts
2373 - # title = System interrupts
2374 - # dim 0 name = timer_0
2375 - # dim 0 algorithm = incremental
2376 - # dim 0 multiplier = 1
2377 - # dim 0 divisor = 1
2378 - # dim 8 name = rtc0_8
2379 - # dim 8 algorithm = incremental
2380 - # dim 8 multiplier = 1
2381 - # dim 8 divisor = 1
2382 - # dim 16 name = ehci_hcd:usb1_16
2383 - # dim 16 algorithm = incremental
2384 - # dim 16 multiplier = 1
2385 - # dim 16 divisor = 1
2386 - # dim 18 name = snd_hda_intel:card1_18
2387 - # dim 18 algorithm = incremental
2388 - # dim 18 multiplier = 1
2389 - # dim 18 divisor = 1
2390 - # dim 23 name = ehci_hcd:usb3_23
2391 - # dim 23 algorithm = incremental
2392 - # dim 23 multiplier = 1
2393 - # dim 23 divisor = 1
2394 - # dim 25 name = ahci[0000:00:1f.2]_25
2395 - # dim 25 algorithm = incremental
2396 - # dim 25 multiplier = 1
2397 - # dim 25 divisor = 1
2398 - # dim 26 name = xhci_hcd_26
2399 - # dim 26 algorithm = incremental
2400 - # dim 26 multiplier = 1
2401 - # dim 26 divisor = 1
2402 - # dim 27 name = mei_me_27
2403 - # dim 27 algorithm = incremental
2404 - # dim 27 multiplier = 1
2405 - # dim 27 divisor = 1
2406 - # dim 28 name = snd_hda_intel:card0_28
2407 - # dim 28 algorithm = incremental
2408 - # dim 28 multiplier = 1
2409 - # dim 28 divisor = 1
2410 - # dim 29 name = enp4s0_29
2411 - # dim 29 algorithm = incremental
2412 - # dim 29 multiplier = 1
2413 - # dim 29 divisor = 1
2414 - # dim 30 name = enp4s0-TxRx-0_30
2415 - # dim 30 algorithm = incremental
2416 - # dim 30 multiplier = 1
2417 - # dim 30 divisor = 1
2418 - # dim 31 name = enp4s0-tx-1_31
2419 - # dim 31 algorithm = incremental
2420 - # dim 31 multiplier = 1
2421 - # dim 31 divisor = 1
2422 - # dim 32 name = enp4s0-tx-2_32
2423 - # dim 32 algorithm = incremental
2424 - # dim 32 multiplier = 1
2425 - # dim 32 divisor = 1
2426 - # dim 33 name = enp4s0-tx-3_33
2427 - # dim 33 algorithm = incremental
2428 - # dim 33 multiplier = 1
2429 - # dim 33 divisor = 1
2430 - # dim 34 name = nvidia_34
2431 - # dim 34 algorithm = incremental
2432 - # dim 34 multiplier = 1
2433 - # dim 34 divisor = 1
2434 - # dim NMI name = NMI
2435 - # dim NMI algorithm = incremental
2436 - # dim NMI multiplier = 1
2437 - # dim NMI divisor = 1
2438 - # dim LOC name = LOC
2439 - # dim LOC algorithm = incremental
2440 - # dim LOC multiplier = 1
2441 - # dim LOC divisor = 1
2442 - # dim PMI name = PMI
2443 - # dim PMI algorithm = incremental
2444 - # dim PMI multiplier = 1
2445 - # dim PMI divisor = 1
2446 - # dim IWI name = IWI
2447 - # dim IWI algorithm = incremental
2448 - # dim IWI multiplier = 1
2449 - # dim IWI divisor = 1
2450 - # dim RES name = RES
2451 - # dim RES algorithm = incremental
2452 - # dim RES multiplier = 1
2453 - # dim RES divisor = 1
2454 - # dim CAL name = CAL
2455 - # dim CAL algorithm = incremental
2456 - # dim CAL multiplier = 1
2457 - # dim CAL divisor = 1
2458 - # dim TLB name = TLB
2459 - # dim TLB algorithm = incremental
2460 - # dim TLB multiplier = 1
2461 - # dim TLB divisor = 1
2462 - # dim MCP name = MCP
2463 - # dim MCP algorithm = incremental
2464 - # dim MCP multiplier = 1
2465 - # dim MCP divisor = 1
2466 -
2467 -[cpu.cpu0_interrupts]
2468 - history = 5
2469 - # enabled = yes
2470 - # cache directory = /var/cache/netdata/cpu.cpu0_interrupts
2471 - # chart type = stacked
2472 - # type = cpu
2473 - # family = interrupts
2474 - # units = interrupts/s
2475 - # context = cpu.interrupts
2476 - # priority = 1100
2477 - # name = cpu.cpu0_interrupts
2478 - # title = CPU0 Interrupts
2479 - # dim 0 name = timer_0
2480 - # dim 0 algorithm = incremental
2481 - # dim 0 multiplier = 1
2482 - # dim 0 divisor = 1
2483 - # dim 34 name = nvidia_34
2484 - # dim 34 algorithm = incremental
2485 - # dim 34 multiplier = 1
2486 - # dim 34 divisor = 1
2487 - # dim NMI name = NMI
2488 - # dim NMI algorithm = incremental
2489 - # dim NMI multiplier = 1
2490 - # dim NMI divisor = 1
2491 - # dim LOC name = LOC
2492 - # dim LOC algorithm = incremental
2493 - # dim LOC multiplier = 1
2494 - # dim LOC divisor = 1
2495 - # dim PMI name = PMI
2496 - # dim PMI algorithm = incremental
2497 - # dim PMI multiplier = 1
2498 - # dim PMI divisor = 1
2499 - # dim IWI name = IWI
2500 - # dim IWI algorithm = incremental
2501 - # dim IWI multiplier = 1
2502 - # dim IWI divisor = 1
2503 - # dim RES name = RES
2504 - # dim RES algorithm = incremental
2505 - # dim RES multiplier = 1
2506 - # dim RES divisor = 1
2507 - # dim CAL name = CAL
2508 - # dim CAL algorithm = incremental
2509 - # dim CAL multiplier = 1
2510 - # dim CAL divisor = 1
2511 - # dim TLB name = TLB
2512 - # dim TLB algorithm = incremental
2513 - # dim TLB multiplier = 1
2514 - # dim TLB divisor = 1
2515 - # dim MCP name = MCP
2516 - # dim MCP algorithm = incremental
2517 - # dim MCP multiplier = 1
2518 - # dim MCP divisor = 1
2519 -
2520 -[cpu.cpu1_interrupts]
2521 - history = 5
2522 - # enabled = yes
2523 - # cache directory = /var/cache/netdata/cpu.cpu1_interrupts
2524 - # chart type = stacked
2525 - # type = cpu
2526 - # family = interrupts
2527 - # units = interrupts/s
2528 - # context = cpu.interrupts
2529 - # priority = 1101
2530 - # name = cpu.cpu1_interrupts
2531 - # title = CPU1 Interrupts
2532 - # dim 27 name = mei_me_27
2533 - # dim 27 algorithm = incremental
2534 - # dim 27 multiplier = 1
2535 - # dim 27 divisor = 1
2536 - # dim NMI name = NMI
2537 - # dim NMI algorithm = incremental
2538 - # dim NMI multiplier = 1
2539 - # dim NMI divisor = 1
2540 - # dim LOC name = LOC
2541 - # dim LOC algorithm = incremental
2542 - # dim LOC multiplier = 1
2543 - # dim LOC divisor = 1
2544 - # dim PMI name = PMI
2545 - # dim PMI algorithm = incremental
2546 - # dim PMI multiplier = 1
2547 - # dim PMI divisor = 1
2548 - # dim RES name = RES
2549 - # dim RES algorithm = incremental
2550 - # dim RES multiplier = 1
2551 - # dim RES divisor = 1
2552 - # dim CAL name = CAL
2553 - # dim CAL algorithm = incremental
2554 - # dim CAL multiplier = 1
2555 - # dim CAL divisor = 1
2556 - # dim TLB name = TLB
2557 - # dim TLB algorithm = incremental
2558 - # dim TLB multiplier = 1
2559 - # dim TLB divisor = 1
2560 - # dim MCP name = MCP
2561 - # dim MCP algorithm = incremental
2562 - # dim MCP multiplier = 1
2563 - # dim MCP divisor = 1
2564 -
2565 -[cpu.cpu2_interrupts]
2566 - history = 5
2567 - # enabled = yes
2568 - # cache directory = /var/cache/netdata/cpu.cpu2_interrupts
2569 - # chart type = stacked
2570 - # type = cpu
2571 - # family = interrupts
2572 - # units = interrupts/s
2573 - # context = cpu.interrupts
2574 - # priority = 1102
2575 - # name = cpu.cpu2_interrupts
2576 - # title = CPU2 Interrupts
2577 - # dim 8 name = rtc0_8
2578 - # dim 8 algorithm = incremental
2579 - # dim 8 multiplier = 1
2580 - # dim 8 divisor = 1
2581 - # dim 28 name = snd_hda_intel:card0_28
2582 - # dim 28 algorithm = incremental
2583 - # dim 28 multiplier = 1
2584 - # dim 28 divisor = 1
2585 - # dim NMI name = NMI
2586 - # dim NMI algorithm = incremental
2587 - # dim NMI multiplier = 1
2588 - # dim NMI divisor = 1
2589 - # dim LOC name = LOC
2590 - # dim LOC algorithm = incremental
2591 - # dim LOC multiplier = 1
2592 - # dim LOC divisor = 1
2593 - # dim PMI name = PMI
2594 - # dim PMI algorithm = incremental
2595 - # dim PMI multiplier = 1
2596 - # dim PMI divisor = 1
2597 - # dim RES name = RES
2598 - # dim RES algorithm = incremental
2599 - # dim RES multiplier = 1
2600 - # dim RES divisor = 1
2601 - # dim CAL name = CAL
2602 - # dim CAL algorithm = incremental
2603 - # dim CAL multiplier = 1
2604 - # dim CAL divisor = 1
2605 - # dim TLB name = TLB
2606 - # dim TLB algorithm = incremental
2607 - # dim TLB multiplier = 1
2608 - # dim TLB divisor = 1
2609 - # dim MCP name = MCP
2610 - # dim MCP algorithm = incremental
2611 - # dim MCP multiplier = 1
2612 - # dim MCP divisor = 1
2613 -
2614 -[cpu.cpu3_interrupts]
2615 - history = 5
2616 - # enabled = yes
2617 - # cache directory = /var/cache/netdata/cpu.cpu3_interrupts
2618 - # chart type = stacked
2619 - # type = cpu
2620 - # family = interrupts
2621 - # units = interrupts/s
2622 - # context = cpu.interrupts
2623 - # priority = 1103
2624 - # name = cpu.cpu3_interrupts
2625 - # title = CPU3 Interrupts
2626 - # dim 18 name = snd_hda_intel:card1_18
2627 - # dim 18 algorithm = incremental
2628 - # dim 18 multiplier = 1
2629 - # dim 18 divisor = 1
2630 - # dim 29 name = enp4s0_29
2631 - # dim 29 algorithm = incremental
2632 - # dim 29 multiplier = 1
2633 - # dim 29 divisor = 1
2634 - # dim NMI name = NMI
2635 - # dim NMI algorithm = incremental
2636 - # dim NMI multiplier = 1
2637 - # dim NMI divisor = 1
2638 - # dim LOC name = LOC
2639 - # dim LOC algorithm = incremental
2640 - # dim LOC multiplier = 1
2641 - # dim LOC divisor = 1
2642 - # dim PMI name = PMI
2643 - # dim PMI algorithm = incremental
2644 - # dim PMI multiplier = 1
2645 - # dim PMI divisor = 1
2646 - # dim IWI name = IWI
2647 - # dim IWI algorithm = incremental
2648 - # dim IWI multiplier = 1
2649 - # dim IWI divisor = 1
2650 - # dim RES name = RES
2651 - # dim RES algorithm = incremental
2652 - # dim RES multiplier = 1
2653 - # dim RES divisor = 1
2654 - # dim CAL name = CAL
2655 - # dim CAL algorithm = incremental
2656 - # dim CAL multiplier = 1
2657 - # dim CAL divisor = 1
2658 - # dim TLB name = TLB
2659 - # dim TLB algorithm = incremental
2660 - # dim TLB multiplier = 1
2661 - # dim TLB divisor = 1
2662 - # dim MCP name = MCP
2663 - # dim MCP algorithm = incremental
2664 - # dim MCP multiplier = 1
2665 - # dim MCP divisor = 1
2666 -
2667 -[cpu.cpu4_interrupts]
2668 - history = 5
2669 - # enabled = yes
2670 - # cache directory = /var/cache/netdata/cpu.cpu4_interrupts
2671 - # chart type = stacked
2672 - # type = cpu
2673 - # family = interrupts
2674 - # units = interrupts/s
2675 - # context = cpu.interrupts
2676 - # priority = 1104
2677 - # name = cpu.cpu4_interrupts
2678 - # title = CPU4 Interrupts
2679 - # dim 16 name = ehci_hcd:usb1_16
2680 - # dim 16 algorithm = incremental
2681 - # dim 16 multiplier = 1
2682 - # dim 16 divisor = 1
2683 - # dim 30 name = enp4s0-TxRx-0_30
2684 - # dim 30 algorithm = incremental
2685 - # dim 30 multiplier = 1
2686 - # dim 30 divisor = 1
2687 - # dim NMI name = NMI
2688 - # dim NMI algorithm = incremental
2689 - # dim NMI multiplier = 1
2690 - # dim NMI divisor = 1
2691 - # dim LOC name = LOC
2692 - # dim LOC algorithm = incremental
2693 - # dim LOC multiplier = 1
2694 - # dim LOC divisor = 1
2695 - # dim PMI name = PMI
2696 - # dim PMI algorithm = incremental
2697 - # dim PMI multiplier = 1
2698 - # dim PMI divisor = 1
2699 - # dim RES name = RES
2700 - # dim RES algorithm = incremental
2701 - # dim RES multiplier = 1
2702 - # dim RES divisor = 1
2703 - # dim CAL name = CAL
2704 - # dim CAL algorithm = incremental
2705 - # dim CAL multiplier = 1
2706 - # dim CAL divisor = 1
2707 - # dim TLB name = TLB
2708 - # dim TLB algorithm = incremental
2709 - # dim TLB multiplier = 1
2710 - # dim TLB divisor = 1
2711 - # dim MCP name = MCP
2712 - # dim MCP algorithm = incremental
2713 - # dim MCP multiplier = 1
2714 - # dim MCP divisor = 1
2715 -
2716 -[cpu.cpu5_interrupts]
2717 - history = 5
2718 - # enabled = yes
2719 - # cache directory = /var/cache/netdata/cpu.cpu5_interrupts
2720 - # chart type = stacked
2721 - # type = cpu
2722 - # family = interrupts
2723 - # units = interrupts/s
2724 - # context = cpu.interrupts
2725 - # priority = 1105
2726 - # name = cpu.cpu5_interrupts
2727 - # title = CPU5 Interrupts
2728 - # dim 25 name = ahci[0000:00:1f.2]_25
2729 - # dim 25 algorithm = incremental
2730 - # dim 25 multiplier = 1
2731 - # dim 25 divisor = 1
2732 - # dim 31 name = enp4s0-tx-1_31
2733 - # dim 31 algorithm = incremental
2734 - # dim 31 multiplier = 1
2735 - # dim 31 divisor = 1
2736 - # dim NMI name = NMI
2737 - # dim NMI algorithm = incremental
2738 - # dim NMI multiplier = 1
2739 - # dim NMI divisor = 1
2740 - # dim LOC name = LOC
2741 - # dim LOC algorithm = incremental
2742 - # dim LOC multiplier = 1
2743 - # dim LOC divisor = 1
2744 - # dim PMI name = PMI
2745 - # dim PMI algorithm = incremental
2746 - # dim PMI multiplier = 1
2747 - # dim PMI divisor = 1
2748 - # dim RES name = RES
2749 - # dim RES algorithm = incremental
2750 - # dim RES multiplier = 1
2751 - # dim RES divisor = 1
2752 - # dim CAL name = CAL
2753 - # dim CAL algorithm = incremental
2754 - # dim CAL multiplier = 1
2755 - # dim CAL divisor = 1
2756 - # dim TLB name = TLB
2757 - # dim TLB algorithm = incremental
2758 - # dim TLB multiplier = 1
2759 - # dim TLB divisor = 1
2760 - # dim MCP name = MCP
2761 - # dim MCP algorithm = incremental
2762 - # dim MCP multiplier = 1
2763 - # dim MCP divisor = 1
2764 -
2765 -[cpu.cpu6_interrupts]
2766 - history = 5
2767 - # enabled = yes
2768 - # cache directory = /var/cache/netdata/cpu.cpu6_interrupts
2769 - # chart type = stacked
2770 - # type = cpu
2771 - # family = interrupts
2772 - # units = interrupts/s
2773 - # context = cpu.interrupts
2774 - # priority = 1106
2775 - # name = cpu.cpu6_interrupts
2776 - # title = CPU6 Interrupts
2777 - # dim 26 name = xhci_hcd_26
2778 - # dim 26 algorithm = incremental
2779 - # dim 26 multiplier = 1
2780 - # dim 26 divisor = 1
2781 - # dim 32 name = enp4s0-tx-2_32
2782 - # dim 32 algorithm = incremental
2783 - # dim 32 multiplier = 1
2784 - # dim 32 divisor = 1
2785 - # dim NMI name = NMI
2786 - # dim NMI algorithm = incremental
2787 - # dim NMI multiplier = 1
2788 - # dim NMI divisor = 1
2789 - # dim LOC name = LOC
2790 - # dim LOC algorithm = incremental
2791 - # dim LOC multiplier = 1
2792 - # dim LOC divisor = 1
2793 - # dim PMI name = PMI
2794 - # dim PMI algorithm = incremental
2795 - # dim PMI multiplier = 1
2796 - # dim PMI divisor = 1
2797 - # dim IWI name = IWI
2798 - # dim IWI algorithm = incremental
2799 - # dim IWI multiplier = 1
2800 - # dim IWI divisor = 1
2801 - # dim RES name = RES
2802 - # dim RES algorithm = incremental
2803 - # dim RES multiplier = 1
2804 - # dim RES divisor = 1
2805 - # dim CAL name = CAL
2806 - # dim CAL algorithm = incremental
2807 - # dim CAL multiplier = 1
2808 - # dim CAL divisor = 1
2809 - # dim TLB name = TLB
2810 - # dim TLB algorithm = incremental
2811 - # dim TLB multiplier = 1
2812 - # dim TLB divisor = 1
2813 - # dim MCP name = MCP
2814 - # dim MCP algorithm = incremental
2815 - # dim MCP multiplier = 1
2816 - # dim MCP divisor = 1
2817 -
2818 -[cpu.cpu7_interrupts]
2819 - history = 5
2820 - # enabled = yes
2821 - # cache directory = /var/cache/netdata/cpu.cpu7_interrupts
2822 - # chart type = stacked
2823 - # type = cpu
2824 - # family = interrupts
2825 - # units = interrupts/s
2826 - # context = cpu.interrupts
2827 - # priority = 1107
2828 - # name = cpu.cpu7_interrupts
2829 - # title = CPU7 Interrupts
2830 - # dim 23 name = ehci_hcd:usb3_23
2831 - # dim 23 algorithm = incremental
2832 - # dim 23 multiplier = 1
2833 - # dim 23 divisor = 1
2834 - # dim 33 name = enp4s0-tx-3_33
2835 - # dim 33 algorithm = incremental
2836 - # dim 33 multiplier = 1
2837 - # dim 33 divisor = 1
2838 - # dim NMI name = NMI
2839 - # dim NMI algorithm = incremental
2840 - # dim NMI multiplier = 1
2841 - # dim NMI divisor = 1
2842 - # dim LOC name = LOC
2843 - # dim LOC algorithm = incremental
2844 - # dim LOC multiplier = 1
2845 - # dim LOC divisor = 1
2846 - # dim PMI name = PMI
2847 - # dim PMI algorithm = incremental
2848 - # dim PMI multiplier = 1
2849 - # dim PMI divisor = 1
2850 - # dim RES name = RES
2851 - # dim RES algorithm = incremental
2852 - # dim RES multiplier = 1
2853 - # dim RES divisor = 1
2854 - # dim CAL name = CAL
2855 - # dim CAL algorithm = incremental
2856 - # dim CAL multiplier = 1
2857 - # dim CAL divisor = 1
2858 - # dim TLB name = TLB
2859 - # dim TLB algorithm = incremental
2860 - # dim TLB multiplier = 1
2861 - # dim TLB divisor = 1
2862 - # dim MCP name = MCP
2863 - # dim MCP algorithm = incremental
2864 - # dim MCP multiplier = 1
2865 - # dim MCP divisor = 1
2866 -
2867 -[system.softirqs]
2868 - history = 5
2869 - # enabled = yes
2870 - # cache directory = /var/cache/netdata/system.softirqs
2871 - # chart type = stacked
2872 - # type = system
2873 - # family = softirqs
2874 - # units = softirqs/s
2875 - # context = system.softirqs
2876 - # priority = 950
2877 - # name = system.softirqs
2878 - # title = System softirqs
2879 - # dim HI name = HI
2880 - # dim HI algorithm = incremental
2881 - # dim HI multiplier = 1
2882 - # dim HI divisor = 1
2883 - # dim TIMER name = TIMER
2884 - # dim TIMER algorithm = incremental
2885 - # dim TIMER multiplier = 1
2886 - # dim TIMER divisor = 1
2887 - # dim NET_TX name = NET_TX
2888 - # dim NET_TX algorithm = incremental
2889 - # dim NET_TX multiplier = 1
2890 - # dim NET_TX divisor = 1
2891 - # dim NET_RX name = NET_RX
2892 - # dim NET_RX algorithm = incremental
2893 - # dim NET_RX multiplier = 1
2894 - # dim NET_RX divisor = 1
2895 - # dim TASKLET name = TASKLET
2896 - # dim TASKLET algorithm = incremental
2897 - # dim TASKLET multiplier = 1
2898 - # dim TASKLET divisor = 1
2899 - # dim SCHED name = SCHED
2900 - # dim SCHED algorithm = incremental
2901 - # dim SCHED multiplier = 1
2902 - # dim SCHED divisor = 1
2903 - # dim HRTIMER name = HRTIMER
2904 - # dim HRTIMER algorithm = incremental
2905 - # dim HRTIMER multiplier = 1
2906 - # dim HRTIMER divisor = 1
2907 - # dim RCU name = RCU
2908 - # dim RCU algorithm = incremental
2909 - # dim RCU multiplier = 1
2910 - # dim RCU divisor = 1
2911 -
2912 -[cpu.cpu0_softirqs]
2913 - history = 5
2914 - # enabled = yes
2915 - # cache directory = /var/cache/netdata/cpu.cpu0_softirqs
2916 - # chart type = stacked
2917 - # type = cpu
2918 - # family = softirqs
2919 - # units = softirqs/s
2920 - # context = cpu.softirqs
2921 - # priority = 3000
2922 - # name = cpu.cpu0_softirqs
2923 - # title = CPU0 softirqs
2924 - # dim HI name = HI
2925 - # dim HI algorithm = incremental
2926 - # dim HI multiplier = 1
2927 - # dim HI divisor = 1
2928 - # dim TIMER name = TIMER
2929 - # dim TIMER algorithm = incremental
2930 - # dim TIMER multiplier = 1
2931 - # dim TIMER divisor = 1
2932 - # dim NET_TX name = NET_TX
2933 - # dim NET_TX algorithm = incremental
2934 - # dim NET_TX multiplier = 1
2935 - # dim NET_TX divisor = 1
2936 - # dim NET_RX name = NET_RX
2937 - # dim NET_RX algorithm = incremental
2938 - # dim NET_RX multiplier = 1
2939 - # dim NET_RX divisor = 1
2940 - # dim TASKLET name = TASKLET
2941 - # dim TASKLET algorithm = incremental
2942 - # dim TASKLET multiplier = 1
2943 - # dim TASKLET divisor = 1
2944 - # dim SCHED name = SCHED
2945 - # dim SCHED algorithm = incremental
2946 - # dim SCHED multiplier = 1
2947 - # dim SCHED divisor = 1
2948 - # dim RCU name = RCU
2949 - # dim RCU algorithm = incremental
2950 - # dim RCU multiplier = 1
2951 - # dim RCU divisor = 1
2952 -
2953 -[cpu.cpu1_softirqs]
2954 - history = 5
2955 - # enabled = yes
2956 - # cache directory = /var/cache/netdata/cpu.cpu1_softirqs
2957 - # chart type = stacked
2958 - # type = cpu
2959 - # family = softirqs
2960 - # units = softirqs/s
2961 - # context = cpu.softirqs
2962 - # priority = 3001
2963 - # name = cpu.cpu1_softirqs
2964 - # title = CPU1 softirqs
2965 - # dim TIMER name = TIMER
2966 - # dim TIMER algorithm = incremental
2967 - # dim TIMER multiplier = 1
2968 - # dim TIMER divisor = 1
2969 - # dim NET_TX name = NET_TX
2970 - # dim NET_TX algorithm = incremental
2971 - # dim NET_TX multiplier = 1
2972 - # dim NET_TX divisor = 1
2973 - # dim NET_RX name = NET_RX
2974 - # dim NET_RX algorithm = incremental
2975 - # dim NET_RX multiplier = 1
2976 - # dim NET_RX divisor = 1
2977 - # dim TASKLET name = TASKLET
2978 - # dim TASKLET algorithm = incremental
2979 - # dim TASKLET multiplier = 1
2980 - # dim TASKLET divisor = 1
2981 - # dim SCHED name = SCHED
2982 - # dim SCHED algorithm = incremental
2983 - # dim SCHED multiplier = 1
2984 - # dim SCHED divisor = 1
2985 - # dim RCU name = RCU
2986 - # dim RCU algorithm = incremental
2987 - # dim RCU multiplier = 1
2988 - # dim RCU divisor = 1
2989 -
2990 -[cpu.cpu2_softirqs]
2991 - history = 5
2992 - # enabled = yes
2993 - # cache directory = /var/cache/netdata/cpu.cpu2_softirqs
2994 - # chart type = stacked
2995 - # type = cpu
2996 - # family = softirqs
2997 - # units = softirqs/s
2998 - # context = cpu.softirqs
2999 - # priority = 3002
3000 - # name = cpu.cpu2_softirqs
3001 - # title = CPU2 softirqs
3002 - # dim HI name = HI
3003 - # dim HI algorithm = incremental
3004 - # dim HI multiplier = 1
3005 - # dim HI divisor = 1
3006 - # dim TIMER name = TIMER
3007 - # dim TIMER algorithm = incremental
3008 - # dim TIMER multiplier = 1
3009 - # dim TIMER divisor = 1
3010 - # dim NET_TX name = NET_TX
3011 - # dim NET_TX algorithm = incremental
3012 - # dim NET_TX multiplier = 1
3013 - # dim NET_TX divisor = 1
3014 - # dim NET_RX name = NET_RX
3015 - # dim NET_RX algorithm = incremental
3016 - # dim NET_RX multiplier = 1
3017 - # dim NET_RX divisor = 1
3018 - # dim TASKLET name = TASKLET
3019 - # dim TASKLET algorithm = incremental
3020 - # dim TASKLET multiplier = 1
3021 - # dim TASKLET divisor = 1
3022 - # dim SCHED name = SCHED
3023 - # dim SCHED algorithm = incremental
3024 - # dim SCHED multiplier = 1
3025 - # dim SCHED divisor = 1
3026 - # dim RCU name = RCU
3027 - # dim RCU algorithm = incremental
3028 - # dim RCU multiplier = 1
3029 - # dim RCU divisor = 1
3030 -
3031 -[cpu.cpu3_softirqs]
3032 - history = 5
3033 - # enabled = yes
3034 - # cache directory = /var/cache/netdata/cpu.cpu3_softirqs
3035 - # chart type = stacked
3036 - # type = cpu
3037 - # family = softirqs
3038 - # units = softirqs/s
3039 - # context = cpu.softirqs
3040 - # priority = 3003
3041 - # name = cpu.cpu3_softirqs
3042 - # title = CPU3 softirqs
3043 - # dim TIMER name = TIMER
3044 - # dim TIMER algorithm = incremental
3045 - # dim TIMER multiplier = 1
3046 - # dim TIMER divisor = 1
3047 - # dim NET_TX name = NET_TX
3048 - # dim NET_TX algorithm = incremental
3049 - # dim NET_TX multiplier = 1
3050 - # dim NET_TX divisor = 1
3051 - # dim NET_RX name = NET_RX
3052 - # dim NET_RX algorithm = incremental
3053 - # dim NET_RX multiplier = 1
3054 - # dim NET_RX divisor = 1
3055 - # dim TASKLET name = TASKLET
3056 - # dim TASKLET algorithm = incremental
3057 - # dim TASKLET multiplier = 1
3058 - # dim TASKLET divisor = 1
3059 - # dim SCHED name = SCHED
3060 - # dim SCHED algorithm = incremental
3061 - # dim SCHED multiplier = 1
3062 - # dim SCHED divisor = 1
3063 - # dim RCU name = RCU
3064 - # dim RCU algorithm = incremental
3065 - # dim RCU multiplier = 1
3066 - # dim RCU divisor = 1
3067 -
3068 -[cpu.cpu4_softirqs]
3069 - history = 5
3070 - # enabled = yes
3071 - # cache directory = /var/cache/netdata/cpu.cpu4_softirqs
3072 - # chart type = stacked
3073 - # type = cpu
3074 - # family = softirqs
3075 - # units = softirqs/s
3076 - # context = cpu.softirqs
3077 - # priority = 3004
3078 - # name = cpu.cpu4_softirqs
3079 - # title = CPU4 softirqs
3080 - # dim HI name = HI
3081 - # dim HI algorithm = incremental
3082 - # dim HI multiplier = 1
3083 - # dim HI divisor = 1
3084 - # dim TIMER name = TIMER
3085 - # dim TIMER algorithm = incremental
3086 - # dim TIMER multiplier = 1
3087 - # dim TIMER divisor = 1
3088 - # dim NET_TX name = NET_TX
3089 - # dim NET_TX algorithm = incremental
3090 - # dim NET_TX multiplier = 1
3091 - # dim NET_TX divisor = 1
3092 - # dim NET_RX name = NET_RX
3093 - # dim NET_RX algorithm = incremental
3094 - # dim NET_RX multiplier = 1
3095 - # dim NET_RX divisor = 1
3096 - # dim TASKLET name = TASKLET
3097 - # dim TASKLET algorithm = incremental
3098 - # dim TASKLET multiplier = 1
3099 - # dim TASKLET divisor = 1
3100 - # dim SCHED name = SCHED
3101 - # dim SCHED algorithm = incremental
3102 - # dim SCHED multiplier = 1
3103 - # dim SCHED divisor = 1
3104 - # dim HRTIMER name = HRTIMER
3105 - # dim HRTIMER algorithm = incremental
3106 - # dim HRTIMER multiplier = 1
3107 - # dim HRTIMER divisor = 1
3108 - # dim RCU name = RCU
3109 - # dim RCU algorithm = incremental
3110 - # dim RCU multiplier = 1
3111 - # dim RCU divisor = 1
3112 -
3113 -[cpu.cpu5_softirqs]
3114 - history = 5
3115 - # enabled = yes
3116 - # cache directory = /var/cache/netdata/cpu.cpu5_softirqs
3117 - # chart type = stacked
3118 - # type = cpu
3119 - # family = softirqs
3120 - # units = softirqs/s
3121 - # context = cpu.softirqs
3122 - # priority = 3005
3123 - # name = cpu.cpu5_softirqs
3124 - # title = CPU5 softirqs
3125 - # dim HI name = HI
3126 - # dim HI algorithm = incremental
3127 - # dim HI multiplier = 1
3128 - # dim HI divisor = 1
3129 - # dim TIMER name = TIMER
3130 - # dim TIMER algorithm = incremental
3131 - # dim TIMER multiplier = 1
3132 - # dim TIMER divisor = 1
3133 - # dim NET_TX name = NET_TX
3134 - # dim NET_TX algorithm = incremental
3135 - # dim NET_TX multiplier = 1
3136 - # dim NET_TX divisor = 1
3137 - # dim NET_RX name = NET_RX
3138 - # dim NET_RX algorithm = incremental
3139 - # dim NET_RX multiplier = 1
3140 - # dim NET_RX divisor = 1
3141 - # dim TASKLET name = TASKLET
3142 - # dim TASKLET algorithm = incremental
3143 - # dim TASKLET multiplier = 1
3144 - # dim TASKLET divisor = 1
3145 - # dim SCHED name = SCHED
3146 - # dim SCHED algorithm = incremental
3147 - # dim SCHED multiplier = 1
3148 - # dim SCHED divisor = 1
3149 - # dim RCU name = RCU
3150 - # dim RCU algorithm = incremental
3151 - # dim RCU multiplier = 1
3152 - # dim RCU divisor = 1
3153 -
3154 -[cpu.cpu6_softirqs]
3155 - history = 5
3156 - # enabled = yes
3157 - # cache directory = /var/cache/netdata/cpu.cpu6_softirqs
3158 - # chart type = stacked
3159 - # type = cpu
3160 - # family = softirqs
3161 - # units = softirqs/s
3162 - # context = cpu.softirqs
3163 - # priority = 3006
3164 - # name = cpu.cpu6_softirqs
3165 - # title = CPU6 softirqs
3166 - # dim HI name = HI
3167 - # dim HI algorithm = incremental
3168 - # dim HI multiplier = 1
3169 - # dim HI divisor = 1
3170 - # dim TIMER name = TIMER
3171 - # dim TIMER algorithm = incremental
3172 - # dim TIMER multiplier = 1
3173 - # dim TIMER divisor = 1
3174 - # dim NET_TX name = NET_TX
3175 - # dim NET_TX algorithm = incremental
3176 - # dim NET_TX multiplier = 1
3177 - # dim NET_TX divisor = 1
3178 - # dim NET_RX name = NET_RX
3179 - # dim NET_RX algorithm = incremental
3180 - # dim NET_RX multiplier = 1
3181 - # dim NET_RX divisor = 1
3182 - # dim TASKLET name = TASKLET
3183 - # dim TASKLET algorithm = incremental
3184 - # dim TASKLET multiplier = 1
3185 - # dim TASKLET divisor = 1
3186 - # dim SCHED name = SCHED
3187 - # dim SCHED algorithm = incremental
3188 - # dim SCHED multiplier = 1
3189 - # dim SCHED divisor = 1
3190 - # dim RCU name = RCU
3191 - # dim RCU algorithm = incremental
3192 - # dim RCU multiplier = 1
3193 - # dim RCU divisor = 1
3194 -
3195 -[cpu.cpu7_softirqs]
3196 - history = 5
3197 - # enabled = yes
3198 - # cache directory = /var/cache/netdata/cpu.cpu7_softirqs
3199 - # chart type = stacked
3200 - # type = cpu
3201 - # family = softirqs
3202 - # units = softirqs/s
3203 - # context = cpu.softirqs
3204 - # priority = 3007
3205 - # name = cpu.cpu7_softirqs
3206 - # title = CPU7 softirqs
3207 - # dim TIMER name = TIMER
3208 - # dim TIMER algorithm = incremental
3209 - # dim TIMER multiplier = 1
3210 - # dim TIMER divisor = 1
3211 - # dim NET_TX name = NET_TX
3212 - # dim NET_TX algorithm = incremental
3213 - # dim NET_TX multiplier = 1
3214 - # dim NET_TX divisor = 1
3215 - # dim NET_RX name = NET_RX
3216 - # dim NET_RX algorithm = incremental
3217 - # dim NET_RX multiplier = 1
3218 - # dim NET_RX divisor = 1
3219 - # dim TASKLET name = TASKLET
3220 - # dim TASKLET algorithm = incremental
3221 - # dim TASKLET multiplier = 1
3222 - # dim TASKLET divisor = 1
3223 - # dim SCHED name = SCHED
3224 - # dim SCHED algorithm = incremental
3225 - # dim SCHED multiplier = 1
3226 - # dim SCHED divisor = 1
3227 - # dim HRTIMER name = HRTIMER
3228 - # dim HRTIMER algorithm = incremental
3229 - # dim HRTIMER multiplier = 1
3230 - # dim HRTIMER divisor = 1
3231 - # dim RCU name = RCU
3232 - # dim RCU algorithm = incremental
3233 - # dim RCU multiplier = 1
3234 - # dim RCU divisor = 1
3235 -
3236 -[system.pgpgio]
3237 - history = 5
3238 - # enabled = yes
3239 - # cache directory = /var/cache/netdata/system.pgpgio
3240 - # chart type = area
3241 - # type = system
3242 - # family = disk
3243 - # units = KiB/s
3244 - # context = system.pgpgio
3245 - # priority = 151
3246 - # name = system.pgpgio
3247 - # title = Memory Paged from/to disk
3248 - # dim in name = in
3249 - # dim in algorithm = incremental
3250 - # dim in multiplier = 1
3251 - # dim in divisor = 1
3252 - # dim out name = out
3253 - # dim out algorithm = incremental
3254 - # dim out multiplier = -1
3255 - # dim out divisor = 1
3256 -
3257 -[mem.pgfaults]
3258 - history = 5
3259 - # enabled = yes
3260 - # cache directory = /var/cache/netdata/mem.pgfaults
3261 - # chart type = line
3262 - # type = mem
3263 - # family = system
3264 - # units = faults/s
3265 - # context = mem.pgfaults
3266 - # priority = 1030
3267 - # name = mem.pgfaults
3268 - # title = Memory Page Faults
3269 - # dim minor name = minor
3270 - # dim minor algorithm = incremental
3271 - # dim minor multiplier = 1
3272 - # dim minor divisor = 1
3273 - # dim major name = major
3274 - # dim major algorithm = incremental
3275 - # dim major multiplier = -1
3276 - # dim major divisor = 1
3277 -
3278 -[system.ram]
3279 - history = 5
3280 - # enabled = yes
3281 - # cache directory = /var/cache/netdata/system.ram
3282 - # chart type = stacked
3283 - # type = system
3284 - # family = ram
3285 - # units = MiB
3286 - # context = system.ram
3287 - # priority = 200
3288 - # name = system.ram
3289 - # title = System RAM
3290 - # dim free name = free
3291 - # dim free algorithm = absolute
3292 - # dim free multiplier = 1
3293 - # dim free divisor = 1024
3294 - # dim used name = used
3295 - # dim used algorithm = absolute
3296 - # dim used multiplier = 1
3297 - # dim used divisor = 1024
3298 - # dim cached name = cached
3299 - # dim cached algorithm = absolute
3300 - # dim cached multiplier = 1
3301 - # dim cached divisor = 1024
3302 - # dim buffers name = buffers
3303 - # dim buffers algorithm = absolute
3304 - # dim buffers multiplier = 1
3305 - # dim buffers divisor = 1024
3306 -
3307 -[mem.available]
3308 - history = 5
3309 - # enabled = yes
3310 - # cache directory = /var/cache/netdata/mem.available
3311 - # chart type = area
3312 - # type = mem
3313 - # family = system
3314 - # units = MiB
3315 - # context = mem.available
3316 - # priority = 1010
3317 - # name = mem.available
3318 - # title = Available RAM for applications
3319 - # dim MemAvailable name = avail
3320 - # dim MemAvailable algorithm = absolute
3321 - # dim MemAvailable multiplier = 1
3322 - # dim MemAvailable divisor = 1024
3323 -
3324 -[system.swap]
3325 - history = 5
3326 - # enabled = yes
3327 - # cache directory = /var/cache/netdata/system.swap
3328 - # chart type = stacked
3329 - # type = system
3330 - # family = swap
3331 - # units = MiB
3332 - # context = system.swap
3333 - # priority = 201
3334 - # name = system.swap
3335 - # title = System Swap
3336 - # dim free name = free
3337 - # dim free algorithm = absolute
3338 - # dim free multiplier = 1
3339 - # dim free divisor = 1024
3340 - # dim used name = used
3341 - # dim used algorithm = absolute
3342 - # dim used multiplier = 1
3343 - # dim used divisor = 1024
3344 -
3345 -[mem.committed]
3346 - history = 5
3347 - # enabled = yes
3348 - # cache directory = /var/cache/netdata/mem.committed
3349 - # chart type = area
3350 - # type = mem
3351 - # family = system
3352 - # units = MiB
3353 - # context = mem.committed
3354 - # priority = 1020
3355 - # name = mem.committed
3356 - # title = Committed (Allocated) Memory
3357 - # dim Committed_AS name = Committed_AS
3358 - # dim Committed_AS algorithm = absolute
3359 - # dim Committed_AS multiplier = 1
3360 - # dim Committed_AS divisor = 1024
3361 -
3362 -[mem.writeback]
3363 - history = 5
3364 - # enabled = yes
3365 - # cache directory = /var/cache/netdata/mem.writeback
3366 - # chart type = line
3367 - # type = mem
3368 - # family = kernel
3369 - # units = MiB
3370 - # context = mem.writeback
3371 - # priority = 1100
3372 - # name = mem.writeback
3373 - # title = Writeback Memory
3374 - # dim Dirty name = Dirty
3375 - # dim Dirty algorithm = absolute
3376 - # dim Dirty multiplier = 1
3377 - # dim Dirty divisor = 1024
3378 - # dim Writeback name = Writeback
3379 - # dim Writeback algorithm = absolute
3380 - # dim Writeback multiplier = 1
3381 - # dim Writeback divisor = 1024
3382 - # dim FuseWriteback name = FuseWriteback
3383 - # dim FuseWriteback algorithm = absolute
3384 - # dim FuseWriteback multiplier = 1
3385 - # dim FuseWriteback divisor = 1024
3386 - # dim NfsWriteback name = NfsWriteback
3387 - # dim NfsWriteback algorithm = absolute
3388 - # dim NfsWriteback multiplier = 1
3389 - # dim NfsWriteback divisor = 1024
3390 - # dim Bounce name = Bounce
3391 - # dim Bounce algorithm = absolute
3392 - # dim Bounce multiplier = 1
3393 - # dim Bounce divisor = 1024
3394 -
3395 -[mem.kernel]
3396 - history = 5
3397 - # enabled = yes
3398 - # cache directory = /var/cache/netdata/mem.kernel
3399 - # chart type = stacked
3400 - # type = mem
3401 - # family = kernel
3402 - # units = MiB
3403 - # context = mem.kernel
3404 - # priority = 1101
3405 - # name = mem.kernel
3406 - # title = Memory Used by Kernel
3407 - # dim Slab name = Slab
3408 - # dim Slab algorithm = absolute
3409 - # dim Slab multiplier = 1
3410 - # dim Slab divisor = 1024
3411 - # dim KernelStack name = KernelStack
3412 - # dim KernelStack algorithm = absolute
3413 - # dim KernelStack multiplier = 1
3414 - # dim KernelStack divisor = 1024
3415 - # dim PageTables name = PageTables
3416 - # dim PageTables algorithm = absolute
3417 - # dim PageTables multiplier = 1
3418 - # dim PageTables divisor = 1024
3419 - # dim VmallocUsed name = VmallocUsed
3420 - # dim VmallocUsed algorithm = absolute
3421 - # dim VmallocUsed multiplier = 1
3422 - # dim VmallocUsed divisor = 1024
3423 -
3424 -[mem.slab]
3425 - history = 5
3426 - # enabled = yes
3427 - # cache directory = /var/cache/netdata/mem.slab
3428 - # chart type = stacked
3429 - # type = mem
3430 - # family = slab
3431 - # units = MiB
3432 - # context = mem.slab
3433 - # priority = 1200
3434 - # name = mem.slab
3435 - # title = Reclaimable Kernel Memory
3436 - # dim reclaimable name = reclaimable
3437 - # dim reclaimable algorithm = absolute
3438 - # dim reclaimable multiplier = 1
3439 - # dim reclaimable divisor = 1024
3440 - # dim unreclaimable name = unreclaimable
3441 - # dim unreclaimable algorithm = absolute
3442 - # dim unreclaimable multiplier = 1
3443 - # dim unreclaimable divisor = 1024
3444 -
3445 -[mem.transparent_hugepages]
3446 - history = 5
3447 - # enabled = yes
3448 - # cache directory = /var/cache/netdata/mem.transparent_hugepages
3449 - # chart type = stacked
3450 - # type = mem
3451 - # family = hugepages
3452 - # units = MiB
3453 - # context = mem.transparent_hugepages
3454 - # priority = 1250
3455 - # name = mem.transparent_hugepages
3456 - # title = Transparent HugePages Memory
3457 - # dim anonymous name = anonymous
3458 - # dim anonymous algorithm = absolute
3459 - # dim anonymous multiplier = 1
3460 - # dim anonymous divisor = 1024
3461 - # dim shmem name = shmem
3462 - # dim shmem algorithm = absolute
3463 - # dim shmem multiplier = 1
3464 - # dim shmem divisor = 1024
3465 -
3466 -[net.eth0]
3467 - history = 5
3468 - # enabled = yes
3469 - # cache directory = /var/cache/netdata/net.eth0
3470 - # chart type = area
3471 - # type = net
3472 - # family = eth0
3473 - # units = kilobits/s
3474 - # context = net.net
3475 - # priority = 7000
3476 - # name = net.eth0
3477 - # title = Bandwidth
3478 - # dim received name = received
3479 - # dim received algorithm = incremental
3480 - # dim received multiplier = 8
3481 - # dim received divisor = 1000
3482 - # dim sent name = sent
3483 - # dim sent algorithm = incremental
3484 - # dim sent multiplier = -8
3485 - # dim sent divisor = 1000
3486 -
3487 -[net_packets.eth0]
3488 - history = 5
3489 - # enabled = yes
3490 - # cache directory = /var/cache/netdata/net_packets.eth0
3491 - # chart type = line
3492 - # type = net_packets
3493 - # family = eth0
3494 - # units = packets/s
3495 - # context = net.packets
3496 - # priority = 7001
3497 - # name = net_packets.eth0
3498 - # title = Packets
3499 - # dim received name = received
3500 - # dim received algorithm = incremental
3501 - # dim received multiplier = 1
3502 - # dim received divisor = 1
3503 - # dim sent name = sent
3504 - # dim sent algorithm = incremental
3505 - # dim sent multiplier = -1
3506 - # dim sent divisor = 1
3507 - # dim multicast name = multicast
3508 - # dim multicast algorithm = incremental
3509 - # dim multicast multiplier = 1
3510 - # dim multicast divisor = 1
3511 -
3512 -[ipv4.sockstat_sockets]
3513 - history = 5
3514 - # enabled = yes
3515 - # cache directory = /var/cache/netdata/ipv4.sockstat_sockets
3516 - # chart type = line
3517 - # type = ipv4
3518 - # family = sockets
3519 - # units = sockets
3520 - # context = ipv4.sockstat_sockets
3521 - # priority = 5100
3522 - # name = ipv4.sockstat_sockets
3523 - # title = IPv4 Sockets Used
3524 - # dim used name = used
3525 - # dim used algorithm = absolute
3526 - # dim used multiplier = 1
3527 - # dim used divisor = 1
3528 -
3529 -[ipv4.sockstat_tcp_sockets]
3530 - history = 5
3531 - # enabled = yes
3532 - # cache directory = /var/cache/netdata/ipv4.sockstat_tcp_sockets
3533 - # chart type = line
3534 - # type = ipv4
3535 - # family = tcp
3536 - # units = sockets
3537 - # context = ipv4.sockstat_tcp_sockets
3538 - # priority = 5201
3539 - # name = ipv4.sockstat_tcp_sockets
3540 - # title = IPv4 TCP Sockets
3541 - # dim alloc name = alloc
3542 - # dim alloc algorithm = absolute
3543 - # dim alloc multiplier = 1
3544 - # dim alloc divisor = 1
3545 - # dim orphan name = orphan
3546 - # dim orphan algorithm = absolute
3547 - # dim orphan multiplier = 1
3548 - # dim orphan divisor = 1
3549 - # dim inuse name = inuse
3550 - # dim inuse algorithm = absolute
3551 - # dim inuse multiplier = 1
3552 - # dim inuse divisor = 1
3553 - # dim timewait name = timewait
3554 - # dim timewait algorithm = absolute
3555 - # dim timewait multiplier = 1
3556 - # dim timewait divisor = 1
3557 -
3558 -[ipv4.sockstat_tcp_mem]
3559 - history = 5
3560 - # enabled = yes
3561 - # cache directory = /var/cache/netdata/ipv4.sockstat_tcp_mem
3562 - # chart type = area
3563 - # type = ipv4
3564 - # family = tcp
3565 - # units = KiB
3566 - # context = ipv4.sockstat_tcp_mem
3567 - # priority = 5290
3568 - # name = ipv4.sockstat_tcp_mem
3569 - # title = IPv4 TCP Sockets Memory
3570 - # dim mem name = mem
3571 - # dim mem algorithm = absolute
3572 - # dim mem multiplier = 4096
3573 - # dim mem divisor = 1024
3574 -
3575 -[ipv4.sockstat_udp_sockets]
3576 - history = 5
3577 - # enabled = yes
3578 - # cache directory = /var/cache/netdata/ipv4.sockstat_udp_sockets
3579 - # chart type = line
3580 - # type = ipv4
3581 - # family = udp
3582 - # units = sockets
3583 - # context = ipv4.sockstat_udp_sockets
3584 - # priority = 5300
3585 - # name = ipv4.sockstat_udp_sockets
3586 - # title = IPv4 UDP Sockets
3587 - # dim inuse name = inuse
3588 - # dim inuse algorithm = absolute
3589 - # dim inuse multiplier = 1
3590 - # dim inuse divisor = 1
3591 -
3592 -[ipv4.sockstat_udp_mem]
3593 - history = 5
3594 - # enabled = yes
3595 - # cache directory = /var/cache/netdata/ipv4.sockstat_udp_mem
3596 - # chart type = area
3597 - # type = ipv4
3598 - # family = udp
3599 - # units = KiB
3600 - # context = ipv4.sockstat_udp_mem
3601 - # priority = 5390
3602 - # name = ipv4.sockstat_udp_mem
3603 - # title = IPv4 UDP Sockets Memory
3604 - # dim mem name = mem
3605 - # dim mem algorithm = absolute
3606 - # dim mem multiplier = 4096
3607 - # dim mem divisor = 1024
3608 -
3609 -[ipv6.sockstat6_tcp_sockets]
3610 - history = 5
3611 - # enabled = yes
3612 - # cache directory = /var/cache/netdata/ipv6.sockstat6_tcp_sockets
3613 - # chart type = line
3614 - # type = ipv6
3615 - # family = tcp6
3616 - # units = sockets
3617 - # context = ipv6.sockstat6_tcp_sockets
3618 - # priority = 6500
3619 - # name = ipv6.sockstat6_tcp_sockets
3620 - # title = IPv6 TCP Sockets
3621 - # dim inuse name = inuse
3622 - # dim inuse algorithm = absolute
3623 - # dim inuse multiplier = 1
3624 - # dim inuse divisor = 1
3625 -
3626 -[ip.tcpconnaborts]
3627 - history = 5
3628 - # enabled = yes
3629 - # cache directory = /var/cache/netdata/ip.tcpconnaborts
3630 - # chart type = line
3631 - # type = ip
3632 - # family = tcp
3633 - # units = connections/s
3634 - # context = ip.tcpconnaborts
3635 - # priority = 4210
3636 - # name = ip.tcpconnaborts
3637 - # title = TCP Connection Aborts
3638 - # dim TCPAbortOnData name = baddata
3639 - # dim TCPAbortOnData algorithm = incremental
3640 - # dim TCPAbortOnData multiplier = 1
3641 - # dim TCPAbortOnData divisor = 1
3642 - # dim TCPAbortOnClose name = userclosed
3643 - # dim TCPAbortOnClose algorithm = incremental
3644 - # dim TCPAbortOnClose multiplier = 1
3645 - # dim TCPAbortOnClose divisor = 1
3646 - # dim TCPAbortOnMemory name = nomemory
3647 - # dim TCPAbortOnMemory algorithm = incremental
3648 - # dim TCPAbortOnMemory multiplier = 1
3649 - # dim TCPAbortOnMemory divisor = 1
3650 - # dim TCPAbortOnTimeout name = timeout
3651 - # dim TCPAbortOnTimeout algorithm = incremental
3652 - # dim TCPAbortOnTimeout multiplier = 1
3653 - # dim TCPAbortOnTimeout divisor = 1
3654 - # dim TCPAbortOnLinger name = linger
3655 - # dim TCPAbortOnLinger algorithm = incremental
3656 - # dim TCPAbortOnLinger multiplier = 1
3657 - # dim TCPAbortOnLinger divisor = 1
3658 - # dim TCPAbortFailed name = failed
3659 - # dim TCPAbortFailed algorithm = incremental
3660 - # dim TCPAbortFailed multiplier = -1
3661 - # dim TCPAbortFailed divisor = 1
3662 -
3663 -[ip.tcpofo]
3664 - history = 5
3665 - # enabled = yes
3666 - # cache directory = /var/cache/netdata/ip.tcpofo
3667 - # chart type = line
3668 - # type = ip
3669 - # family = tcp
3670 - # units = packets/s
3671 - # context = ip.tcpofo
3672 - # priority = 4250
3673 - # name = ip.tcpofo
3674 - # title = TCP Out-Of-Order Queue
3675 - # dim TCPOFOQueue name = inqueue
3676 - # dim TCPOFOQueue algorithm = incremental
3677 - # dim TCPOFOQueue multiplier = 1
3678 - # dim TCPOFOQueue divisor = 1
3679 - # dim TCPOFODrop name = dropped
3680 - # dim TCPOFODrop algorithm = incremental
3681 - # dim TCPOFODrop multiplier = -1
3682 - # dim TCPOFODrop divisor = 1
3683 - # dim TCPOFOMerge name = merged
3684 - # dim TCPOFOMerge algorithm = incremental
3685 - # dim TCPOFOMerge multiplier = 1
3686 - # dim TCPOFOMerge divisor = 1
3687 - # dim OfoPruned name = pruned
3688 - # dim OfoPruned algorithm = incremental
3689 - # dim OfoPruned multiplier = -1
3690 - # dim OfoPruned divisor = 1
3691 -
3692 -[system.ip]
3693 - history = 5
3694 - # enabled = yes
3695 - # cache directory = /var/cache/netdata/system.ip
3696 - # chart type = area
3697 - # type = system
3698 - # family = network
3699 - # units = kilobits/s
3700 - # context = system.ip
3701 - # priority = 501
3702 - # name = system.ip
3703 - # title = IP Bandwidth
3704 - # dim InOctets name = received
3705 - # dim InOctets algorithm = incremental
3706 - # dim InOctets multiplier = 8
3707 - # dim InOctets divisor = 1000
3708 - # dim OutOctets name = sent
3709 - # dim OutOctets algorithm = incremental
3710 - # dim OutOctets multiplier = -8
3711 - # dim OutOctets divisor = 1000
3712 -
3713 -[ip.bcast]
3714 - history = 5
3715 - # enabled = yes
3716 - # cache directory = /var/cache/netdata/ip.bcast
3717 - # chart type = area
3718 - # type = ip
3719 - # family = broadcast
3720 - # units = kilobits/s
3721 - # context = ip.bcast
3722 - # priority = 4500
3723 - # name = ip.bcast
3724 - # title = IP Broadcast Bandwidth
3725 - # dim InBcastOctets name = received
3726 - # dim InBcastOctets algorithm = incremental
3727 - # dim InBcastOctets multiplier = 8
3728 - # dim InBcastOctets divisor = 1000
3729 - # dim OutBcastOctets name = sent
3730 - # dim OutBcastOctets algorithm = incremental
3731 - # dim OutBcastOctets multiplier = -8
3732 - # dim OutBcastOctets divisor = 1000
3733 -
3734 -[ip.bcastpkts]
3735 - history = 5
3736 - # enabled = yes
3737 - # cache directory = /var/cache/netdata/ip.bcastpkts
3738 - # chart type = line
3739 - # type = ip
3740 - # family = broadcast
3741 - # units = packets/s
3742 - # context = ip.bcastpkts
3743 - # priority = 4510
3744 - # name = ip.bcastpkts
3745 - # title = IP Broadcast Packets
3746 - # dim InBcastPkts name = received
3747 - # dim InBcastPkts algorithm = incremental
3748 - # dim InBcastPkts multiplier = 1
3749 - # dim InBcastPkts divisor = 1
3750 - # dim OutBcastPkts name = sent
3751 - # dim OutBcastPkts algorithm = incremental
3752 - # dim OutBcastPkts multiplier = -1
3753 - # dim OutBcastPkts divisor = 1
3754 -
3755 -[ip.ecnpkts]
3756 - history = 5
3757 - # enabled = yes
3758 - # cache directory = /var/cache/netdata/ip.ecnpkts
3759 - # chart type = line
3760 - # type = ip
3761 - # family = ecn
3762 - # units = packets/s
3763 - # context = ip.ecnpkts
3764 - # priority = 4700
3765 - # name = ip.ecnpkts
3766 - # title = IP ECN Statistics
3767 - # dim InCEPkts name = CEP
3768 - # dim InCEPkts algorithm = incremental
3769 - # dim InCEPkts multiplier = 1
3770 - # dim InCEPkts divisor = 1
3771 - # dim InNoECTPkts name = NoECTP
3772 - # dim InNoECTPkts algorithm = incremental
3773 - # dim InNoECTPkts multiplier = -1
3774 - # dim InNoECTPkts divisor = 1
3775 - # dim InECT0Pkts name = ECTP0
3776 - # dim InECT0Pkts algorithm = incremental
3777 - # dim InECT0Pkts multiplier = 1
3778 - # dim InECT0Pkts divisor = 1
3779 - # dim InECT1Pkts name = ECTP1
3780 - # dim InECT1Pkts algorithm = incremental
3781 - # dim InECT1Pkts multiplier = 1
3782 - # dim InECT1Pkts divisor = 1
3783 -
3784 -[ipv4.packets]
3785 - history = 5
3786 - # enabled = yes
3787 - # cache directory = /var/cache/netdata/ipv4.packets
3788 - # chart type = line
3789 - # type = ipv4
3790 - # family = packets
3791 - # units = packets/s
3792 - # context = ipv4.packets
3793 - # priority = 5130
3794 - # name = ipv4.packets
3795 - # title = IPv4 Packets
3796 - # dim InReceives name = received
3797 - # dim InReceives algorithm = incremental
3798 - # dim InReceives multiplier = 1
3799 - # dim InReceives divisor = 1
3800 - # dim OutRequests name = sent
3801 - # dim OutRequests algorithm = incremental
3802 - # dim OutRequests multiplier = -1
3803 - # dim OutRequests divisor = 1
3804 - # dim ForwDatagrams name = forwarded
3805 - # dim ForwDatagrams algorithm = incremental
3806 - # dim ForwDatagrams multiplier = 1
3807 - # dim ForwDatagrams divisor = 1
3808 - # dim InDelivers name = delivered
3809 - # dim InDelivers algorithm = incremental
3810 - # dim InDelivers multiplier = 1
3811 - # dim InDelivers divisor = 1
3812 -
3813 -[ipv4.tcppackets]
3814 - history = 5
3815 - # enabled = yes
3816 - # cache directory = /var/cache/netdata/ipv4.tcppackets
3817 - # chart type = line
3818 - # type = ipv4
3819 - # family = tcp
3820 - # units = packets/s
3821 - # context = ipv4.tcppackets
3822 - # priority = 5204
3823 - # name = ipv4.tcppackets
3824 - # title = IPv4 TCP Packets
3825 - # dim InSegs name = received
3826 - # dim InSegs algorithm = incremental
3827 - # dim InSegs multiplier = 1
3828 - # dim InSegs divisor = 1
3829 - # dim OutSegs name = sent
3830 - # dim OutSegs algorithm = incremental
3831 - # dim OutSegs multiplier = -1
3832 - # dim OutSegs divisor = 1
3833 -
3834 -[ipv4.tcpopens]
3835 - history = 5
3836 - # enabled = yes
3837 - # cache directory = /var/cache/netdata/ipv4.tcpopens
3838 - # chart type = line
3839 - # type = ipv4
3840 - # family = tcp
3841 - # units = connections/s
3842 - # context = ipv4.tcpopens
3843 - # priority = 5205
3844 - # name = ipv4.tcpopens
3845 - # title = IPv4 TCP Opens
3846 - # dim ActiveOpens name = active
3847 - # dim ActiveOpens algorithm = incremental
3848 - # dim ActiveOpens multiplier = 1
3849 - # dim ActiveOpens divisor = 1
3850 - # dim PassiveOpens name = passive
3851 - # dim PassiveOpens algorithm = incremental
3852 - # dim PassiveOpens multiplier = 1
3853 - # dim PassiveOpens divisor = 1
3854 -
3855 -[ipv4.tcphandshake]
3856 - history = 5
3857 - # enabled = yes
3858 - # cache directory = /var/cache/netdata/ipv4.tcphandshake
3859 - # chart type = line
3860 - # type = ipv4
3861 - # family = tcp
3862 - # units = events/s
3863 - # context = ipv4.tcphandshake
3864 - # priority = 5230
3865 - # name = ipv4.tcphandshake
3866 - # title = IPv4 TCP Handshake Issues
3867 - # dim EstabResets name = EstabResets
3868 - # dim EstabResets algorithm = incremental
3869 - # dim EstabResets multiplier = 1
3870 - # dim EstabResets divisor = 1
3871 - # dim OutRsts name = OutRsts
3872 - # dim OutRsts algorithm = incremental
3873 - # dim OutRsts multiplier = 1
3874 - # dim OutRsts divisor = 1
3875 - # dim AttemptFails name = AttemptFails
3876 - # dim AttemptFails algorithm = incremental
3877 - # dim AttemptFails multiplier = 1
3878 - # dim AttemptFails divisor = 1
3879 - # dim TCPSynRetrans name = SynRetrans
3880 - # dim TCPSynRetrans algorithm = incremental
3881 - # dim TCPSynRetrans multiplier = 1
3882 - # dim TCPSynRetrans divisor = 1
3883 -
3884 -[ipv4.udppackets]
3885 - history = 5
3886 - # enabled = yes
3887 - # cache directory = /var/cache/netdata/ipv4.udppackets
3888 - # chart type = line
3889 - # type = ipv4
3890 - # family = udp
3891 - # units = packets/s
3892 - # context = ipv4.udppackets
3893 - # priority = 5300
3894 - # name = ipv4.udppackets
3895 - # title = IPv4 UDP Packets
3896 - # dim InDatagrams name = received
3897 - # dim InDatagrams algorithm = incremental
3898 - # dim InDatagrams multiplier = 1
3899 - # dim InDatagrams divisor = 1
3900 - # dim OutDatagrams name = sent
3901 - # dim OutDatagrams algorithm = incremental
3902 - # dim OutDatagrams multiplier = -1
3903 - # dim OutDatagrams divisor = 1
3904 -
3905 -[ipv4.udperrors]
3906 - history = 5
3907 - # enabled = yes
3908 - # cache directory = /var/cache/netdata/ipv4.udperrors
3909 - # chart type = line
3910 - # type = ipv4
3911 - # family = udp
3912 - # units = events/s
3913 - # context = ipv4.udperrors
3914 - # priority = 5310
3915 - # name = ipv4.udperrors
3916 - # title = IPv4 UDP Errors
3917 - # dim RcvbufErrors name = RcvbufErrors
3918 - # dim RcvbufErrors algorithm = incremental
3919 - # dim RcvbufErrors multiplier = 1
3920 - # dim RcvbufErrors divisor = 1
3921 - # dim SndbufErrors name = SndbufErrors
3922 - # dim SndbufErrors algorithm = incremental
3923 - # dim SndbufErrors multiplier = -1
3924 - # dim SndbufErrors divisor = 1
3925 - # dim InErrors name = InErrors
3926 - # dim InErrors algorithm = incremental
3927 - # dim InErrors multiplier = 1
3928 - # dim InErrors divisor = 1
3929 - # dim NoPorts name = NoPorts
3930 - # dim NoPorts algorithm = incremental
3931 - # dim NoPorts multiplier = 1
3932 - # dim NoPorts divisor = 1
3933 - # dim InCsumErrors name = InCsumErrors
3934 - # dim InCsumErrors algorithm = incremental
3935 - # dim InCsumErrors multiplier = 1
3936 - # dim InCsumErrors divisor = 1
3937 - # dim IgnoredMulti name = IgnoredMulti
3938 - # dim IgnoredMulti algorithm = incremental
3939 - # dim IgnoredMulti multiplier = 1
3940 - # dim IgnoredMulti divisor = 1
3941 -
3942 -[system.ipv6]
3943 - history = 5
3944 - # enabled = yes
3945 - # cache directory = /var/cache/netdata/system.ipv6
3946 - # chart type = area
3947 - # type = system
3948 - # family = network
3949 - # units = kilobits/s
3950 - # context = system.ipv6
3951 - # priority = 502
3952 - # name = system.ipv6
3953 - # title = IPv6 Bandwidth
3954 - # dim InOctets name = received
3955 - # dim InOctets algorithm = incremental
3956 - # dim InOctets multiplier = 8
3957 - # dim InOctets divisor = 1000
3958 - # dim OutOctets name = sent
3959 - # dim OutOctets algorithm = incremental
3960 - # dim OutOctets multiplier = -8
3961 - # dim OutOctets divisor = 1000
3962 -
3963 -[ipv6.packets]
3964 - history = 5
3965 - # enabled = yes
3966 - # cache directory = /var/cache/netdata/ipv6.packets
3967 - # chart type = line
3968 - # type = ipv6
3969 - # family = packets
3970 - # units = packets/s
3971 - # context = ipv6.packets
3972 - # priority = 6200
3973 - # name = ipv6.packets
3974 - # title = IPv6 Packets
3975 - # dim InReceives name = received
3976 - # dim InReceives algorithm = incremental
3977 - # dim InReceives multiplier = 1
3978 - # dim InReceives divisor = 1
3979 - # dim OutRequests name = sent
3980 - # dim OutRequests algorithm = incremental
3981 - # dim OutRequests multiplier = -1
3982 - # dim OutRequests divisor = 1
3983 - # dim OutForwDatagrams name = forwarded
3984 - # dim OutForwDatagrams algorithm = incremental
3985 - # dim OutForwDatagrams multiplier = -1
3986 - # dim OutForwDatagrams divisor = 1
3987 - # dim InDelivers name = delivers
3988 - # dim InDelivers algorithm = incremental
3989 - # dim InDelivers multiplier = 1
3990 - # dim InDelivers divisor = 1
3991 -
3992 -[ipv6.errors]
3993 - history = 5
3994 - # enabled = yes
3995 - # cache directory = /var/cache/netdata/ipv6.errors
3996 - # chart type = line
3997 - # type = ipv6
3998 - # family = errors
3999 - # units = packets/s
4000 - # context = ipv6.errors
4001 - # priority = 6300
4002 - # name = ipv6.errors
4003 - # title = IPv6 Errors
4004 - # dim InDiscards name = InDiscards
4005 - # dim InDiscards algorithm = incremental
4006 - # dim InDiscards multiplier = 1
4007 - # dim InDiscards divisor = 1
4008 - # dim OutDiscards name = OutDiscards
4009 - # dim OutDiscards algorithm = incremental
4010 - # dim OutDiscards multiplier = -1
4011 - # dim OutDiscards divisor = 1
4012 - # dim InHdrErrors name = InHdrErrors
4013 - # dim InHdrErrors algorithm = incremental
4014 - # dim InHdrErrors multiplier = 1
4015 - # dim InHdrErrors divisor = 1
4016 - # dim InAddrErrors name = InAddrErrors
4017 - # dim InAddrErrors algorithm = incremental
4018 - # dim InAddrErrors multiplier = 1
4019 - # dim InAddrErrors divisor = 1
4020 - # dim InUnknownProtos name = InUnknownProtos
4021 - # dim InUnknownProtos algorithm = incremental
4022 - # dim InUnknownProtos multiplier = 1
4023 - # dim InUnknownProtos divisor = 1
4024 - # dim InTooBigErrors name = InTooBigErrors
4025 - # dim InTooBigErrors algorithm = incremental
4026 - # dim InTooBigErrors multiplier = 1
4027 - # dim InTooBigErrors divisor = 1
4028 - # dim InTruncatedPkts name = InTruncatedPkts
4029 - # dim InTruncatedPkts algorithm = incremental
4030 - # dim InTruncatedPkts multiplier = 1
4031 - # dim InTruncatedPkts divisor = 1
4032 - # dim InNoRoutes name = InNoRoutes
4033 - # dim InNoRoutes algorithm = incremental
4034 - # dim InNoRoutes multiplier = 1
4035 - # dim InNoRoutes divisor = 1
4036 - # dim OutNoRoutes name = OutNoRoutes
4037 - # dim OutNoRoutes algorithm = incremental
4038 - # dim OutNoRoutes multiplier = -1
4039 - # dim OutNoRoutes divisor = 1
4040 -
4041 -[system.softnet_stat]
4042 - history = 5
4043 - # enabled = yes
4044 - # cache directory = /var/cache/netdata/system.softnet_stat
4045 - # chart type = line
4046 - # type = system
4047 - # family = softnet_stat
4048 - # units = events/s
4049 - # context = system.softnet_stat
4050 - # priority = 955
4051 - # name = system.softnet_stat
4052 - # title = System softnet_stat
4053 - # dim processed name = processed
4054 - # dim processed algorithm = incremental
4055 - # dim processed multiplier = 1
4056 - # dim processed divisor = 1
4057 - # dim dropped name = dropped
4058 - # dim dropped algorithm = incremental
4059 - # dim dropped multiplier = 1
4060 - # dim dropped divisor = 1
4061 - # dim squeezed name = squeezed
4062 - # dim squeezed algorithm = incremental
4063 - # dim squeezed multiplier = 1
4064 - # dim squeezed divisor = 1
4065 - # dim received_rps name = received_rps
4066 - # dim received_rps algorithm = incremental
4067 - # dim received_rps multiplier = 1
4068 - # dim received_rps divisor = 1
4069 - # dim flow_limit_count name = flow_limit_count
4070 - # dim flow_limit_count algorithm = incremental
4071 - # dim flow_limit_count multiplier = 1
4072 - # dim flow_limit_count divisor = 1
4073 -
4074 -[cpu.cpu0_softnet_stat]
4075 - history = 5
4076 - # enabled = yes
4077 - # cache directory = /var/cache/netdata/cpu.cpu0_softnet_stat
4078 - # chart type = line
4079 - # type = cpu
4080 - # family = softnet_stat
4081 - # units = events/s
4082 - # context = cpu.softnet_stat
4083 - # priority = 4101
4084 - # name = cpu.cpu0_softnet_stat
4085 - # title = CPU0 softnet_stat
4086 - # dim processed name = processed
4087 - # dim processed algorithm = incremental
4088 - # dim processed multiplier = 1
4089 - # dim processed divisor = 1
4090 - # dim dropped name = dropped
4091 - # dim dropped algorithm = incremental
4092 - # dim dropped multiplier = 1
4093 - # dim dropped divisor = 1
4094 - # dim squeezed name = squeezed
4095 - # dim squeezed algorithm = incremental
4096 - # dim squeezed multiplier = 1
4097 - # dim squeezed divisor = 1
4098 - # dim received_rps name = received_rps
4099 - # dim received_rps algorithm = incremental
4100 - # dim received_rps multiplier = 1
4101 - # dim received_rps divisor = 1
4102 - # dim flow_limit_count name = flow_limit_count
4103 - # dim flow_limit_count algorithm = incremental
4104 - # dim flow_limit_count multiplier = 1
4105 - # dim flow_limit_count divisor = 1
4106 -
4107 -[cpu.cpu1_softnet_stat]
4108 - history = 5
4109 - # enabled = yes
4110 - # cache directory = /var/cache/netdata/cpu.cpu1_softnet_stat
4111 - # chart type = line
4112 - # type = cpu
4113 - # family = softnet_stat
4114 - # units = events/s
4115 - # context = cpu.softnet_stat
4116 - # priority = 4102
4117 - # name = cpu.cpu1_softnet_stat
4118 - # title = CPU1 softnet_stat
4119 - # dim processed name = processed
4120 - # dim processed algorithm = incremental
4121 - # dim processed multiplier = 1
4122 - # dim processed divisor = 1
4123 - # dim dropped name = dropped
4124 - # dim dropped algorithm = incremental
4125 - # dim dropped multiplier = 1
4126 - # dim dropped divisor = 1
4127 - # dim squeezed name = squeezed
4128 - # dim squeezed algorithm = incremental
4129 - # dim squeezed multiplier = 1
4130 - # dim squeezed divisor = 1
4131 - # dim received_rps name = received_rps
4132 - # dim received_rps algorithm = incremental
4133 - # dim received_rps multiplier = 1
4134 - # dim received_rps divisor = 1
4135 - # dim flow_limit_count name = flow_limit_count
4136 - # dim flow_limit_count algorithm = incremental
4137 - # dim flow_limit_count multiplier = 1
4138 - # dim flow_limit_count divisor = 1
4139 -
4140 -[cpu.cpu2_softnet_stat]
4141 - history = 5
4142 - # enabled = yes
4143 - # cache directory = /var/cache/netdata/cpu.cpu2_softnet_stat
4144 - # chart type = line
4145 - # type = cpu
4146 - # family = softnet_stat
4147 - # units = events/s
4148 - # context = cpu.softnet_stat
4149 - # priority = 4103
4150 - # name = cpu.cpu2_softnet_stat
4151 - # title = CPU2 softnet_stat
4152 - # dim processed name = processed
4153 - # dim processed algorithm = incremental
4154 - # dim processed multiplier = 1
4155 - # dim processed divisor = 1
4156 - # dim dropped name = dropped
4157 - # dim dropped algorithm = incremental
4158 - # dim dropped multiplier = 1
4159 - # dim dropped divisor = 1
4160 - # dim squeezed name = squeezed
4161 - # dim squeezed algorithm = incremental
4162 - # dim squeezed multiplier = 1
4163 - # dim squeezed divisor = 1
4164 - # dim received_rps name = received_rps
4165 - # dim received_rps algorithm = incremental
4166 - # dim received_rps multiplier = 1
4167 - # dim received_rps divisor = 1
4168 - # dim flow_limit_count name = flow_limit_count
4169 - # dim flow_limit_count algorithm = incremental
4170 - # dim flow_limit_count multiplier = 1
4171 - # dim flow_limit_count divisor = 1
4172 -
4173 -[cpu.cpu3_softnet_stat]
4174 - history = 5
4175 - # enabled = yes
4176 - # cache directory = /var/cache/netdata/cpu.cpu3_softnet_stat
4177 - # chart type = line
4178 - # type = cpu
4179 - # family = softnet_stat
4180 - # units = events/s
4181 - # context = cpu.softnet_stat
4182 - # priority = 4104
4183 - # name = cpu.cpu3_softnet_stat
4184 - # title = CPU3 softnet_stat
4185 - # dim processed name = processed
4186 - # dim processed algorithm = incremental
4187 - # dim processed multiplier = 1
4188 - # dim processed divisor = 1
4189 - # dim dropped name = dropped
4190 - # dim dropped algorithm = incremental
4191 - # dim dropped multiplier = 1
4192 - # dim dropped divisor = 1
4193 - # dim squeezed name = squeezed
4194 - # dim squeezed algorithm = incremental
4195 - # dim squeezed multiplier = 1
4196 - # dim squeezed divisor = 1
4197 - # dim received_rps name = received_rps
4198 - # dim received_rps algorithm = incremental
4199 - # dim received_rps multiplier = 1
4200 - # dim received_rps divisor = 1
4201 - # dim flow_limit_count name = flow_limit_count
4202 - # dim flow_limit_count algorithm = incremental
4203 - # dim flow_limit_count multiplier = 1
4204 - # dim flow_limit_count divisor = 1
4205 -
4206 -[cpu.cpu4_softnet_stat]
4207 - history = 5
4208 - # enabled = yes
4209 - # cache directory = /var/cache/netdata/cpu.cpu4_softnet_stat
4210 - # chart type = line
4211 - # type = cpu
4212 - # family = softnet_stat
4213 - # units = events/s
4214 - # context = cpu.softnet_stat
4215 - # priority = 4105
4216 - # name = cpu.cpu4_softnet_stat
4217 - # title = CPU4 softnet_stat
4218 - # dim processed name = processed
4219 - # dim processed algorithm = incremental
4220 - # dim processed multiplier = 1
4221 - # dim processed divisor = 1
4222 - # dim dropped name = dropped
4223 - # dim dropped algorithm = incremental
4224 - # dim dropped multiplier = 1
4225 - # dim dropped divisor = 1
4226 - # dim squeezed name = squeezed
4227 - # dim squeezed algorithm = incremental
4228 - # dim squeezed multiplier = 1
4229 - # dim squeezed divisor = 1
4230 - # dim received_rps name = received_rps
4231 - # dim received_rps algorithm = incremental
4232 - # dim received_rps multiplier = 1
4233 - # dim received_rps divisor = 1
4234 - # dim flow_limit_count name = flow_limit_count
4235 - # dim flow_limit_count algorithm = incremental
4236 - # dim flow_limit_count multiplier = 1
4237 - # dim flow_limit_count divisor = 1
4238 -
4239 -[cpu.cpu5_softnet_stat]
4240 - history = 5
4241 - # enabled = yes
4242 - # cache directory = /var/cache/netdata/cpu.cpu5_softnet_stat
4243 - # chart type = line
4244 - # type = cpu
4245 - # family = softnet_stat
4246 - # units = events/s
4247 - # context = cpu.softnet_stat
4248 - # priority = 4106
4249 - # name = cpu.cpu5_softnet_stat
4250 - # title = CPU5 softnet_stat
4251 - # dim processed name = processed
4252 - # dim processed algorithm = incremental
4253 - # dim processed multiplier = 1
4254 - # dim processed divisor = 1
4255 - # dim dropped name = dropped
4256 - # dim dropped algorithm = incremental
4257 - # dim dropped multiplier = 1
4258 - # dim dropped divisor = 1
4259 - # dim squeezed name = squeezed
4260 - # dim squeezed algorithm = incremental
4261 - # dim squeezed multiplier = 1
4262 - # dim squeezed divisor = 1
4263 - # dim received_rps name = received_rps
4264 - # dim received_rps algorithm = incremental
4265 - # dim received_rps multiplier = 1
4266 - # dim received_rps divisor = 1
4267 - # dim flow_limit_count name = flow_limit_count
4268 - # dim flow_limit_count algorithm = incremental
4269 - # dim flow_limit_count multiplier = 1
4270 - # dim flow_limit_count divisor = 1
4271 -
4272 -[cpu.cpu6_softnet_stat]
4273 - history = 5
4274 - # enabled = yes
4275 - # cache directory = /var/cache/netdata/cpu.cpu6_softnet_stat
4276 - # chart type = line
4277 - # type = cpu
4278 - # family = softnet_stat
4279 - # units = events/s
4280 - # context = cpu.softnet_stat
4281 - # priority = 4107
4282 - # name = cpu.cpu6_softnet_stat
4283 - # title = CPU6 softnet_stat
4284 - # dim processed name = processed
4285 - # dim processed algorithm = incremental
4286 - # dim processed multiplier = 1
4287 - # dim processed divisor = 1
4288 - # dim dropped name = dropped
4289 - # dim dropped algorithm = incremental
4290 - # dim dropped multiplier = 1
4291 - # dim dropped divisor = 1
4292 - # dim squeezed name = squeezed
4293 - # dim squeezed algorithm = incremental
4294 - # dim squeezed multiplier = 1
4295 - # dim squeezed divisor = 1
4296 - # dim received_rps name = received_rps
4297 - # dim received_rps algorithm = incremental
4298 - # dim received_rps multiplier = 1
4299 - # dim received_rps divisor = 1
4300 - # dim flow_limit_count name = flow_limit_count
4301 - # dim flow_limit_count algorithm = incremental
4302 - # dim flow_limit_count multiplier = 1
4303 - # dim flow_limit_count divisor = 1
4304 -
4305 -[cpu.cpu7_softnet_stat]
4306 - history = 5
4307 - # enabled = yes
4308 - # cache directory = /var/cache/netdata/cpu.cpu7_softnet_stat
4309 - # chart type = line
4310 - # type = cpu
4311 - # family = softnet_stat
4312 - # units = events/s
4313 - # context = cpu.softnet_stat
4314 - # priority = 4108
4315 - # name = cpu.cpu7_softnet_stat
4316 - # title = CPU7 softnet_stat
4317 - # dim processed name = processed
4318 - # dim processed algorithm = incremental
4319 - # dim processed multiplier = 1
4320 - # dim processed divisor = 1
4321 - # dim dropped name = dropped
4322 - # dim dropped algorithm = incremental
4323 - # dim dropped multiplier = 1
4324 - # dim dropped divisor = 1
4325 - # dim squeezed name = squeezed
4326 - # dim squeezed algorithm = incremental
4327 - # dim squeezed multiplier = 1
4328 - # dim squeezed divisor = 1
4329 - # dim received_rps name = received_rps
4330 - # dim received_rps algorithm = incremental
4331 - # dim received_rps multiplier = 1
4332 - # dim received_rps divisor = 1
4333 - # dim flow_limit_count name = flow_limit_count
4334 - # dim flow_limit_count algorithm = incremental
4335 - # dim flow_limit_count multiplier = 1
4336 - # dim flow_limit_count divisor = 1
4337 -
4338 -[netfilter.conntrack_sockets]
4339 - history = 5
4340 - # enabled = yes
4341 - # cache directory = /var/cache/netdata/netfilter.conntrack_sockets
4342 - # chart type = line
4343 - # type = netfilter
4344 - # family = conntrack
4345 - # units = active connections
4346 - # context = netfilter.conntrack_sockets
4347 - # priority = 8700
4348 - # name = netfilter.conntrack_sockets
4349 - # title = Connection Tracker Connections
4350 - # dim connections name = connections
4351 - # dim connections algorithm = absolute
4352 - # dim connections multiplier = 1
4353 - # dim connections divisor = 1
4354 -
4355 -[netfilter.conntrack_new]
4356 - history = 5
4357 - # enabled = yes
4358 - # cache directory = /var/cache/netdata/netfilter.conntrack_new
4359 - # chart type = line
4360 - # type = netfilter
4361 - # family = conntrack
4362 - # units = connections/s
4363 - # context = netfilter.conntrack_new
4364 - # priority = 8701
4365 - # name = netfilter.conntrack_new
4366 - # title = Connection Tracker New Connections
4367 - # dim new name = new
4368 - # dim new algorithm = incremental
4369 - # dim new multiplier = 1
4370 - # dim new divisor = 1
4371 - # dim ignore name = ignore
4372 - # dim ignore algorithm = incremental
4373 - # dim ignore multiplier = -1
4374 - # dim ignore divisor = 1
4375 - # dim invalid name = invalid
4376 - # dim invalid algorithm = incremental
4377 - # dim invalid multiplier = -1
4378 - # dim invalid divisor = 1
4379 -
4380 -[netfilter.conntrack_changes]
4381 - history = 5
4382 - # enabled = yes
4383 - # cache directory = /var/cache/netdata/netfilter.conntrack_changes
4384 - # chart type = line
4385 - # type = netfilter
4386 - # family = conntrack
4387 - # units = changes/s
4388 - # context = netfilter.conntrack_changes
4389 - # priority = 8702
4390 - # name = netfilter.conntrack_changes
4391 - # title = Connection Tracker Changes
4392 - # dim inserted name = inserted
4393 - # dim inserted algorithm = incremental
4394 - # dim inserted multiplier = 1
4395 - # dim inserted divisor = 1
4396 - # dim deleted name = deleted
4397 - # dim deleted algorithm = incremental
4398 - # dim deleted multiplier = -1
4399 - # dim deleted divisor = 1
4400 - # dim delete_list name = delete_list
4401 - # dim delete_list algorithm = incremental
4402 - # dim delete_list multiplier = -1
4403 - # dim delete_list divisor = 1
4404 -
4405 -[netfilter.conntrack_expect]
4406 - history = 5
4407 - # enabled = yes
4408 - # cache directory = /var/cache/netdata/netfilter.conntrack_expect
4409 - # chart type = line
4410 - # type = netfilter
4411 - # family = conntrack
4412 - # units = expectations/s
4413 - # context = netfilter.conntrack_expect
4414 - # priority = 8703
4415 - # name = netfilter.conntrack_expect
4416 - # title = Connection Tracker Expectations
4417 - # dim created name = created
4418 - # dim created algorithm = incremental
4419 - # dim created multiplier = 1
4420 - # dim created divisor = 1
4421 - # dim deleted name = deleted
4422 - # dim deleted algorithm = incremental
4423 - # dim deleted multiplier = -1
4424 - # dim deleted divisor = 1
4425 - # dim new name = new
4426 - # dim new algorithm = incremental
4427 - # dim new multiplier = 1
4428 - # dim new divisor = 1
4429 -
4430 -[netfilter.conntrack_search]
4431 - history = 5
4432 - # enabled = yes
4433 - # cache directory = /var/cache/netdata/netfilter.conntrack_search
4434 - # chart type = line
4435 - # type = netfilter
4436 - # family = conntrack
4437 - # units = searches/s
4438 - # context = netfilter.conntrack_search
4439 - # priority = 8710
4440 - # name = netfilter.conntrack_search
4441 - # title = Connection Tracker Searches
4442 - # dim searched name = searched
4443 - # dim searched algorithm = incremental
4444 - # dim searched multiplier = 1
4445 - # dim searched divisor = 1
4446 - # dim restarted name = restarted
4447 - # dim restarted algorithm = incremental
4448 - # dim restarted multiplier = -1
4449 - # dim restarted divisor = 1
4450 - # dim found name = found
4451 - # dim found algorithm = incremental
4452 - # dim found multiplier = 1
4453 - # dim found divisor = 1
4454 -
4455 -[netfilter.conntrack_errors]
4456 - history = 5
4457 - # enabled = yes
4458 - # cache directory = /var/cache/netdata/netfilter.conntrack_errors
4459 - # chart type = line
4460 - # type = netfilter
4461 - # family = conntrack
4462 - # units = events/s
4463 - # context = netfilter.conntrack_errors
4464 - # priority = 8705
4465 - # name = netfilter.conntrack_errors
4466 - # title = Connection Tracker Errors
4467 - # dim icmp_error name = icmp_error
4468 - # dim icmp_error algorithm = incremental
4469 - # dim icmp_error multiplier = 1
4470 - # dim icmp_error divisor = 1
4471 - # dim insert_failed name = insert_failed
4472 - # dim insert_failed algorithm = incremental
4473 - # dim insert_failed multiplier = -1
4474 - # dim insert_failed divisor = 1
4475 - # dim drop name = drop
4476 - # dim drop algorithm = incremental
4477 - # dim drop multiplier = -1
4478 - # dim drop divisor = 1
4479 - # dim early_drop name = early_drop
4480 - # dim early_drop algorithm = incremental
4481 - # dim early_drop multiplier = -1
4482 - # dim early_drop divisor = 1
4483 -
4484 -[disk.sda]
4485 - history = 5
4486 - # enabled = yes
4487 - # cache directory = /var/cache/netdata/disk.sda
4488 - # chart type = area
4489 - # type = disk
4490 - # family = sda
4491 - # units = KiB/s
4492 - # context = disk.io
4493 - # priority = 2000
4494 - # name = disk.sda
4495 - # title = Disk I/O Bandwidth
4496 - # dim reads name = reads
4497 - # dim reads algorithm = incremental
4498 - # dim reads multiplier = 512
4499 - # dim reads divisor = 1024
4500 - # dim writes name = writes
4501 - # dim writes algorithm = incremental
4502 - # dim writes multiplier = -512
4503 - # dim writes divisor = 1024
4504 -
4505 -[disk_ops.sda]
4506 - history = 5
4507 - # enabled = yes
4508 - # cache directory = /var/cache/netdata/disk_ops.sda
4509 - # chart type = line
4510 - # type = disk_ops
4511 - # family = sda
4512 - # units = operations/s
4513 - # context = disk.ops
4514 - # priority = 2001
4515 - # name = disk_ops.sda
4516 - # title = Disk Completed I/O Operations
4517 - # dim reads name = reads
4518 - # dim reads algorithm = incremental
4519 - # dim reads multiplier = 1
4520 - # dim reads divisor = 1
4521 - # dim writes name = writes
4522 - # dim writes algorithm = incremental
4523 - # dim writes multiplier = -1
4524 - # dim writes divisor = 1
4525 -
4526 -[disk_backlog.sda]
4527 - history = 5
4528 - # enabled = yes
4529 - # cache directory = /var/cache/netdata/disk_backlog.sda
4530 - # chart type = area
4531 - # type = disk_backlog
4532 - # family = sda
4533 - # units = milliseconds
4534 - # context = disk.backlog
4535 - # priority = 2003
4536 - # name = disk_backlog.sda
4537 - # title = Disk Backlog
4538 - # dim backlog name = backlog
4539 - # dim backlog algorithm = incremental
4540 - # dim backlog multiplier = 1
4541 - # dim backlog divisor = 10
4542 -
4543 -[disk_util.sda]
4544 - history = 5
4545 - # enabled = yes
4546 - # cache directory = /var/cache/netdata/disk_util.sda
4547 - # chart type = area
4548 - # type = disk_util
4549 - # family = sda
4550 - # units = % of time working
4551 - # context = disk.util
4552 - # priority = 2004
4553 - # name = disk_util.sda
4554 - # title = Disk Utilization Time
4555 - # dim utilization name = utilization
4556 - # dim utilization algorithm = incremental
4557 - # dim utilization multiplier = 1
4558 - # dim utilization divisor = 10
4559 -
4560 -[disk_iotime.sda]
4561 - history = 5
4562 - # enabled = yes
4563 - # cache directory = /var/cache/netdata/disk_iotime.sda
4564 - # chart type = line
4565 - # type = disk_iotime
4566 - # family = sda
4567 - # units = milliseconds/s
4568 - # context = disk.iotime
4569 - # priority = 2022
4570 - # name = disk_iotime.sda
4571 - # title = Disk Total I/O Time
4572 - # dim reads name = reads
4573 - # dim reads algorithm = incremental
4574 - # dim reads multiplier = 1
4575 - # dim reads divisor = 1
4576 - # dim writes name = writes
4577 - # dim writes algorithm = incremental
4578 - # dim writes multiplier = -1
4579 - # dim writes divisor = 1
4580 -
4581 -[disk.sdb]
4582 - history = 5
4583 - # enabled = yes
4584 - # cache directory = /var/cache/netdata/disk.sdb
4585 - # chart type = area
4586 - # type = disk
4587 - # family = sdb
4588 - # units = KiB/s
4589 - # context = disk.io
4590 - # priority = 2000
4591 - # name = disk.sdb
4592 - # title = Disk I/O Bandwidth
4593 - # dim reads name = reads
4594 - # dim reads algorithm = incremental
4595 - # dim reads multiplier = 512
4596 - # dim reads divisor = 1024
4597 - # dim writes name = writes
4598 - # dim writes algorithm = incremental
4599 - # dim writes multiplier = -512
4600 - # dim writes divisor = 1024
4601 -
4602 -[disk_ops.sdb]
4603 - history = 5
4604 - # enabled = yes
4605 - # cache directory = /var/cache/netdata/disk_ops.sdb
4606 - # chart type = line
4607 - # type = disk_ops
4608 - # family = sdb
4609 - # units = operations/s
4610 - # context = disk.ops
4611 - # priority = 2001
4612 - # name = disk_ops.sdb
4613 - # title = Disk Completed I/O Operations
4614 - # dim reads name = reads
4615 - # dim reads algorithm = incremental
4616 - # dim reads multiplier = 1
4617 - # dim reads divisor = 1
4618 - # dim writes name = writes
4619 - # dim writes algorithm = incremental
4620 - # dim writes multiplier = -1
4621 - # dim writes divisor = 1
4622 -
4623 -[disk_backlog.sdb]
4624 - history = 5
4625 - # enabled = yes
4626 - # cache directory = /var/cache/netdata/disk_backlog.sdb
4627 - # chart type = area
4628 - # type = disk_backlog
4629 - # family = sdb
4630 - # units = milliseconds
4631 - # context = disk.backlog
4632 - # priority = 2003
4633 - # name = disk_backlog.sdb
4634 - # title = Disk Backlog
4635 - # dim backlog name = backlog
4636 - # dim backlog algorithm = incremental
4637 - # dim backlog multiplier = 1
4638 - # dim backlog divisor = 10
4639 -
4640 -[disk_util.sdb]
4641 - history = 5
4642 - # enabled = yes
4643 - # cache directory = /var/cache/netdata/disk_util.sdb
4644 - # chart type = area
4645 - # type = disk_util
4646 - # family = sdb
4647 - # units = % of time working
4648 - # context = disk.util
4649 - # priority = 2004
4650 - # name = disk_util.sdb
4651 - # title = Disk Utilization Time
4652 - # dim utilization name = utilization
4653 - # dim utilization algorithm = incremental
4654 - # dim utilization multiplier = 1
4655 - # dim utilization divisor = 10
4656 -
4657 -[disk_mops.sdb]
4658 - history = 5
4659 - # enabled = yes
4660 - # cache directory = /var/cache/netdata/disk_mops.sdb
4661 - # chart type = line
4662 - # type = disk_mops
4663 - # family = sdb
4664 - # units = merged operations/s
4665 - # context = disk.mops
4666 - # priority = 2021
4667 - # name = disk_mops.sdb
4668 - # title = Disk Merged Operations
4669 - # dim reads name = reads
4670 - # dim reads algorithm = incremental
4671 - # dim reads multiplier = 1
4672 - # dim reads divisor = 1
4673 - # dim writes name = writes
4674 - # dim writes algorithm = incremental
4675 - # dim writes multiplier = -1
4676 - # dim writes divisor = 1
4677 -
4678 -[disk_iotime.sdb]
4679 - history = 5
4680 - # enabled = yes
4681 - # cache directory = /var/cache/netdata/disk_iotime.sdb
4682 - # chart type = line
4683 - # type = disk_iotime
4684 - # family = sdb
4685 - # units = milliseconds/s
4686 - # context = disk.iotime
4687 - # priority = 2022
4688 - # name = disk_iotime.sdb
4689 - # title = Disk Total I/O Time
4690 - # dim reads name = reads
4691 - # dim reads algorithm = incremental
4692 - # dim reads multiplier = 1
4693 - # dim reads divisor = 1
4694 - # dim writes name = writes
4695 - # dim writes algorithm = incremental
4696 - # dim writes multiplier = -1
4697 - # dim writes divisor = 1
4698 -
4699 -[system.io]
4700 - history = 5
4701 - # enabled = yes
4702 - # cache directory = /var/cache/netdata/system.io
4703 - # chart type = area
4704 - # type = system
4705 - # family = disk
4706 - # units = KiB/s
4707 - # context = system.io
4708 - # priority = 150
4709 - # name = system.io
4710 - # title = Disk I/O
4711 - # dim in name = in
4712 - # dim in algorithm = incremental
4713 - # dim in multiplier = 1
4714 - # dim in divisor = 1
4715 - # dim out name = out
4716 - # dim out algorithm = incremental
4717 - # dim out multiplier = -1
4718 - # dim out divisor = 1
4719 -
4720 -[system.ipc_semaphores]
4721 - history = 5
4722 - # enabled = yes
4723 - # cache directory = /var/cache/netdata/system.ipc_semaphores
4724 - # chart type = area
4725 - # type = system
4726 - # family = ipc semaphores
4727 - # units = semaphores
4728 - # context = system.ipc_semaphores
4729 - # priority = 1203
4730 - # name = system.ipc_semaphores
4731 - # title = IPC Semaphores
4732 - # dim semaphores name = semaphores
4733 - # dim semaphores algorithm = absolute
4734 - # dim semaphores multiplier = 1
4735 - # dim semaphores divisor = 1
4736 -
4737 -[system.ipc_semaphore_arrays]
4738 - history = 5
4739 - # enabled = yes
4740 - # cache directory = /var/cache/netdata/system.ipc_semaphore_arrays
4741 - # chart type = area
4742 - # type = system
4743 - # family = ipc semaphores
4744 - # units = arrays
4745 - # context = system.ipc_semaphore_arrays
4746 - # priority = 1204
4747 - # name = system.ipc_semaphore_arrays
4748 - # title = IPC Semaphore Arrays
4749 - # dim arrays name = arrays
4750 - # dim arrays algorithm = absolute
4751 - # dim arrays multiplier = 1
4752 - # dim arrays divisor = 1
4753 -
4754 -[system.shared_memory_segments]
4755 - history = 5
4756 - # enabled = yes
4757 - # cache directory = /var/cache/netdata/system.shared_memory_segments
4758 - # chart type = stacked
4759 - # type = system
4760 - # family = ipc shared memory
4761 - # units = segments
4762 - # context = system.shared_memory_segments
4763 - # priority = 1205
4764 - # name = system.shared_memory_segments
4765 - # title = IPC Shared Memory Number of Segments
4766 - # dim segments name = segments
4767 - # dim segments algorithm = absolute
4768 - # dim segments multiplier = 1
4769 - # dim segments divisor = 1
4770 -
4771 -[system.shared_memory_bytes]
4772 - history = 5
4773 - # enabled = yes
4774 - # cache directory = /var/cache/netdata/system.shared_memory_bytes
4775 - # chart type = stacked
4776 - # type = system
4777 - # family = ipc shared memory
4778 - # units = bytes
4779 - # context = system.shared_memory_bytes
4780 - # priority = 1206
4781 - # name = system.shared_memory_bytes
4782 - # title = IPC Shared Memory Used Bytes
4783 - # dim bytes name = bytes
4784 - # dim bytes algorithm = absolute
4785 - # dim bytes multiplier = 1
4786 - # dim bytes divisor = 1
4787 -
4788 -[netdata.plugin_proc_modules]
4789 - history = 5
4790 - # enabled = yes
4791 - # cache directory = /var/cache/netdata/netdata.plugin_proc_modules
4792 - # chart type = stacked
4793 - # type = netdata
4794 - # family = proc
4795 - # units = milliseconds/run
4796 - # context = netdata.plugin_proc_modules
4797 - # priority = 132001
4798 - # name = netdata.plugin_proc_modules
4799 - # title = Netdata Proc Plugin Modules Durations
4800 - # dim stat name = stat
4801 - # dim stat algorithm = absolute
4802 - # dim stat multiplier = 1
4803 - # dim stat divisor = 1000
4804 - # dim uptime name = uptime
4805 - # dim uptime algorithm = absolute
4806 - # dim uptime multiplier = 1
4807 - # dim uptime divisor = 1000
4808 - # dim loadavg name = loadavg
4809 - # dim loadavg algorithm = absolute
4810 - # dim loadavg multiplier = 1
4811 - # dim loadavg divisor = 1000
4812 - # dim entropy name = entropy
4813 - # dim entropy algorithm = absolute
4814 - # dim entropy multiplier = 1
4815 - # dim entropy divisor = 1000
4816 - # dim interrupts name = interrupts
4817 - # dim interrupts algorithm = absolute
4818 - # dim interrupts multiplier = 1
4819 - # dim interrupts divisor = 1000
4820 - # dim softirqs name = softirqs
4821 - # dim softirqs algorithm = absolute
4822 - # dim softirqs multiplier = 1
4823 - # dim softirqs divisor = 1000
4824 - # dim vmstat name = vmstat
4825 - # dim vmstat algorithm = absolute
4826 - # dim vmstat multiplier = 1
4827 - # dim vmstat divisor = 1000
4828 - # dim meminfo name = meminfo
4829 - # dim meminfo algorithm = absolute
4830 - # dim meminfo multiplier = 1
4831 - # dim meminfo divisor = 1000
4832 - # dim ksm name = ksm
4833 - # dim ksm algorithm = absolute
4834 - # dim ksm multiplier = 1
4835 - # dim ksm divisor = 1000
4836 - # dim numa name = numa
4837 - # dim numa algorithm = absolute
4838 - # dim numa multiplier = 1
4839 - # dim numa divisor = 1000
4840 - # dim netdev name = netdev
4841 - # dim netdev algorithm = absolute
4842 - # dim netdev multiplier = 1
4843 - # dim netdev divisor = 1000
4844 - # dim sockstat name = sockstat
4845 - # dim sockstat algorithm = absolute
4846 - # dim sockstat multiplier = 1
4847 - # dim sockstat divisor = 1000
4848 - # dim sockstat6 name = sockstat6
4849 - # dim sockstat6 algorithm = absolute
4850 - # dim sockstat6 multiplier = 1
4851 - # dim sockstat6 divisor = 1000
4852 - # dim netstat name = netstat
4853 - # dim netstat algorithm = absolute
4854 - # dim netstat multiplier = 1
4855 - # dim netstat divisor = 1000
4856 - # dim snmp name = snmp
4857 - # dim snmp algorithm = absolute
4858 - # dim snmp multiplier = 1
4859 - # dim snmp divisor = 1000
4860 - # dim snmp6 name = snmp6
4861 - # dim snmp6 algorithm = absolute
4862 - # dim snmp6 multiplier = 1
4863 - # dim snmp6 divisor = 1000
4864 - # dim softnet name = softnet
4865 - # dim softnet algorithm = absolute
4866 - # dim softnet multiplier = 1
4867 - # dim softnet divisor = 1000
4868 - # dim conntrack name = conntrack
4869 - # dim conntrack algorithm = absolute
4870 - # dim conntrack multiplier = 1
4871 - # dim conntrack divisor = 1000
4872 - # dim diskstats name = diskstats
4873 - # dim diskstats algorithm = absolute
4874 - # dim diskstats multiplier = 1
4875 - # dim diskstats divisor = 1000
4876 - # dim mdstat name = mdstat
4877 - # dim mdstat algorithm = absolute
4878 - # dim mdstat multiplier = 1
4879 - # dim mdstat divisor = 1000
4880 - # dim btrfs name = btrfs
4881 - # dim btrfs algorithm = absolute
4882 - # dim btrfs multiplier = 1
4883 - # dim btrfs divisor = 1000
4884 - # dim ipc name = ipc
4885 - # dim ipc algorithm = absolute
4886 - # dim ipc multiplier = 1
4887 - # dim ipc divisor = 1000
4888 - # dim power_supply name = power_supply
4889 - # dim power_supply algorithm = absolute
4890 - # dim power_supply multiplier = 1
4891 - # dim power_supply divisor = 1000
4892 -
4893 -[netdata.plugin_proc_cpu]
4894 - history = 5
4895 - # enabled = yes
4896 - # cache directory = /var/cache/netdata/netdata.plugin_proc_cpu
4897 - # chart type = stacked
4898 - # type = netdata
4899 - # family = proc
4900 - # units = milliseconds/s
4901 - # context = netdata.plugin_proc_cpu
4902 - # priority = 132000
4903 - # name = netdata.plugin_proc_cpu
4904 - # title = Netdata Proc Plugin CPU usage
4905 - # dim user name = user
4906 - # dim user algorithm = incremental
4907 - # dim user multiplier = 1
4908 - # dim user divisor = 1000
4909 - # dim system name = system
4910 - # dim system algorithm = incremental
4911 - # dim system multiplier = 1
4912 - # dim system divisor = 1000
4913 -
4914 -[netdata.server_cpu]
4915 - history = 5
4916 - # enabled = yes
4917 - # cache directory = /var/cache/netdata/netdata.server_cpu
4918 - # chart type = stacked
4919 - # type = netdata
4920 - # family = netdata
4921 - # units = milliseconds/s
4922 - # context = netdata.server_cpu
4923 - # priority = 130000
4924 - # name = netdata.server_cpu
4925 - # title = Netdata CPU usage
4926 - # dim user name = user
4927 - # dim user algorithm = incremental
4928 - # dim user multiplier = 1
4929 - # dim user divisor = 1000
4930 - # dim system name = system
4931 - # dim system algorithm = incremental
4932 - # dim system multiplier = 1
4933 - # dim system divisor = 1000
4934 -
4935 -[netdata.clients]
4936 - history = 5
4937 - # enabled = yes
4938 - # cache directory = /var/cache/netdata/netdata.clients
4939 - # chart type = line
4940 - # type = netdata
4941 - # family = netdata
4942 - # units = connected clients
4943 - # context = netdata.clients
4944 - # priority = 130200
4945 - # name = netdata.clients
4946 - # title = Netdata Web Clients
4947 - # dim clients name = clients
4948 - # dim clients algorithm = absolute
4949 - # dim clients multiplier = 1
4950 - # dim clients divisor = 1
4951 -
4952 -[netdata.requests]
4953 - history = 5
4954 - # enabled = yes
4955 - # cache directory = /var/cache/netdata/netdata.requests
4956 - # chart type = line
4957 - # type = netdata
4958 - # family = netdata
4959 - # units = requests/s
4960 - # context = netdata.requests
4961 - # priority = 130300
4962 - # name = netdata.requests
4963 - # title = Netdata Web Requests
4964 - # dim requests name = requests
4965 - # dim requests algorithm = incremental
4966 - # dim requests multiplier = 1
4967 - # dim requests divisor = 1
4968 -
4969 -[netdata.net]
4970 - history = 5
4971 - # enabled = yes
4972 - # cache directory = /var/cache/netdata/netdata.net
4973 - # chart type = area
4974 - # type = netdata
4975 - # family = netdata
4976 - # units = kilobits/s
4977 - # context = netdata.net
4978 - # priority = 130000
4979 - # name = netdata.net
4980 - # title = Netdata Network Traffic
4981 - # dim in name = in
4982 - # dim in algorithm = incremental
4983 - # dim in multiplier = 8
4984 - # dim in divisor = 1000
4985 - # dim out name = out
4986 - # dim out algorithm = incremental
4987 - # dim out multiplier = -8
4988 - # dim out divisor = 1000
4989 -
4990 -[netdata.response_time]
4991 - history = 5
4992 - # enabled = yes
4993 - # cache directory = /var/cache/netdata/netdata.response_time
4994 - # chart type = line
4995 - # type = netdata
4996 - # family = netdata
4997 - # units = milliseconds/request
4998 - # context = netdata.response_time
4999 - # priority = 130400

This file is too large to show in full.

build_external/scenarios/aclk-testing/configureVerneMQ.Dockerfile deleted
-8
@@ -1,8 +0,0 @@
1 -FROM vernemq:latest
2 -EXPOSE 9002
3 -COPY vernemq.conf /vernemq/etc/vernemq.conf
4 -WORKDIR /vernemq
5 -#RUN openssl req -newkey rsa:2048 -nodes -keyout server.key -x509 -days 365 -out server.crt -subj '/CN=vernemq'
6 -RUN openssl req -newkey rsa:4096 -x509 -sha256 -days 3650 -nodes -out server.crt -keyout server.key -subj "/C=SK/ST=XX/L=XX/O=NetdataIsAwesome/OU=NotSupremeLeader/CN=netdata.cloud"
7 -RUN chown vernemq:vernemq /vernemq/server.key /vernemq/server.crt
8 -RUN cat /vernemq/etc/vernemq.conf
build_external/scenarios/aclk-testing/paho-compose.yml deleted
-6
@@ -1,6 +0,0 @@
1 -version: '3.3'
2 -services:
3 - paho_inspect:
4 - build:
5 - context: .
6 - dockerfile: paho.Dockerfile
build_external/scenarios/aclk-testing/paho-inspection.py deleted
-33
@@ -1,33 +0,0 @@
1 -import ssl
2 -import paho.mqtt.client as mqtt
3 -
4 -def on_connect(mqttc, obj, flags, rc):
5 - print("connected rc: "+str(rc), flush=True)
6 - mqttc.subscribe("/agent/#",0)
7 -def on_disconnect(mqttc, obj, flags, rc):
8 - print("disconnected rc: "+str(rc), flush=True)
9 -def on_message(mqttc, obj, msg):
10 - print(msg.topic+" "+str(msg.qos)+" "+str(msg.payload), flush=True)
11 -def on_publish(mqttc, obj, mid):
12 - print("mid: "+str(mid), flush=True)
13 -def on_subscribe(mqttc, obj, mid, granted_qos):
14 - print("Subscribed: "+str(mid)+" "+str(granted_qos), flush=True)
15 -def on_log(mqttc, obj, level, string):
16 - print(string)
17 -print("Starting paho-inspection", flush=True)
18 -mqttc = mqtt.Client(transport='websockets')
19 -#mqttc.tls_set(certfile="server.crt", keyfile="server.key", cert_reqs=ssl.CERT_REQUIRED, tls_version=ssl.PROTOCOL_TLS, ciphers=None)
20 -#mqttc.tls_set(ca_certs="server.crt", cert_reqs=ssl.CERT_REQUIRED, tls_version=ssl.PROTOCOL_TLS, ciphers=None)
21 -mqttc.tls_set(cert_reqs=ssl.CERT_NONE, tls_version=ssl.PROTOCOL_TLS, ciphers=None)
22 -mqttc.tls_insecure_set(True)
23 -mqttc.on_message = on_message
24 -mqttc.on_connect = on_connect
25 -mqttc.on_disconnect = on_disconnect
26 -mqttc.on_publish = on_publish
27 -mqttc.on_subscribe = on_subscribe
28 -mqttc.connect("vernemq", 9002, 60)
29 -
30 -#mqttc.publish("/agent/mine","Test1")
31 -#mqttc.subscribe("$SYS/#", 0)
32 -print("Connected successfully, monitoring /agent/#", flush=True)
33 -mqttc.loop_forever()
build_external/scenarios/aclk-testing/paho.Dockerfile deleted
-12
@@ -1,12 +0,0 @@
1 -FROM archlinux/base:latest
2 -
3 -RUN pacman -Syyu --noconfirm
4 -RUN pacman --noconfirm --needed -S python-pip
5 -
6 -RUN pip install paho-mqtt
7 -
8 -RUN mkdir -p /opt/paho
9 -COPY paho-inspection.py /opt/paho/
10 -
11 -WORKDIR /opt/paho
12 -CMD ["/usr/sbin/python", "paho-inspection.py"]
\ No newline at end of file
build_external/scenarios/aclk-testing/vernemq-compose.yml deleted
-6
@@ -1,6 +0,0 @@
1 -version: '3.3'
2 -services:
3 - vernemq:
4 - build:
5 - dockerfile: configureVerneMQ.Dockerfile
6 - context: .
build_external/scenarios/aclk-testing/vernemq.conf deleted
-68
@@ -1,68 +0,0 @@
1 -allow_anonymous = on
2 -allow_register_during_netsplit = off
3 -allow_publish_during_netsplit = off
4 -allow_subscribe_during_netsplit = off
5 -allow_unsubscribe_during_netsplit = off
6 -allow_multiple_sessions = off
7 -coordinate_registrations = on
8 -max_inflight_messages = 20
9 -max_online_messages = 1000
10 -max_offline_messages = 1000
11 -max_message_size = 0
12 -upgrade_outgoing_qos = off
13 -listener.max_connections = 10000
14 -listener.nr_of_acceptors = 10
15 -listener.tcp.default = 127.0.0.1:1883
16 -listener.wss.keyfile = /vernemq/server.key
17 -listener.wss.certfile = /vernemq/server.crt
18 -listener.wss.default = 0.0.0.0:9002
19 -listener.vmq.clustering = 0.0.0.0:44053
20 -listener.http.default = 127.0.0.1:8888
21 -listener.ssl.require_certificate = off
22 -listener.wss.require_certificate = off
23 -systree_enabled = on
24 -systree_interval = 20000
25 -graphite_enabled = off
26 -graphite_host = localhost
27 -graphite_port = 2003
28 -graphite_interval = 20000
29 -shared_subscription_policy = prefer_local
30 -plugins.vmq_passwd = on
31 -plugins.vmq_acl = on
32 -plugins.vmq_diversity = off
33 -plugins.vmq_webhooks = off
34 -plugins.vmq_bridge = off
35 -metadata_plugin = vmq_plumtree
36 -vmq_acl.acl_file = ./etc/vmq.acl
37 -vmq_acl.acl_reload_interval = 10
38 -vmq_passwd.password_file = ./etc/vmq.passwd
39 -vmq_passwd.password_reload_interval = 10
40 -vmq_diversity.script_dir = ./share/lua
41 -vmq_diversity.auth_postgres.enabled = off
42 -vmq_diversity.postgres.ssl = off
43 -vmq_diversity.postgres.password_hash_method = crypt
44 -vmq_diversity.auth_cockroachdb.enabled = off
45 -vmq_diversity.cockroachdb.ssl = on
46 -vmq_diversity.cockroachdb.password_hash_method = bcrypt
47 -vmq_diversity.auth_mysql.enabled = off
48 -vmq_diversity.mysql.password_hash_method = password
49 -vmq_diversity.auth_mongodb.enabled = off
50 -vmq_diversity.mongodb.ssl = off
51 -vmq_diversity.auth_redis.enabled = off
52 -vmq_bcrypt.pool_size = 1
53 -log.console = file
54 -log.console.level = info
55 -log.console.file = ./log/console.log
56 -log.error.file = ./log/error.log
57 -log.syslog = off
58 -log.crash = on
59 -log.crash.file = ./log/crash.log
60 -log.crash.maximum_message_size = 64KB
61 -log.crash.size = 10MB
62 -log.crash.rotation = $D0
63 -log.crash.rotation.keep = 5
64 -nodename = VerneMQ@127.0.0.1
65 -distributed_cookie = vmq
66 -erlang.async_threads = 64
67 -erlang.max_ports = 262144
68 -leveldb.maximum_memory.percent = 70
build_external/scenarios/children-to-localhost/README.md deleted
-10
@@ -1,10 +0,0 @@
1 -# Stream children to localhost
2 -
3 -1. Run `docker-compose up --scale=50`
4 -2. Copy `parent_stream.conf` to the `stream.conf` of a local agent
5 -3. Restart the local agent
6 -
7 -You'll have 50 child agents streaming to the parent agent that runs locally.
8 -
9 -Useful for easily stress testing, restarting, profiling, debugging, etc, a
10 -locally-built agent during development.
build_external/scenarios/children-to-localhost/child_netdata.conf deleted
-2
@@ -1,2 +0,0 @@
1 -[db]
2 - mode = dbengine
build_external/scenarios/children-to-localhost/child_stream.conf deleted
-10
@@ -1,10 +0,0 @@
1 -[stream]
2 - enabled = yes
3 - destination = tcp:host.docker.internal
4 - api key = 11111111-2222-3333-4444-555555555555
5 - timeout seconds = 60
6 - default port = 19999
7 - send charts matching = *
8 - buffer size bytes = 1048576
9 - reconnect delay seconds = 5
10 - initial clock resync iterations = 60
build_external/scenarios/children-to-localhost/docker-compose.yml deleted
-10
@@ -1,10 +0,0 @@
1 -version: '3.3'
2 -services:
3 - child:
4 - image: netdata/netdata
5 - command: /usr/sbin/netdata -D
6 - volumes:
7 - - ./child_stream.conf:/etc/netdata/stream.conf:ro
8 - - ./child_netdata.conf:/etc/netdata/netdata.conf:ro
9 - extra_hosts:
10 - - "host.docker.internal:host-gateway"
build_external/scenarios/children-to-localhost/parent_stream.conf deleted
-7
@@ -1,7 +0,0 @@
1 -[11111111-2222-3333-4444-555555555555]
2 - enabled = yes
3 - allow from = *
4 - default history = 3600
5 - health enabled by default = auto
6 - default postpone alarms on connect seconds = 60
7 - multiple connections = allow
build_external/scenarios/gaps_hi/child-compose.yml deleted
-13
@@ -1,13 +0,0 @@
1 -version: '3.3'
2 -services:
3 - agent_child:
4 - image: debian_10_dev
5 - command: /usr/sbin/netdata -D
6 - #ports:
7 - #- 21002+:19999
8 - volumes:
9 - - ./child_stream.conf:/etc/netdata/stream.conf:ro
10 - #- ./child_guid:/var/lib/netdata/registry/netdata.public.unique.id:ro
11 - - ./min.conf:/etc/netdata/netdata.conf:ro
12 - cap_add:
13 - - SYS_PTRACE
build_external/scenarios/gaps_hi/child_guid deleted
-1
@@ -1 +0,0 @@
1 -22222222-2222-2222-2222-222222222222
\ No newline at end of file
build_external/scenarios/gaps_hi/child_stream.conf deleted
-11
@@ -1,11 +0,0 @@
1 -[stream]
2 - enabled = yes
3 -# destination = tcp:agent_middle
4 - destination = tcp:192.168.1.2
5 - api key = 00000000-0000-0000-0000-000000000000
6 - timeout seconds = 60
7 - default port = 19999
8 - send charts matching = *
9 - buffer size bytes = 10485760
10 - reconnect delay seconds = 5
11 - initial clock resync iterations = 60
build_external/scenarios/gaps_hi/middle-compose.yml deleted
-13
@@ -1,13 +0,0 @@
1 -version: '3.3'
2 -services:
3 - agent_middle:
4 - image: debian_10_dev
5 - command: /usr/sbin/netdata -D
6 - ports:
7 - - 21001:19999
8 - volumes:
9 - - ./middle_stream.conf:/etc/netdata/stream.conf:ro
10 - - ./middle_guid:/var/lib/netdata/registry/netdata.public.unique.id:ro
11 - - ./min.conf:/etc/netdata/netdata.conf:ro
12 - cap_add:
13 - - SYS_PTRACE
build_external/scenarios/gaps_hi/middle_guid deleted
-1
@@ -1 +0,0 @@
1 -11111111-1111-1111-1111-111111111111
\ No newline at end of file
build_external/scenarios/gaps_hi/middle_stream.conf deleted
-23
@@ -1,23 +0,0 @@
1 -[stream]
2 - enabled = yes
3 - destination = tcp:agent_parent
4 - api key = 00000000-0000-0000-0000-000000000000
5 - timeout seconds = 60
6 - default port = 19999
7 -
8 - send charts matching = *
9 - buffer size bytes = 1048576
10 - reconnect delay seconds = 5
11 - initial clock resync iterations = 60
12 -
13 -[00000000-0000-0000-0000-000000000000]
14 - enabled = yes
15 - allow from = *
16 - default history = 3600
17 - # default memory mode = ram
18 -
19 - health enabled by default = auto
20 -
21 - # postpone alarms for a short period after the sender is connected
22 - default postpone alarms on connect seconds = 60
23 - multiple connections = allow
build_external/scenarios/gaps_hi/min.conf deleted
-6
@@ -1,6 +0,0 @@
1 -[global]
2 - debug flags = 0x0000000040000000
3 - errors flood protection period = 0
4 -[web]
5 - ssl key = /etc/netdata/ssl/key.pem
6 - ssl certificate = /etc/netdata/ssl/cert.pem
build_external/scenarios/gaps_hi/parent-compose.yml deleted
-13
@@ -1,13 +0,0 @@
1 -version: '3.3'
2 -services:
3 - agent_parent:
4 - image: debian_10_dev
5 - command: /usr/sbin/netdata -D
6 - ports:
7 - - 21000:19999
8 - volumes:
9 - - ./parent_stream.conf:/etc/netdata/stream.conf:ro
10 - - ./parent_guid:/var/lib/netdata/registry/netdata.public.unique.id:ro
11 - - ./min.conf:/etc/netdata/netdata.conf:ro
12 - cap_add:
13 - - SYS_PTRACE
build_external/scenarios/gaps_hi/parent_guid deleted
-1
@@ -1 +0,0 @@
1 -00000000-0000-0000-0000-000000000000
\ No newline at end of file
build_external/scenarios/gaps_hi/parent_stream.conf deleted
-11
@@ -1,11 +0,0 @@
1 -[00000000-0000-0000-0000-000000000000]
2 - enabled = yes
3 - allow from = *
4 - default history = 3600
5 - default memory mode = dbengine
6 - health enabled by default = no
7 -
8 - # postpone alarms for a short period after the sender is connected
9 - default postpone alarms on connect seconds = 60
10 - multiple connections = allow
11 -
build_external/scenarios/gaps_lo/child-compose.yml deleted
-14
@@ -1,14 +0,0 @@
1 -version: '3.3'
2 -services:
3 - agent_child:
4 - image: arch_extras_dev
5 - #command: /usr/sbin/valgrind --leak-check=full /usr/sbin/netdata -D
6 - command: /usr/sbin/netdata -D # gdb does not like valgrind !
7 - #ports:
8 - #- 21002:19999
9 - volumes:
10 - - ./child_stream.conf:/etc/netdata/stream.conf:ro
11 - # - ./child_guid:/var/lib/netdata/registry/netdata.public.unique.id:ro
12 - - ./mostly_off.conf:/etc/netdata/netdata.conf:ro
13 - cap_add:
14 - - SYS_PTRACE
build_external/scenarios/gaps_lo/child_guid deleted
-1
@@ -1 +0,0 @@
1 -22222222-2222-2222-2222-222222222222
\ No newline at end of file
build_external/scenarios/gaps_lo/child_stream.conf deleted
-11
@@ -1,11 +0,0 @@
1 -[stream]
2 - # Enable this on child nodes, to have them send metrics.
3 - enabled = yes
4 - destination = tcp:192.168.1.2
5 - api key = 00000000-0000-0000-0000-000000000000
6 - timeout seconds = 60
7 - default port = 19999
8 - send charts matching = *
9 - buffer size bytes = 1048576
10 - reconnect delay seconds = 5
11 - initial clock resync iterations = 60
build_external/scenarios/gaps_lo/middle-compose.yml deleted
-14
@@ -1,14 +0,0 @@
1 -version: '3.3'
2 -services:
3 - agent_middle:
4 - image: arch_extras_dev
5 - #command: /usr/sbin/valgrind --leak-check=full /usr/sbin/netdata -D
6 - command: /usr/sbin/netdata -D
7 - ports:
8 - - 21001:19999
9 - volumes:
10 - - ./middle_stream.conf:/etc/netdata/stream.conf:ro
11 - - ./middle_guid:/var/lib/netdata/registry/netdata.public.unique.id:ro
12 - - ./mostly_off.conf:/etc/netdata/netdata.conf:ro
13 - cap_add:
14 - - SYS_PTRACE
build_external/scenarios/gaps_lo/middle_guid deleted
-1
@@ -1 +0,0 @@
1 -11111111-1111-1111-1111-111111111111
\ No newline at end of file
build_external/scenarios/gaps_lo/middle_stream.conf deleted
-20
@@ -1,20 +0,0 @@
1 -[stream]
2 - enabled = yes
3 - destination = tcp:agent_parent
4 - api key = 00000000-0000-0000-0000-000000000000
5 - timeout seconds = 60
6 - default port = 19999
7 - send charts matching = *
8 - buffer size bytes = 1048576
9 - reconnect delay seconds = 5
10 - initial clock resync iterations = 60
11 -
12 -[00000000-0000-0000-0000-000000000000]
13 - enabled = yes
14 - allow from = *
15 - default history = 3600
16 - # default memory mode = ram
17 - health enabled by default = auto
18 - # postpone alarms for a short period after the sender is connected
19 - default postpone alarms on connect seconds = 60
20 - multiple connections = allow
build_external/scenarios/gaps_lo/mostly_off.conf deleted
-966
@@ -1,966 +0,0 @@
1 -# netdata configuration
2 -#
3 -# You can download the latest version of this file, using:
4 -#
5 -# wget -O /etc/netdata/netdata.conf http://localhost:19999/netdata.conf
6 -# or
7 -# curl -o /etc/netdata/netdata.conf http://localhost:19999/netdata.conf
8 -#
9 -# You can uncomment and change any of the options below.
10 -# The value shown in the commented settings, is the default value.
11 -#
12 -
13 -# global netdata configuration
14 -
15 -[global]
16 -debug flags = 0x0000000040000000
17 -errors flood protection period = 0
18 -
19 -[plugins]
20 - diskspace = no
21 - cgroups = no
22 - tc = no
23 - idlejitter = no
24 - ioping = no
25 - apps = no
26 - go.d = no
27 - perf = no
28 - python.d = no
29 - charts.d = no
30 - nfacct = no
31 - cups = no
32 - freeipmi = no
33 -
34 -[health]
35 -enabled = no
36 -
37 -[statsd]
38 -enabled = no
39 -
40 -[plugin:proc]
41 - /proc/uptime = yes
42 - /proc/loadavg = no
43 - /proc/sys/kernel/random/entropy_avail = no
44 - /proc/pressure = no
45 - /proc/interrupts = no
46 - /proc/softirqs = no
47 - /proc/vmstat = no
48 - /proc/meminfo = no
49 - /sys/kernel/mm/ksm = no
50 - /sys/block/zram = no
51 - /sys/devices/system/edac/mc = no
52 - /sys/devices/system/node = no
53 - /proc/net/dev = no
54 - /proc/net/sockstat = no
55 - /proc/net/sockstat6 = no
56 - /proc/net/netstat = no
57 - /proc/net/snmp = no
58 - /proc/net/snmp6 = no
59 - /proc/net/sctp/snmp = no
60 - /proc/net/softnet_stat = no
61 - /proc/net/ip_vs/stats = no
62 - /proc/net/stat/conntrack = no
63 - /proc/net/stat/synproxy = no
64 - /proc/diskstats = no
65 - /proc/mdstat = no
66 - /proc/net/rpc/nfsd = no
67 - /proc/net/rpc/nfs = no
68 - /proc/spl/kstat/zfs/arcstats = no
69 - /sys/fs/btrfs = no
70 - ipc = no
71 - /sys/class/power_supply = no
72 -
73 -
74 -[plugin:proc:/proc/net/dev:docker0]
75 -enabled = no
76 -
77 -[plugin:proc:/proc/net/dev:br-b87e56f878f1]
78 -enabled = no
79 -
80 -[plugin:proc:/proc/net/dev:enp4s0]
81 -enabled = no
82 -
83 -[plugin:proc:/proc/net/stat/nf_conntrack]
84 -filename to monitor = /proc/net/stat/nf_conntrack
85 -netfilter new connections = no
86 -netfilter connection changes = no
87 -netfilter connection expectations = no
88 -netfilter connection searches = no
89 -netfilter errors = no
90 -netfilter connections = no
91 -
92 -[system.idlejitter]
93 -enabled = no
94 -
95 -[netdata.statsd_metrics]
96 -enabled = no
97 -
98 -[netdata.statsd_useful_metrics]
99 -enabled = no
100 -
101 -[netdata.statsd_events]
102 -enabled = no
103 -
104 -[netdata.statsd_reads]
105 -enabled = no
106 -
107 -[netdata.statsd_bytes]
108 -enabled = no
109 -
110 -[netdata.statsd_packets]
111 -enabled = no
112 -
113 -[netdata.tcp_connects]
114 -enabled = no
115 -
116 -[netdata.tcp_connected]
117 -enabled = no
118 -
119 -[netdata.private_charts]
120 -enabled = no
121 -
122 -[netdata.plugin_statsd_charting_cpu]
123 -enabled = no
124 -
125 -[netdata.plugin_statsd_collector1_cpu]
126 -enabled = no
127 -
128 -[netdata.plugin_tc_cpu]
129 -enabled = no
130 -
131 -[netdata.plugin_tc_time]
132 -enabled = no
133 -
134 -[netdata.runtime_sensors]
135 -enabled = no
136 -
137 -[sensors.coretemp-isa-0000_temperature]
138 -enabled = no
139 -
140 -[sensors.acpitz-acpi-0_temperature]
141 -enabled = no
142 -
143 -[system.cpu]
144 -enabled = yes
145 -
146 -[disk_space._dev]
147 -enabled = no
148 -
149 -[netdata.plugin_cgroups_cpu]
150 -enabled = no
151 -
152 -[netdata.apps_cpu]
153 -enabled = no
154 -
155 -[netdata.apps_sizes]
156 -enabled = no
157 -
158 -[netdata.apps_fix]
159 -enabled = no
160 -
161 -[netdata.apps_children_fix]
162 -enabled = no
163 -
164 -[apps.cpu]
165 -enabled = no
166 -
167 -[apps.mem]
168 -enabled = no
169 -
170 -[apps.vmem]
171 -enabled = no
172 -
173 -[apps.threads]
174 -enabled = no
175 -
176 -[apps.processes]
177 -enabled = no
178 -
179 -[apps.uptime]
180 -enabled = no
181 -
182 -[apps.uptime_min]
183 -enabled = no
184 -
185 -[apps.uptime_avg]
186 -enabled = no
187 -
188 -[apps.uptime_max]
189 -enabled = no
190 -
191 -[apps.cpu_user]
192 -enabled = no
193 -
194 -[apps.cpu_system]
195 -enabled = no
196 -
197 -[apps.swap]
198 -enabled = no
199 -
200 -[apps.major_faults]
201 -enabled = no
202 -
203 -[apps.minor_faults]
204 -enabled = no
205 -
206 -[apps.preads]
207 -enabled = no
208 -
209 -[apps.pwrites]
210 -enabled = no
211 -
212 -[apps.lreads]
213 -enabled = no
214 -
215 -[apps.lwrites]
216 -enabled = no
217 -
218 -[apps.files]
219 -enabled = no
220 -
221 -[apps.sockets]
222 -enabled = no
223 -
224 -[apps.pipes]
225 -enabled = no
226 -
227 -[users.cpu]
228 -enabled = no
229 -
230 -[users.mem]
231 -enabled = no
232 -
233 -[users.vmem]
234 -enabled = no
235 -
236 -[users.threads]
237 -enabled = no
238 -
239 -[users.processes]
240 -enabled = no
241 -
242 -[users.uptime]
243 -enabled = no
244 -
245 -[users.uptime_min]
246 -enabled = no
247 -
248 -[users.uptime_avg]
249 -enabled = no
250 -
251 -[users.uptime_max]
252 -enabled = no
253 -
254 -[users.cpu_user]
255 -enabled = no
256 -
257 -[users.cpu_system]
258 -enabled = no
259 -
260 -[users.swap]
261 -enabled = no
262 -
263 -[users.major_faults]
264 -enabled = no
265 -
266 -[users.minor_faults]
267 -enabled = no
268 -
269 -[users.preads]
270 -enabled = no
271 -
272 -[users.pwrites]
273 -enabled = no
274 -
275 -[users.lreads]
276 -enabled = no
277 -
278 -[users.lwrites]
279 -enabled = no
280 -
281 -[users.files]
282 -enabled = no
283 -
284 -[users.sockets]
285 -enabled = no
286 -
287 -[users.pipes]
288 -enabled = no
289 -
290 -[groups.cpu]
291 -enabled = no
292 -
293 -[groups.mem]
294 -enabled = no
295 -
296 -[groups.vmem]
297 -enabled = no
298 -
299 -[groups.threads]
300 -enabled = no
301 -
302 -[groups.processes]
303 -enabled = no
304 -
305 -[groups.uptime]
306 -enabled = no
307 -
308 -[groups.uptime_min]
309 -enabled = no
310 -
311 -[groups.uptime_avg]
312 -enabled = no
313 -
314 -[groups.uptime_max]
315 -enabled = no
316 -
317 -[groups.cpu_user]
318 -enabled = no
319 -
320 -[groups.cpu_system]
321 -enabled = no
322 -
323 -[groups.swap]
324 -enabled = no
325 -
326 -[groups.major_faults]
327 -enabled = no
328 -
329 -[groups.minor_faults]
330 -enabled = no
331 -
332 -[groups.preads]
333 -enabled = no
334 -
335 -[groups.pwrites]
336 -enabled = no
337 -
338 -[groups.lreads]
339 -enabled = no
340 -
341 -[groups.lwrites]
342 -enabled = no
343 -
344 -[groups.files]
345 -enabled = no
346 -
347 -[groups.sockets]
348 -enabled = no
349 -
350 -[groups.pipes]
351 -enabled = no
352 -
353 -[netdata.web_thread4_cpu]
354 -enabled = no
355 -
356 -[netdata.web_thread2_cpu]
357 -enabled = no
358 -
359 -[netdata.web_thread5_cpu]
360 -enabled = no
361 -
362 -[netdata.web_thread3_cpu]
363 -enabled = no
364 -
365 -[netdata.web_thread6_cpu]
366 -enabled = no
367 -
368 -[netdata.web_thread1_cpu]
369 -enabled = no
370 -
371 -[disk_inodes._dev]
372 -enabled = no
373 -
374 -[disk_space._run]
375 -enabled = no
376 -
377 -[disk_inodes._run]
378 -enabled = no
379 -
380 -[disk_space._]
381 -enabled = no
382 -
383 -[disk_inodes._]
384 -enabled = no
385 -
386 -[disk_space._dev_shm]
387 -enabled = no
388 -
389 -[disk_inodes._dev_shm]
390 -enabled = no
391 -
392 -[disk_space._run_lock]
393 -enabled = no
394 -
395 -[disk_inodes._run_lock]
396 -enabled = no
397 -
398 -[disk_space._home]
399 -enabled = no
400 -
401 -[disk_inodes._home]
402 -enabled = no
403 -
404 -[disk_space._boot_efi]
405 -enabled = no
406 -
407 -[disk_space._media_amoss_deb10]
408 -enabled = no
409 -
410 -[netdata.plugin_diskspace]
411 -enabled = no
412 -
413 -[netdata.plugin_diskspace_dt]
414 -enabled = no
415 -
416 -[cpu.cpu0]
417 -enabled = no
418 -
419 -[cpu.cpu1]
420 -enabled = no
421 -
422 -[cpu.cpu2]
423 -enabled = no
424 -
425 -[cpu.cpu3]
426 -enabled = no
427 -
428 -[cpu.cpu4]
429 -enabled = no
430 -
431 -[cpu.cpu5]
432 -enabled = no
433 -
434 -[cpu.cpu6]
435 -enabled = no
436 -
437 -[cpu.cpu7]
438 -enabled = no
439 -
440 -[system.intr]
441 -enabled = no
442 -
443 -[system.ctxt]
444 -enabled = no
445 -
446 -[system.forks]
447 -enabled = no
448 -
449 -[system.processes]
450 -enabled = no
451 -
452 -[cpu.core_throttling]
453 -enabled = no
454 -
455 -[cpu.cpufreq]
456 -enabled = no
457 -
458 -[cpu.cpu0_cpuidle]
459 -enabled = no
460 -
461 -[cpu.cpu1_cpuidle]
462 -enabled = no
463 -
464 -[cpu.cpu2_cpuidle]
465 -enabled = no
466 -
467 -[cpu.cpu3_cpuidle]
468 -enabled = no
469 -
470 -[cpu.cpu4_cpuidle]
471 -enabled = no
472 -
473 -[cpu.cpu5_cpuidle]
474 -enabled = no
475 -
476 -[cpu.cpu6_cpuidle]
477 -enabled = no
478 -
479 -[cpu.cpu7_cpuidle]
480 -enabled = no
481 -
482 -[system.uptime]
483 -enabled = yes
484 -
485 -[system.load]
486 -enabled = no
487 -
488 -[system.active_processes]
489 -enabled = no
490 -
491 -[system.entropy]
492 -enabled = no
493 -
494 -[system.interrupts]
495 -enabled = no
496 -
497 -[cpu.cpu0_interrupts]
498 -enabled = no
499 -
500 -[cpu.cpu1_interrupts]
501 -enabled = no
502 -
503 -[cpu.cpu2_interrupts]
504 -enabled = no
505 -
506 -[cpu.cpu3_interrupts]
507 -enabled = no
508 -
509 -[cpu.cpu4_interrupts]
510 -enabled = no
511 -
512 -[cpu.cpu5_interrupts]
513 -enabled = no
514 -
515 -[cpu.cpu6_interrupts]
516 -enabled = no
517 -
518 -[cpu.cpu7_interrupts]
519 -enabled = no
520 -
521 -[system.softirqs]
522 -enabled = no
523 -
524 -[cpu.cpu0_softirqs]
525 -enabled = no
526 -
527 -[cpu.cpu1_softirqs]
528 -enabled = no
529 -
530 -[cpu.cpu2_softirqs]
531 -enabled = no
532 -
533 -[cpu.cpu3_softirqs]
534 -enabled = no
535 -
536 -[cpu.cpu4_softirqs]
537 -enabled = no
538 -
539 -[cpu.cpu5_softirqs]
540 -enabled = no
541 -
542 -[cpu.cpu6_softirqs]
543 -enabled = no
544 -
545 -[cpu.cpu7_softirqs]
546 -enabled = no
547 -
548 -[mem.swapio]
549 -enabled = no
550 -
551 -[system.pgpgio]
552 -enabled = no
553 -
554 -[mem.pgfaults]
555 -enabled = no
556 -
557 -[system.ram]
558 -enabled = no
559 -
560 -[mem.available]
561 -enabled = no
562 -
563 -[mem.swap]
564 -enabled = no
565 -
566 -[mem.committed]
567 -enabled = no
568 -
569 -[mem.writeback]
570 -enabled = no
571 -
572 -[mem.kernel]
573 -enabled = no
574 -
575 -[mem.slab]
576 -enabled = no
577 -
578 -[mem.transparent_hugepages]
579 -enabled = no
580 -
581 -[net.docker0]
582 -enabled = no
583 -
584 -[net_packets.docker0]
585 -enabled = no
586 -
587 -[net.br-b87e56f878f1]
588 -enabled = no
589 -
590 -[net_packets.br-b87e56f878f1]
591 -enabled = no
592 -
593 -[net.enp4s0]
594 -enabled = no
595 -
596 -[net_packets.enp4s0]
597 -enabled = no
598 -
599 -[system.net]
600 -enabled = no
601 -
602 -[ipv4.sockstat_sockets]
603 -enabled = no
604 -
605 -[ipv4.sockstat_tcp_sockets]
606 -enabled = no
607 -
608 -[ipv4.sockstat_tcp_mem]
609 -enabled = no
610 -
611 -[ipv4.sockstat_udp_sockets]
612 -enabled = no
613 -
614 -[ipv4.sockstat_udp_mem]
615 -enabled = no
616 -
617 -[ipv4.sockstat_raw_sockets]
618 -enabled = no
619 -
620 -[ipv6.sockstat6_tcp_sockets]
621 -enabled = no
622 -
623 -[ipv6.sockstat6_udp_sockets]
624 -enabled = no
625 -
626 -[ip.tcpconnaborts]
627 -enabled = no
628 -
629 -[ip.tcpreorders]
630 -enabled = no
631 -
632 -[ip.tcpofo]
633 -enabled = no
634 -
635 -[system.ip]
636 -enabled = no
637 -
638 -[ip.inerrors]
639 -enabled = no
640 -
641 -[ip.mcast]
642 -enabled = no
643 -
644 -[ip.bcast]
645 -enabled = no
646 -
647 -[ip.mcastpkts]
648 -enabled = no
649 -
650 -[ip.bcastpkts]
651 -enabled = no
652 -
653 -[ip.ecnpkts]
654 -enabled = no
655 -
656 -[ipv4.packets]
657 -enabled = no
658 -
659 -[ipv4.fragsin]
660 -enabled = no
661 -
662 -[ipv4.errors]
663 -enabled = no
664 -
665 -[ipv4.icmp]
666 -enabled = no
667 -
668 -[ipv4.icmp_errors]
669 -enabled = no
670 -
671 -[ipv4.icmpmsg]
672 -enabled = no
673 -
674 -[ipv4.tcpsock]
675 -enabled = no
676 -
677 -[ipv4.tcppackets]
678 -enabled = no
679 -
680 -[ipv4.tcperrors]
681 -enabled = no
682 -
683 -[ipv4.tcpopens]
684 -enabled = no
685 -
686 -[ipv4.tcphandshake]
687 -enabled = no
688 -
689 -[ipv4.udppackets]
690 -enabled = no
691 -
692 -[ipv4.udperrors]
693 -enabled = no
694 -
695 -[system.ipv6]
696 -enabled = no
697 -
698 -[ipv6.packets]
699 -enabled = no
700 -
701 -[ipv6.errors]
702 -enabled = no
703 -
704 -[ipv6.udppackets]
705 -enabled = no
706 -
707 -[ipv6.udperrors]
708 -enabled = no
709 -
710 -[ipv6.mcast]
711 -enabled = no
712 -
713 -[ipv6.mcastpkts]
714 -enabled = no
715 -
716 -[ipv6.icmp]
717 -enabled = no
718 -
719 -[ipv6.icmperrors]
720 -enabled = no
721 -
722 -[ipv6.icmprouter]
723 -enabled = no
724 -
725 -[ipv6.icmpneighbor]
726 -enabled = no
727 -
728 -[ipv6.icmpmldv2]
729 -enabled = no
730 -
731 -[ipv6.icmptypes]
732 -enabled = no
733 -
734 -[ipv6.ect]
735 -enabled = no
736 -
737 -[system.softnet_stat]
738 -enabled = no
739 -
740 -[cpu.cpu0_softnet_stat]
741 -enabled = no
742 -
743 -[cpu.cpu1_softnet_stat]
744 -enabled = no
745 -
746 -[cpu.cpu2_softnet_stat]
747 -enabled = no
748 -
749 -[cpu.cpu3_softnet_stat]
750 -enabled = no
751 -
752 -[cpu.cpu4_softnet_stat]
753 -enabled = no
754 -
755 -[cpu.cpu5_softnet_stat]
756 -enabled = no
757 -
758 -[cpu.cpu6_softnet_stat]
759 -enabled = no
760 -
761 -[cpu.cpu7_softnet_stat]
762 -enabled = no
763 -
764 -[netfilter.conntrack_sockets]
765 -enabled = no
766 -
767 -[netfilter.conntrack_new]
768 -enabled = no
769 -
770 -[netfilter.conntrack_changes]
771 -enabled = no
772 -
773 -[netfilter.conntrack_expect]
774 -enabled = no
775 -
776 -[netfilter.conntrack_search]
777 -enabled = no
778 -
779 -[netfilter.conntrack_errors]
780 -enabled = no
781 -
782 -[disk.sda]
783 -enabled = no
784 -
785 -[disk_ops.sda]
786 -enabled = no
787 -
788 -[disk_backlog.sda]
789 -enabled = no
790 -
791 -[disk_util.sda]
792 -enabled = no
793 -
794 -[disk_iotime.sda]
795 -enabled = no
796 -
797 -[disk.sdb]
798 -enabled = no
799 -
800 -[disk_ops.sdb]
801 -enabled = no
802 -
803 -[disk_backlog.sdb]
804 -enabled = no
805 -
806 -[disk_util.sdb]
807 -enabled = no
808 -
809 -[disk_mops.sdb]
810 -enabled = no
811 -
812 -[disk_iotime.sdb]
813 -enabled = no
814 -
815 -[disk.sdc]
816 -enabled = no
817 -
818 -[disk_ops.sdc]
819 -enabled = no
820 -
821 -[disk_backlog.sdc]
822 -enabled = no
823 -
824 -[disk_util.sdc]
825 -enabled = no
826 -
827 -[disk_mops.sdc]
828 -enabled = no
829 -
830 -[disk_iotime.sdc]
831 -enabled = no
832 -
833 -[system.io]
834 -enabled = no
835 -
836 -[system.ipc_semaphores]
837 -enabled = no
838 -
839 -[system.ipc_semaphore_arrays]
840 -enabled = no
841 -
842 -[system.shared_memory_segments]
843 -enabled = no
844 -
845 -[system.shared_memory_bytes]
846 -enabled = no
847 -
848 -[netdata.plugin_proc_modules]
849 -enabled = no
850 -
851 -[netdata.plugin_proc_cpu]
852 -enabled = no
853 -
854 -[netdata.server_cpu]
855 -enabled = no
856 -
857 -[netdata.clients]
858 -enabled = no
859 -
860 -[netdata.requests]
861 -enabled = no
862 -
863 -[netdata.net]
864 -enabled = no
865 -
866 -[netdata.response_time]
867 -enabled = no
868 -
869 -[netdata.compression_ratio]
870 -enabled = no
871 -
872 -[netdata.dbengine_compression_ratio]
873 -enabled = no
874 -
875 -[netdata.page_cache_hit_ratio]
876 -enabled = no
877 -
878 -[netdata.page_cache_stats]
879 -enabled = no
880 -
881 -[netdata.dbengine_long_term_page_stats]
882 -enabled = no
883 -
884 -[netdata.dbengine_io_throughput]
885 -enabled = no
886 -
887 -[netdata.dbengine_io_operations]
888 -enabled = no
889 -
890 -[netdata.dbengine_global_errors]
891 -enabled = no
892 -
893 -[netdata.dbengine_global_file_descriptors]
894 -enabled = no
895 -
896 -[netdata.dbengine_ram]
897 -enabled = no
898 -
899 -[disk_await.sda]
900 -enabled = no
901 -
902 -[disk_avgsz.sda]
903 -enabled = no
904 -
905 -[disk_svctm.sda]
906 -enabled = no
907 -
908 -[disk_await.sdb]
909 -enabled = no
910 -
911 -[disk_avgsz.sdb]
912 -enabled = no
913 -
914 -[disk_svctm.sdb]
915 -enabled = no
916 -
917 -[disk_await.sdc]
918 -enabled = no
919 -
920 -[disk_avgsz.sdc]
921 -enabled = no
922 -
923 -[disk_svctm.sdc]
924 -enabled = no
925 -
926 -[netdata.queries]
927 -enabled = no
928 -
929 -[netdata.db_points]
930 -enabled = no
931 -
932 -[services.cpu]
933 -enabled = no
934 -
935 -[services.mem_usage]
936 -enabled = no
937 -
938 -[services.throttle_io_read]
939 -enabled = no
940 -
941 -[services.throttle_io_write]
942 -enabled = no
943 -
944 -[services.throttle_io_ops_read]
945 -enabled = no
946 -
947 -[services.throttle_io_ops_write]
948 -enabled = no
949 -
950 -[netfilter.netlink_new]
951 -enabled = no
952 -
953 -[netfilter.netlink_changes]
954 -enabled = no
955 -
956 -[netfilter.netlink_search]
957 -enabled = no
958 -
959 -[netfilter.netlink_errors]
960 -enabled = no
961 -
962 -[netfilter.netlink_expect]
963 -enabled = no
964 -
965 -[system.power_consumption]
966 -enabled = no
build_external/scenarios/gaps_lo/parent-compose.yml deleted
-13
@@ -1,13 +0,0 @@
1 -version: '3.3'
2 -services:
3 - agent_parent:
4 - image: debian_10_dev
5 - command: /usr/sbin/netdata -D
6 - ports:
7 - - 21000:19999
8 - volumes:
9 - - ./parent_stream.conf:/etc/netdata/stream.conf:ro
10 - - ./parent_guid:/var/lib/netdata/registry/netdata.public.unique.id:ro
11 - - ./mostly_off.conf:/etc/netdata/netdata.conf:ro
12 - cap_add:
13 - - SYS_PTRACE
build_external/scenarios/gaps_lo/parent_guid deleted
-1
@@ -1 +0,0 @@
1 -00000000-0000-0000-0000-000000000000
\ No newline at end of file
build_external/scenarios/gaps_lo/parent_stream.conf deleted
-12
@@ -1,12 +0,0 @@
1 -[00000000-0000-0000-0000-000000000000]
2 - enabled = yes
3 - allow from = *
4 - default history = 3600
5 - # default memory mode = ram
6 -
7 - health enabled by default = auto
8 -
9 - # postpone alarms for a short period after the sender is connected
10 - default postpone alarms on connect seconds = 60
11 - multiple connections = allow
12 -
build_external/scenarios/only-agent/docker-compose.yml deleted
-8
@@ -1,8 +0,0 @@
1 -version: '3'
2 -services:
3 - agent:
4 - image: ${Distro}_${Version}_dev
5 - command: /usr/sbin/netdata -D
6 - ports:
7 - - 80
8 - - 443
build_external/scenarios/parent-child/child_stream.conf deleted
-10
@@ -1,10 +0,0 @@
1 -[stream]
2 - enabled = yes
3 - destination = tcp:agent_parent
4 - api key = 00000000-0000-0000-0000-000000000000
5 - timeout seconds = 60
6 - default port = 19999
7 - send charts matching = *
8 - buffer size bytes = 1048576
9 - reconnect delay seconds = 5
10 - initial clock resync iterations = 60
build_external/scenarios/parent-child/docker-compose.yml deleted
-23
@@ -1,23 +0,0 @@
1 -version: '3.3'
2 -services:
3 - agent_parent:
4 - image: debian_10_dev
5 - command: /usr/sbin/netdata -D
6 - ports:
7 - - 20000:19999
8 - volumes:
9 - - ./parent_stream.conf:/etc/netdata/stream.conf:ro
10 - agent_child1:
11 - image: debian_9_dev
12 - command: /usr/sbin/netdata -D
13 - #ports: Removed to allow scaling
14 - #- 20001:19999
15 - volumes:
16 - - ./child_stream.conf:/etc/netdata/stream.conf:ro
17 - agent_child2:
18 - image: fedora_30_dev
19 - command: /usr/sbin/netdata -D
20 - #ports: Removed to allow scaling
21 - #- 20002:19999
22 - volumes:
23 - - ./child_stream.conf:/etc/netdata/stream.conf:ro
build_external/scenarios/parent-child/parent_stream.conf deleted
-7
@@ -1,7 +0,0 @@
1 -[00000000-0000-0000-0000-000000000000]
2 - enabled = yes
3 - allow from = *
4 - default history = 3600
5 - health enabled by default = auto
6 - default postpone alarms on connect seconds = 60
7 - multiple connections = allow
packaging/cmake/config.cmake.h.in renamed
packaging/cmake/systemd.cmake renamed
packaging/utils/coverity-scan.sh renamed
+15 -1
@@ -42,7 +42,19 @@ INSTALL_DIR="/opt"
42 # the version of coverity to use
43 COVERITY_BUILD_VERSION="${COVERITY_BUILD_VERSION:-cov-analysis-linux64-2023.6.2}"
44
45 -. packaging/installer/functions.sh
45 +SCRIPT_SOURCE="$(
46 + self=${0}
47 + while [ -L "${self}" ]
48 + do
49 + cd "${self%/*}" || exit 1
50 + self=$(readlink "${self}")
51 + done
52 + cd "${self%/*}" || exit 1
53 + echo "$(pwd -P)/${self##*/}"
54 +)"
55 +REPO_ROOT="${SCRIPT_SOURCE}/../.."
56 +
57 +. "${REPO_ROOT}/packaging/installer/functions.sh"
58
59 JOBS=$(find_processors)
60 [ -z "${JOBS}" ] && JOBS=1
@@ -106,6 +118,8 @@ scanit() {
118 fatal "The command '${covbuild}' is not executable. Export variable COVERITY_BUILD_PATH or set it in .coverity-scan.conf"
119 fi
120
121 + cd "${REPO_ROOT}" || exit 1
122 +
123 version="$(grep "^#define PACKAGE_VERSION" config.h | cut -d '"' -f 2)"
124 progress "Working on netdata version: ${version}"
125